So I'm using Mathematica 7 for Students and I'm using the Root function to find the roots of an equation over the rational numbers:
$$225x^6 -343 = 0$$
I created this equation from trying to prove that the number $\frac{\sqrt7}{\sqrt[3]15}$ is irrational or rational, and using the rational roots theorem, I came up with 24 possible roots that I don't want to test out manually. Using Root gives me the following output for some reason:
Root[225*x^6 - 343 == 0, x]
Root::nup: -343 + 225x^5 is not a univariate polynomial >>
How is this polynomial not univariate? I'm pretty sure it is, since it only has $x$ in it. Also, another gem occurs when I try the same thing with $x^2 = 1$:
Root[x^2 - 1 == 0, x]
Root::nup: x^2 - 1 == 0 is not a univariate polynomial >>
What is going on?
Rootand pressing F1 (in particular, look at the examples section). Quick and easy (in fact faster than asking here). – acl Mar 9 at 17:30Rootfor the functionRoots. – Daniel Lichtblau Mar 9 at 20:07