First time here? Check out the FAQ!

Ask Your Question
0

What types of simplify work now

asked 2 years ago

cybervigilante gravatar image

I'm trying the various forms of simplify I see in the docs, but most say "not found" What exactly is going on? Have some been superseded? What ones still work in Sagemath 9.3 for Windows? i.e. "simplify_full()", "simplify_trig()", "simplify_rational()",\n "simplify_rectform()" "simplify_factorial()", "simplify_log()",\n "simplify_real()", "simplify_hypergeometric()",\n "canonicalize_radical()"

for instance: simplify_trig? Object simplify_trig not found. simplify_full? Object simplify_full not found.

Where am I confused?

I seem to recall using these but didn't use sage for a while. What works now?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 2 years ago

slelievre gravatar image

They are methods rather than functions.

They can be applied to symbolic expressions.

Try this for instance.

sage: x = SR.var('x')
sage: expr = sin(x)^2 + cos(x)^2
sage: expr.simplify_trig()
Preview: (hide)
link

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: 2 years ago

Seen: 290 times

Last updated: May 23 '22