MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Explicit solution to Root[]

  • To: mathgroup at smc.vnet.net
  • Subject: [mg58442] Re: Explicit solution to Root[]
  • From: "Chris" <topher at csh.rit.edu>
  • Date: Sat, 2 Jul 2005 04:07:02 -0400 (EDT)
  • References: <da2mmv$932$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Well, just typing it into Mathematica, I get it to reduce to:

Root[-24 + 6*#1 + 51*#1^2 - 40*#1^3 - 54*#1^4 + 54*#1^5 & , 1, 0]

Since it's the solution to a polynomial of degree 5, it's unlikely that
you'll get a nice clean solution with just radicals. You can find more
about the quintic equation here:
http://library.wolfram.com/examples/quintic/

If you want a symbolic answer, you can use a function I wrote called
ToSymbolic based off of the above link, but the answer is pretty
unwieldy.

http://www.csh.rit.edu/~topher/math/tosymbolic.html


In[66]:=
N[Root[-24 + 6*#1 + 51*#1^2 - 40*#1^3 - 54*#1^4 + 54*#1^5 &, 1, 0]]

Out[66]=
1.11221

In[70]:=
ToSymbolic[Root[-24 + 6*#1 + 51*#1^2 - 40*#1^3 - 54*#1^4 + 54*#1^5 &,
1]];

In[71]:=
N[%]

Out[71]=
{1.11221}


  • Prev by Date: How build a function repeating the same pattern?
  • Next by Date: Re: Can't assign value to symbols
  • Previous by thread: Explicit solution to Root[]
  • Next by thread: Re: Explicit solution to Root[]