Skip to content

Instantly share code, notes, and snippets.

@rickcnagy
Last active August 29, 2015 13:56
Show Gist options
  • Save rickcnagy/9041093 to your computer and use it in GitHub Desktop.
Save rickcnagy/9041093 to your computer and use it in GitHub Desktop.
Quadratic Formula for TI-84 Plus via http://www.tc3.edu/instruct/sbrown/ti83/quadrat.htm
Disp "AX²+BX+C=0"
Prompt A,B,C
B²-4AC→D
Disp (-B+√(D))/(2A)
Disp (-B−√(D))/(2A)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment