formatting fractions involving square roots
How can I tell sage that I want the result to be shown as $\frac{1}{\sqrt{3}}$ rather than $\frac13\sqrt3$ when I type show(1/sqrt(3))?
Asked: 2016-01-30 13:48:36 +0100
Seen: 512 times
Last updated: Mar 20 '17
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.
Not really convenient but it gives the expected answer:
show(sqrt(3).power(-1,hold=True)).Thanks, that is at least something. While playing with this, I noticed that
power?andpower??documentation does not mention theholdkeyword at all.Searching for hold=True I just found https://ask.sagemath.org/question/757..., which makes this question a duplicate.
You have to look for
poweras a method of an expression, for example:x.power?orpi.power??