xXOfNiRXx Messages 13 Reaction score 0 Thread starter Nov 14, 2009 #1 Just a quick question. I'm having problems with factorials. For example, how do you simplify 2n+2!? Is it 2n!*2n+1!? Thanks everybody!
Just a quick question. I'm having problems with factorials. For example, how do you simplify 2n+2!? Is it 2n!*2n+1!? Thanks everybody!
Mark44 Mentor Insights Author Messages 38,145 Reaction score 10,746 Nov 14, 2009 #2 Strictly speaking, 2n + 2! would be just 2n + 2, since 2! = 2. You probably meant (2n + 2)!, which is (2n + 2)*(2n + 1)*(2n)!. Edit: added a missing factor in the above. Note that 2n! is different from (2n)!. The first is 2(n*(n-1)*(n-2)*...*2*1). The second is 2n*(2n-1)*(2n-2)*...*2*1. You should get into the habit of using parentheses... Last edited: Nov 15, 2009
Strictly speaking, 2n + 2! would be just 2n + 2, since 2! = 2. You probably meant (2n + 2)!, which is (2n + 2)*(2n + 1)*(2n)!. Edit: added a missing factor in the above. Note that 2n! is different from (2n)!. The first is 2(n*(n-1)*(n-2)*...*2*1). The second is 2n*(2n-1)*(2n-2)*...*2*1. You should get into the habit of using parentheses...
Avodyne Science Advisor Messages 1,393 Reaction score 94 Nov 14, 2009 #3 Mark44 said: You probably meant (2n + 2)!, which is (2n + 1)*(2n)!. Actually, it's (2n+2)*(2n+1)*(2n)!, but I'm sure you knew that.
Mark44 said: You probably meant (2n + 2)!, which is (2n + 1)*(2n)!. Actually, it's (2n+2)*(2n+1)*(2n)!, but I'm sure you knew that.
Mark44 Mentor Insights Author Messages 38,145 Reaction score 10,746 Nov 15, 2009 #4 Yeah, knew that, but didn't manage to write it. I edited my earlier post.