I How to answer a Combinations question

  • I
  • Thread starter Thread starter Biochemgirl2002
  • Start date Start date
  • Tags Tags
    Combinations
AI Thread Summary
To determine the number of ways to select six numbers from 1 to 49 in Lotto 649, the correct formula is n! / (r!(n-r)!), which simplifies to (49! / (6!(49-6)!)). The calculation involves multiplying the top six descending numbers (49*48*47*46*45*44) and dividing by 6! to account for the order not mattering, resulting in 13,983,816 combinations. Clarification on the importance of parentheses in mathematical expressions is emphasized, as misinterpretation can lead to incorrect answers. Understanding the formula's derivation and limitations is crucial for accurately solving combinations problems.
Biochemgirl2002
Messages
29
Reaction score
1
Question: When playing Lotto 649, you must pick six numbers from the numbers 1, 2, …, 49. In how many ways can you do this?

My attempt

n!/r!(n-r)! = 49!/6!(49-6)!
(49x48x47x46x...x1)/(6x5x4x3x2x1)(43x42x41x40x...x1)

=0.06 .
(edit: i redid the question and just made it (49x48x47x46x45x44)/(6!) and i got 13,983,816. this seems like it could be the right answer but i am still hesitant because I am not sure that is legal to just remove the 43! from the denominator)

this is definitely wrong, since the number should be huge, but I am not sure how to approach the correct answer
 
Physics news on Phys.org
I think your formula is missing some parens:

## n! / r! (n-r)! ## which is in fact ##\frac {n!} {r!} (n-r)! ## should be ##\frac {n! } {(r! (n-r)!)} ##

by way of explanation, you choose 6 numbers out of 49 which is 49*48*47*46*45*44 or
49! / (49-6)! and now since the order doesn't matter you divide by 6!
 
Alright, so if i did the equation

(49*48*47*46*45*44)/(6*5*4*3*2*1) ,
so therefore the answer would be 13,983,816 ?
 
Just understand the meaning of your formula ie basically learn how to derive it and understand how it works and what its limitations are...

Walk around and amaze your friends by computing probabilities of related events.

The mistake you made here is a common meme among folks studying the order of math operations in fuzzy expressions that's why I added the parens to make it clear.

https://www.insider.com/hard-viral-...#this-viral-math-question-has-two-solutions-1
In particular, look at the 6/2(1+2) example. People really get confused by it with some thinking its
##\frac {6} {2} (1+2) = 9## versus some thinking its ## \frac {6} { 2 * (1+2)} = 1##

Do you see the confusion and why the first one is how we interpret the expression with modern PEMDAS conventions?
 
I was reading a Bachelor thesis on Peano Arithmetic (PA). PA has the following axioms (not including the induction schema): $$\begin{align} & (A1) ~~~~ \forall x \neg (x + 1 = 0) \nonumber \\ & (A2) ~~~~ \forall xy (x + 1 =y + 1 \to x = y) \nonumber \\ & (A3) ~~~~ \forall x (x + 0 = x) \nonumber \\ & (A4) ~~~~ \forall xy (x + (y +1) = (x + y ) + 1) \nonumber \\ & (A5) ~~~~ \forall x (x \cdot 0 = 0) \nonumber \\ & (A6) ~~~~ \forall xy (x \cdot (y + 1) = (x \cdot y) + x) \nonumber...
Back
Top