Was also wondering which theoretical method is used to solve this problem?
Thanks,
Shubha Karanth | Amba Research
Ph +91 80 3980 8031 | Mob +91 94 4886 4510
Bangalore * Colombo * London * New York * San José * Singapore * www.ambaresearch.com
-----Original Message-----
From: Gabor Grothendieck [mailto:ggrothendieck_at_gmail.com]
Sent: Saturday, May 24, 2008 6:13 PM
To: Peter Dalgaard
Cc: Shubha Vishwanath Karanth; r-help_at_stat.math.ethz.ch; Duncan Murdoch
Subject: Re: [R] Solving 100th order equation
On Sat, May 24, 2008 at 8:31 AM, Peter Dalgaard <p.dalgaard_at_biostat.ku.dk> wrote:
> Shubha Vishwanath Karanth wrote:
> > polyroot() is built for this, but it stops at 48th degree polynomials, at > least as currently implemented. Not sure that it (or anything else) would be > stable beyond that limit. YACAS perhaps? >
Unfortunately yacas does not seem to be able to handle it:
> library(Ryacas) > x <- Sym("x") > Solve((x^100 )- (2*x^99) +(10*x^50)+(6*x ) - 4000 == 0, x)[1] "Starting Yacas!"
Simpler one works ok:
> Solve(x^2 - 1, x)
expression(list(x == 1, x == -1))
This e-mail may contain confidential and/or privileged i...{{dropped:10}}
Archive maintained by Robert King, hosted by
the discipline of
statistics at the
University of Newcastle,
Australia.
Archive generated by hypermail 2.2.0, at Sun 25 May 2008 - 01:30:41 GMT.
Mailing list information is available at https://stat.ethz.ch/mailman/listinfo/r-help. Please read the posting guide before posting to the list.