▼
Posts: 980
Threads: 239
Joined: Aug 2006
Here's an illustration in favor of RPN:
I cannot simulate super/subscript so imagine my examples written in the natural typography.
How would I know to interpret
2
sin x as X [SQ] [SIN] and not x [SIN] [SQ] ?
Shouldn't x [SIN] [SQ] be written in tech notes, textbooks, etc as:
2
sin x ?
On another note, what's clarifying
3
-x as x 3 [y^x] [CHS] and not x [CHS] 3 [y^x] ?
Edited: 18 Mar 2012, 2:37 p.m. after one or more responses were posted
▼
Posts: 4,587
Threads: 105
Joined: Jul 2005
Hi Matt,
It will help if you use [pre] in formatting your text input. Please see here.
Edit: OK, you were faster in editing your mail than I was in pointing you to the link about formatting ;-)
Nevertheless, you're preaching to the choir emphasizing the advantages of RPN to the members of this forum IMHO.
Edited: 18 Mar 2012, 2:25 p.m.
▼
Posts: 980
Threads: 239
Joined: Aug 2006
Okay, got it. My OP says what I want it to say. Thanks.
▼
Posts: 850
Threads: 10
Joined: Mar 2009
When you are typing a message, below the message box are test formatting buttons, if you click "more" you can see a whole array of formatting marks you can use in your post (heading, underlines, super- and subscripts, lists etc.).
Posts: 653
Threads: 26
Joined: Aug 2010
Hi Matt,
Quote:
Shouldn't x [SIN] [SQ] be written in tech notes, textbooks, etc as:
2
sin x ?
Well, actually it is. ;-)
The textbooks I know of use the common mathematical notation which is quite unambigous:
- sin2x is the square of the sine of x
- sin x2 is the sine of the square of x
- -x3 is -1 times the cube of x
- (-x)3 is the cube of -x
Although the one or other calculator manufacturer may claim that the user can enter expressions just the way they are found in the textbook, this usually is not true for cases like the ones you mentioned. At least I do not know of a device that accepts something like sin^2(x) instead of the transscription (sin(x))^2 that is also used in most programming languages. Or have I missed something?
Yes, of course that's an advantage of RPN. ;-)
Dieter
▼
Posts: 3,283
Threads: 104
Joined: Jul 2005
Quote:
At least I do not know of a device that accepts something like sin^2(x) instead of the transscription (sin(x))^2 that is also used in most programming languages. Or have I missed something?
I just detected one: Derive 6 on Windows allows the entry of sin^2x which is then transformed to SIN(x) 2. The interpretation of the latter is unambiguous because the opening parenthesis is tied to the function name SIN. The TI-92 which has a CAS that is supposedly derived from Derive doesn't allow this.
Posts: 325
Threads: 18
Joined: Jul 2006
Quote:
sin2x is the square of the sine of x
And of course sin-1x is the sine of x raised to the -1 power. Oh, no, that's csc x. The superscript -1 means something completely different in this case.
Does the power appear between the function name and its argument in anything other than trig (and hyperbolic) functions? Anyone ever seen something like ln2x ?
▼
Posts: 3,283
Threads: 104
Joined: Jul 2005
Quote:
Anyone ever seen something like ln2x ?
At least Derive accepts it as such.
Posts: 4,587
Threads: 105
Joined: Jul 2005
Quote:
And of course sin-1x is the sine of x raised to the -1 power. Oh, no, that's csc x. The superscript -1 means something completely different in this case.
AFAIK, that use of superscript -1 for the inverse is special for trig and hyperbolic (and some more functions of advanced math). We were taught earlier its called e.g. arcsin - compare the HP-35 - or arcosh. Personally, I observed the notation tan -1 meaning arctan the first time on scientific calculators and remember it confused me - I think TI (horribile dictu) found a better solution with their key INV. Would be interesting to know who invented sin -1 = arcsin - any experts here from the old days?
▼
Posts: 325
Threads: 18
Joined: Jul 2006
And it can get really messy sometimes. I've seen sin-2x to mean the inverse of the square of the sine (csc squared), not the square of the arcsine or the arcsine of the arcsine.
Posts: 980
Threads: 239
Joined: Aug 2006
Quote:
Hi Matt,
Well, actually it is. ;-)
The textbooks I know of use the common mathematical notation which is quite unambigous:
- sin2x is the square of the sine of x
- sin x2 is the sine of the square of x
- -x3 is -1 times the cube of x
- (-x)3 is the cube of -x
Although the one or other calculator manufacturer may claim that the user can enter expressions just the way they are found in the textbook, this usually is not true for cases like the ones you mentioned. At least I do not know of a device that accepts something like sin^2(x) instead of the transscription (sin(x))^2 that is also used in most programming languages. Or have I missed something?
Yes, of course that's an advantage of RPN. ;-)
Dieter
But, what's preventing #3 from being interpreted as -x raised to the third power?
▼
Posts: 3,283
Threads: 104
Joined: Jul 2005
Current algebraic calculators have two different minus signs, unary and binary. Unary minus binds stronger than binary minus.
Posts: 653
Threads: 26
Joined: Aug 2010
Quote:
But, what's preventing #3 from being interpreted as -x raised to the third power?
The missing parentheses.
By the way, in this case it doesn't matter - both expressions are equivalent since -(x3) equals (-x)3. ;-)
Dieter
Posts: 980
Threads: 239
Joined: Aug 2006
Thanks for the thorough analyses
Posts: 3,229
Threads: 42
Joined: Jul 2006
You can use [super]...[/super] and [sub]...[/sub] to get super and sub scripts.
- Pauli
▼
Posts: 980
Threads: 239
Joined: Aug 2006
Posts: 97
Threads: 9
Joined: Nov 2011
Hello Matt,
I miss another possible interpretation for
sin2(X) = sin(sin(X))
That is similar to the repeated useage of deriviation operator:
dn/dxn
Sincerely
peacecalc
Posts: 125
Threads: 9
Joined: Oct 2011
On a similar theme, yesterday I was looking at the differences in the order of evaluation of powers, which appears to be a potential trap.
In RPL:
'2^2^3' EVAL
1: 64
in R
2^2^3
[1] 256
and in Wolfram Alpha
2^2^3 =
Input:
223
Result:
256
Nick
Edited: 20 Mar 2012, 3:56 a.m.
▼
Posts: 136
Threads: 22
Joined: Aug 2010
I don't see the same result on my 50g:
'2^2^3' EVAL
256
but my 48SX:
'2^2^3' EVAL
64
Never noticed that before.
▼
Posts: 125
Threads: 9
Joined: Oct 2011
I get a result of 64 on both my 28S and 48GX calculators. It is interesting to see that HP changed the order of evaluation for the 50g.
Nick
Edited: 21 Mar 2012, 3:21 a.m.
|