Skip to content

Instantly share code, notes, and snippets.

@tonyarkles
Created December 6, 2018 15:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonyarkles/f8b5871e5814f669e28801b64b796ec2 to your computer and use it in GitHub Desktop.
Save tonyarkles/f8b5871e5814f669e28801b64b796ec2 to your computer and use it in GitHub Desktop.
Maxima weird unit problem
(%i8) 1`(m/s) * 0`(1/s);
1
(%o8) 0 ` -
s
(%i9) 0`(1/s) * 1`(m/s);
m
(%o9) 0 ` --
2
s
(%i10) (1`(m/s)) * (0`(1/s));
m
(%o10) 0 ` --
2
s
(%i11) (0`(1/s)) * (1`(m/s));
m
(%o11) 0 ` --
2
s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment