| 1 | initial version |
You can use the method .full_simplify():
sage: var('a b c')
(a, b, c)
sage: ex = (a/b)^c - (a^c)/(b^c)
sage: ex.full_simplify()
0
| 2 | No.2 Revision |
You can use the method .full_simplify():
sage: var('a b c')
(a, b, c)
sage: ex expression = (a/b)^c - (a^c)/(b^c)
sage: ex.full_simplify()
expression.full_simplify()
0
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.