All,

Using version from lzma:
sage-5.7-linux-64bit-ubuntu_12.04.2_lts-x86_64-Linux

Sage doesn't remove absolute values from squared (even numbered powers) 
variables.  Example:
var ('l', domain=real)
x = (abs(2*l))^2
print x
x = x.full_simplify()
print x

Output:
abs(2*l)^2
4*abs(l)^2

Although this example is trivial, it makes more complicated solutions appear 
larger than they should when simplified.

Example 2:
var ('t', 'a')
x = 1/(sqrt(abs(a*sin(t))^2 + a*abs(cos(t))^2))
x = x.full_simplify()
print x
y = 1/( sqrt( (a*sin(t))^2 + (a*cos(t))^2 ) )
y = y.full_simplify()
print(y)

Output ex2:
1/sqrt(abs(a)^2*abs(sin(t))^2 + a*abs(cos(t))^2)
1/a

Thanks,
Squared

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-support?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to