See education.ti.com… Activities>TI Codes for ‘getting started lessons on coding both TI-84 and TI-NSpire
On TI-Nspire…
Programs and functions are most easily created using the Calculator app.
Press menu, ,select Programs and Functions>Program Editor>New
This creates a Program Editor app next to the Calculator app.
This allows you to tweak the program/function and test it side-by-side.
Remember to press ctrl-B (Check Syntax & Store) after editing the program.
Your equation is going to be challenging to code: How will it know what to solve for?
You can use Request “prompt”,var
for input (‘pop-up’ windows) but what will you enter for the unknown var?
You might need CAS for ‘Solve”ing but Nsolve works on numeric if you’re OK with approximate answers.
You definitely need CAS for the units.
Good luck on the adventure!
Best Regards,
John Hanna
T3 - Teachers Teaching with Technology
--
--
To post to this group, send email to tins...@googlegroups.com
To unsubscribe send email to tinspire+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com.au/group/tinspire?hl=en-GB?hl=en-GB
The tns documents shared by group members are archived at
https://sites.google.com/site/tinspiregroup/classroom-news/welcome-abouttime
---
You received this message because you are subscribed to the Google Groups "tinspire" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tinspire+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<image001.png>
Define vdw(p,v,n,t)=(p+n^2×a/v^2)×(v-n×b)-n×r×t
135.8->a
0.0364->b
8.314->r
1->n
101.3->p20+273->t
nSolve(vdw(p,v,n,t)=0,v)->v
The result is 24.028dm^3 is stored into variable v
nSolve(vdw(p,v,n,t)=0,t)|n=2->tThe result is 147.3K, stored in variable t
[a]=(kPa × dm^6)/mol^2[b]=dm^3/mol
2->nnSolve(vdw(p,v,n,t)=0,t)->t