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

How did simplify_full() manipulate this expression?

asked 5 years ago

joakim_uhlin gravatar image

This is sort of a follow up to a previous question of mine: https://ask.sagemath.org/question/475...

I wanted to prove a certain combinatorial equality. Now, to prove this identity in Sage, I can define the two function LHS(n,k) and RHS(n,k) representing the left- and righthand side and make sure that LHS(n,k)RHS(n,k)=0 with the following code (actually the code provides a proof of a slightly more general identity, which holds for other values of n,k as well.):

var('n k')

def LHS(n,k):
    return n/2*(
        (n/2+1-k)/(n/2+1)*((n/2+1)/(k/2)*binomial(n/2-3,k-4)*2**(n/2-k+1)*1/(k/2-1)*binomial(k-4,k/2-2))+
        2*(k/2+1)/(n/2+1)*((n/2+1)/(k/2+1)*binomial(n/2-3,k-2)*2**(n/2-k-1)*1/(k/2)*binomial(k-2,k/2-1)))

def RHS(n,k):
    return (n/k)*(2**(n/2-k))*binomial(n/2-2,k-2)*binomial(k-2,k/2-1)

(LHS(n,k)-RHS(n,k)).simplify_full()

This outputs

0

which is what I want but I would like to prove this identity with pen-and-paper and this seems to be a bit tricky. I wonder if there is a way to see how exactly simplify_full() were able simplify the expressions?

Preview: (hide)

Comments

rburing gravatar imagerburing ( 5 years ago )

1 Answer

Sort by » oldest newest most voted
2

answered 5 years ago

Emmanuel Charpentier gravatar image

updated 5 years ago

Well...

sage: (LHS(n,k)-RHS(n,k)).simplify_factorial().canonicalize_radical()
0

is a big fat red hint...

EDIT : The big fat red hint is that canonicalize_radical transforms an "horrible`expression to someting more palatable...

Preview: (hide)
link

Comments

Right. As the expression obtained by writing "(LHS(n,k)-RHS(n,k)).simplify_factorial()" is quite horrible, I suspect that Sage will not be able to give me any good insight into how to prove this equality.

joakim_uhlin gravatar imagejoakim_uhlin ( 5 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: 5 years ago

Seen: 500 times

Last updated: Sep 05 '19