My input is:
1ax==(1a)x
I want to get output:
True
But getting output:
a−x==(1a)x
Question: How to get output: True
Answer
Your expression is only true if a
is positive.
Simplify[a^-x == (1/a)^x, a > 0]
True
My input is:
1ax==(1a)x
I want to get output:
True
But getting output:
a−x==(1a)x
Question: How to get output: True
Answer
Your expression is only true if a
is positive.
Simplify[a^-x == (1/a)^x, a > 0]
True
Comments
Post a Comment