Ask Your Question
1

simplify_full() does not simplify

asked 4 years ago

ortollj gravatar image

Hi

var('a,b,z')
assume(z,'complex')
assume(a,'real') ;assume(b,'real')
f(a,b,r)=(a^2 + b^2 - sqrt(a^2 + b^2 - r^2) * sqrt(a^2 + b^2) * sqrt((a^2 + b^2 - r^2) / (a^2 + b^2))) / (a - I*b)
show(f)
show(f.simplify_full())

discussion in relation

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
4

answered 4 years ago

eric_g gravatar image

SInce there are sqrt's in your expression, you may try canonicalize_radical():

sage: f
(a, b, r) |--> (a^2 + b^2 - sqrt(a^2 + b^2 - r^2)*sqrt(a^2 + b^2)*sqrt((a^2 + b^2 - r^2)/(a^2 + b^2)))/(a - I*b)
sage: f.canonicalize_radical()
(a, b, r) |--> r^2/(a - I*b)
Preview: (hide)
link

Comments

thank you @eric_g, I did not know that function.

canonicalize_radical

ortollj gravatar imageortollj ( 4 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 372 times

Last updated: Jul 14 '20