
#DOES SPEEDCRUNCH SAVE USER DEFINED FUNCTIONS FULL#
With an RPN calc you just perform each short calc and end up with a stack full of values, and then you hit + or * 10 times or whatever to sum/product the whole list. For example, often you'll run into equations in real life where some value of interest is a sum or product of lots of components (each of which is the result of a short calc). Seeing all the intermediate values often is useful in real-world situations, as well. With an RPN calculator I can see the intermediate values, and yet keep them at full precision without any need for memories/etc.


When I see people working with normal calculators and they need to capture intermediate values I often see lots of rounding and re-entry.

Want to start on the inside and work your way out? That is trivial. Want to start on the outside of a big equation and work your way in? No problem - although you'll have to keep track of a few values on the stack (usually not a big deal unless the expression is very unwieldy). The fact that you have a stack means that you can attack a problem in almost any order, without really any sacrifice of keystrokes or hacks like the "Ans->" key or memories or whatever. One or two others have hinted at this, but I find that RPN just seems much more natural.
