-----Original Message-----
From: tins...@googlegroups.com
[mailto:tins...@googlegroups.com] On
Behalf Of Fred Nurk
Sent: Friday, July 31, 2009 7:10 PM
To: tinspire
Subject: [tinspire] Finding important features of graphs
One question in a high school textbook says to:
'[use] a CAS calculator to find the coordinates of axes intercepts[JEH>]huh? and intercepts[JEH>]huh? and local maximum and local minimum values:'
[JEH>]
This seems to be looking for CAS functionality so here goes:
Use the Solve( ) command:
F1(0) for y-intercept (there’s only one if it’s a function)
Solve(f1(x)=0,x) for x-intercepts
fMin(f1(x),x) and fMax(f1(x),x) for global extrema
or
fMin(f1(x),x,a,b) and fMax(f1(x),x,a,b) for local extrema
fMin and fMax can give misleading results when there’s a vertical asymptote, so the better method is to use:
Solve(d(f1(x))/dx=0,x) and then use other Calculus tools to confirm extrema. Of course this always brings up functions like y=x^(2/3) J
On Graphical critical points: on the TI-Nspire 1.7 OS, check G&G settings (Home, 8) and make sure ‘Enable CALC menu’ is checked. Then when you trace you can also get other critical points besides extrema and zeros.