So there is this Calculator my teacher gave me to try to fix a program that worked in a previous version (probably the Ti-83). According to her it should give the derivation of an equation. The input is self-explaining and the rest of the code is rather simple:
PROGRAM:DER
:Input "EQUATION:",Str1
:Input "VAR:",Str2
:Real(12,Str1,Str2)→Str3
:Real(19,Str3
:
:
So now I'm somewhat freaked out by that Real(
token there, because the catalog only lists Real
and real(
, where the last one only takes one argument.
So my question is: What the f*ck is that and how did it work?? Also, of course, do you have any idea how I can make a program calculating the derivation for the Ti-84 Plus? Thank you in advance!