TI-BASIC:Web

From Learn @ Cemetech
Revision as of 18:19, 24 February 2016 by Maintenance script (talk | contribs) (Initial automated import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

WEB.GIF

Command Summary

Sets sequence equations to be graphed as web diagrams.

Command Syntax

Web

Menu Location

While in Seq mode, press:

  1. 2nd FORMAT to access the format menu.
  2. Use arrows and ENTER to select Web.

Calculator Compatibility

TI-83/84/+/SE

Token Size

2 bytes

In Web mode, sequence equations are graphed as [*http://mathworld.wolfram.com/WebDiagram.html web diagrams]. This is a way of visualizing iterations of a function (that is, the sequence n, f(n), f(f(n)), f(f(f(n))), ... for some function f and starting value n). For this mode to properly work, each sequence equation should be in terms of its previous value only: u(n) should be a function of u(n-1). Referencing other sequence equations, or u(n-2), will yield ERR:INVALID; referencing the value n is allowed by the calculator, but makes the result meaningless so you should avoid it.

When you go to the graph screen, the associated function y=f(x) will be graphed. That is, if you define u(n) = cos(u(n-1)), the function y=cos(x) will be graphed. If you have AxesOn enabled, the line y=x will also be graphed. It's easy to see that the intersection points of the graphs y=f(x) and the line y=x represent the fixed points (points such that f(x)=x) of the function.

The web diagram itself will be drawn if you press TRACE or use the Trace command. First you will choose the equation (u, v, or w) to trace; then, by pressing RIGHT repeatedly, the web will be drawn, starting from the initial value nMin. In a web diagram, a point (n, f(n)) on the graph of y=f(x) is connected by a horizontal segment to the point (f(n), f(n)) on the graph of y=x, and then by a vertical segment to the point (f(n), f(f(n))) on the graph of y=f(x) again; this process is repeated. Each pair of a horizontal and vertical segment represents an added iteration of.

Web diagrams can be used to look at the attracting behavior of fixed points. For example:

1. Graph the equation u(n)=cos(u(n-1)), u(nMin)=1 in Web mode, with Xmin=0, Xmax=1, Ymin=0, Ymax=1 in the WINDOW menu. You'll see that it has a single fixed point. If you TRACE the graph, the line segments will spiral around into the fixed point, so appears to be attractive.

2. Graph the equation u(n)=π/2cos(u(n-1)), u(nMin)=1 in Web mode, with Xmin=0, Xmax=π/2, Ymin=0, Ymax=π/2 in the WINDOW menu. This equation looks a lot like the previous one, and also has a single fixed point. However, if you TRACE the graph, the line segments (which start out quite close to the fixed point) will spiral away from it. This intuitively shows that the fixed point of f(x)=π/2cos(x) is not attractive.

See "Related Commands" for other possibilities of graphing sequences.

Error Conditions

  • ERR:INVALID is thrown if an equation being graphed references other sequence equations or the n-2 term.

Related Commands