Advertisement
invisibowl

TI84-Standard form and point-slope (two-point) form to graph

Feb 11th, 2015
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ClrHome
  2. Disp " ------------------------ "," GRAPHER "," ------------------------"
  3. Disp "1 for slope-intercept"
  4. Disp "2 for standard form"
  5. Disp "3 for two-point form"
  6. Disp "4 for point-slope"
  7. Prompt Q
  8. ClrHome
  9. If Q=1:Then
  10. Disp "y=Mx+B"
  11. Disp ""
  12. Prompt M,B
  13. "MX+B"→{Y1}
  14. DispGraph
  15. Else:If Q=2:Then
  16. Disp "Ax+By=C"
  17. Disp ""
  18. Prompt A,B,C
  19. "(C-AX)/B"→{Y1}
  20. DispGraph
  21. Else:If Q=3:Then
  22. Disp "whatever the equation for this is"
  23. Disp ""
  24. Prompt X,Y,A,B
  25. (B-Y)/(A-X)→M
  26. (-XM)-(-Y)→B
  27. "MX+B"→{Y1}
  28. DispGraph
  29. Else:If Q=4:Then
  30. Disp "y+B=M(x+A)"
  31. Disp ""
  32. Prompt B,M,A
  33. "MX+(MA)-B"→{Y1}
  34. DispGraph
  35. Else:Disp "invalid!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement