TI-BASIC Wiki
Advertisement
:Tangent(function, indepenent-value)

This function draws a function, then draws the function's tangent line at a specific independent-variable location.

Location[]

  • PRGM + 2ND (DRAW)
  • DRAW
  • 5:Tangent(

Example[]

:ClrDraw
:ZDecimal
:
:For(C,-3,3)
::Tangent(e^(X),C)
:End

This program draws the tangent line of the function at seven different points.

Advertisement