Guest User

Untitled

a guest
Nov 15th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. In[1]:= HoldForm[1/x 1/y] // InputForm
  2. Out[1]= HoldForm[(1/x)*(1/y)]
  3.  
  4. In[2]:= HoldForm[1/x 1/y] // FullForm
  5. Out[2]= HoldForm[Times[Times[1,Power[x,-1]],Times[1,Power[y,-1]]]]
  6.  
  7. MakeBoxes[Times[a_, b_], StandardForm] := RowBox[{ToBoxes@a, ToBoxes@b}]
  8. 1/x 1/y 1/z
Add Comment
Please, Sign In to add comment