Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
2

How to simplify fractions?

asked 7 years ago

ablmf gravatar image

I have the following expression (1)n2n14(2n+1) It clearly equals (1)n4(2n+1)14.

Is there anyway to make sage show this?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
1

answered 7 years ago

ndomes gravatar image

expand the expression and then simplify partially (like transforming by hand)

var('n')
expr = ((-1)^n - 2*n -1) / (4*(2*n + 1))
show(expr)
expr2 = expr.expand()
show(expr2)
expr2.op[0] + sum(expr2.op[1:]).simplify_full()
Preview: (hide)
link
0

answered 7 years ago

Use bool() like so

,var n
f1=((-1)^n-2*n-1)/4/(2*n+1)
f2=(-1)^n/4/(2*n+1)-1/4
show(f1==f2)
bool(f1==f2)
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: 7 years ago

Seen: 1,832 times

Last updated: Apr 19 '17