Hi Bob
(1) It is certainly possible to graph implicit equations of the sort you mention on both CAS and non-CAS:
* CAS: Use "zeros" after converting the equation to an expression. In this case, in Graphs & Geometry function entry line, enter
zeros((x+y)^3-x^3-y^3,y) and you will get the resulting graph (which is a straight line, y=-x - more interesting would be something like zeros((x+y)^3-x^3-y^3-1,y)!)
* non-CAS: Use "nSolve" a couple of times:
f1(x) = nSolve((x+y)^3 = x^3 + y^3,y=-2) and
f2(x) = nSolve((x+y)^3 = x^3 + y^3,y=2)
A little slow but effective.
For the zeros of a polynomial, I would suggest using the "proots" function from my polynomial toolkit - go to
http://www.compasstech.com.au/TNS_Authoring/poly.html
and download the zipped link near the top of the page (where it says TNS Poly Document under the heading)
Unzip and put at least the file "poly.tns" into MyLib.
Open a document (and Refresh Libraries) and then type in a Calculator (or spreadsheet)
poly\proots("your polynomial up to degree 4") as a string.
(This is assuming that you are using non-CAS)
If you want to do without the string, first enter
poly\pvar("x") (or whatever variable you wish to use) and then run proots.
Should give you all roots as a list.
For something a little fancier, try the related "psolve" with a quadratic: for example,
poly\psolve(2x^2-4x+5)
and it will display the source of the roots as well.
Hope this helps
Steve
With best wishes,
Steve
_________________
Dr Stephen Arnold
Educational Technology Consultant
Compass Learning Technologies
T3 Fellow, Teachers Teaching with Technology Australia
Office:
+61-2-4232-2080
Mobile: +61-4-0175-3834
Web:
http://compasstech.com.au
_________________