How to Simplify (2n-1)? Any Takes?

  • Context: High School 
  • Thread starter Thread starter marc.morcos
  • Start date Start date
  • Tags Tags
    Simplify
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
11 replies · 28K views
marc.morcos
Messages
11
Reaction score
0
Any Takes?
 
Mathematics news on Phys.org
Oh boy -- wait until Danger gets a hold of this one!
 
1)Part of a homework?
2)What do you mean by "simplify"?
 
i mean like u know how
(n+1)! = n!(n+1)

can we do something like that for (2n-1)!
 
tehno said:
2n!/2n

Simple enough?
:smile:

Simple enough, but it is also wrong.

[tex]\frac {2n!} {2n} = (n-1)![/tex]

Which is not the original expression.
 
I think he meant (2n)!/2n...
 
tehno got it right, integral is wrong. In other words m!=m*(m-1)!, where m=2n.
 
mathman said:
tehno got it right, integral is wrong. In other words m!=m*(m-1)!, where m=2n.

Integral is correct. Pedantically correct, but correct. Math and sloppiness don't mix. The factorial operator has a higher precedence than multiplication:
[tex]2n! = 2(n!)[/tex]
Therefore,
[tex]\frac{2n!}{2n} = \frac 2 2 \frac {n!}n = (n-1)![/tex]

Techno meant to say
[tex](2n-1)! = \frac{(2n)!}{2n}[/tex]
 
Does not (2n-1)! look simple enough itself, giving a clear impression of the function! If one tries to calculate the value of it in a simpler fashion for large n then "Stirling's" approximation is available.
 
D H said:
The factorial operator has a higher precedence than multiplication:

i've never heard of that before... :rolleyes: :confused:
 
fourier jr said:
i've never heard of that before... :rolleyes: :confused:

Factorial is repeated multiplication, as is exponentiation. Exponentiation has higher precedence than multiplication, so it makes sense that factorial has higher precedence than multiplication. In fact, the factorial operator has higher precedence that exponentiation by convention.

Math and sloppiness don't mix. When in doubt, use parentheses. This rule carries over to computer programming. C, for example, has seventeen precedence levels. When in doubt, use parentheses.