| Original Message (ID '38822') By jf: |
| There is a function for this, named, surprisingly, FullForm. You will need to wrap the expression in HoldForm to keep Mathematica from simplifying the expression.
In[1]:= FullForm[ -3 * (8 + 9 / 10) * (3 * 2 - 1) ]
Out[1]//FullForm= Rational[-267, 2]
In[2]:= FullForm[ HoldForm[ -3 * (8 + 9 / 10) * (3 * 2 - 1) ]]
Out[2]//FullForm=
HoldForm[Times[-3, Plus[8, Times[9, Power[10, -1]]], Plus[Times[3, 2], -1]]]
or Times[-3, Plus[8, Times[9, Power[10, -1]]], Plus[Times[3, 2], -1]]
|
|