Processing math: 100%

First time here? Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Messy typesetting problem

If I enter the followng in a sage notebook, the typeset output is correct but for h(r) is unreadable, is there someway to coerce sage to output a reasonable representation?

The desired expression is h(r)=1r21b2(1dr)1r2

f(r) looks good, g(r) is poor and confusing, h(r) is unreadable.

var ('r, b, d')

f(r) = r^2 * sqrt(1/b^2)

print(f)

f.show()

g(r) = r^2 * sqrt(1/b^2 - 1)

print(g)

g.show()

h(r) = 1 / (r^2 * sqrt (1/b^2 - (1 - d/r)*1/r^2))

print (h)

h.show()

click to hide/show revision 2
No.2 Revision

updated 12 years ago

kcrisman gravatar image

Messy typesetting problem

If I enter the followng in a sage notebook, the typeset output is correct but for h(r) is unreadable, is there someway to coerce sage to output a reasonable representation?

The desired expression is h(r)=1r21b2(1dr)1r2

f(r) looks good, g(r) is poor and confusing, h(r) is unreadable.

var ('r, b, d')

d') f(r) = r^2 * sqrt(1/b^2)

sqrt(1/b^2) print(f)

print(f)

f.show()

f.show() g(r) = r^2 * sqrt(1/b^2 - 1)

print(g)

g.show()

1) print(g) g.show() h(r) = 1 / (r^2 * sqrt (1/b^2 - (1 - d/r)*1/r^2))

d/r)*1/r^2)) print (h)

h.show()

(h) h.show()