|
[Date Index]
[Thread Index]
[Author Index]
How accurate is the solution for high degree algebraic equation?
- To: mathgroup at smc.vnet.net
- Subject: [mg128484] How accurate is the solution for high degree algebraic equation?
- From: Alexandra <watanabe.junzo at gmail.com>
- Date: Wed, 24 Oct 2012 03:32:27 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
I wanted to know all the solutions of f = (-z - 1)^d - (-z^d - 1)==0, where d=54.
I did the following:
d = 54; f = (-z - 1)^d - (-z^d - 1);
sol = NSolve[f == 0,z];
a = z /. sol;
So a is a set of solutions.
If I compute
f /. z -> a[[50]] // N
It returns a number very close to zero. This is natural.
But if I compute
f /. (z -> a[[1]]) // N
Then
Mathematica returns
12.0047 + 14.7528 I
I cannot say a[[1]] is a solution of f=0.
Many other elements in the solution set a does not seem to satisfy the equation.
Only the last few terms in a are satisfactory enough as solutions.
Is the degree too high?
Prev by Date:
Creating a recursive function which returns a sequence
Next by Date:
Re: How do I assign the solution obtained by FindRoot to
Previous by thread:
Re: Creating a recursive function which returns a sequence
Next by thread:
Re: How accurate is the solution for high degree algebraic
|