Math Problem Statement

Z cyfr {0, 1, 2, 3, 4, 5, 6} losujemy 3 bez zwracania. Oblicz prawdopodobieństwo, że utworzona z tych cyfr liczba jest podzielna przez 5.

Solution

The problem can be summarized as follows:

Question: From the digits {0,1,2,3,4,5,6}\{0, 1, 2, 3, 4, 5, 6\}, three are drawn without replacement. Calculate the probability that the number formed by these digits is divisible by 55.

Solution:

A number is divisible by 55 if and only if its last digit is 00 or 55. We calculate the probability step by step:


Total number of possible outcomes

The total number of ways to select 33 digits from the 77 available is: (73)=765321=35\binom{7}{3} = \frac{7 \cdot 6 \cdot 5}{3 \cdot 2 \cdot 1} = 35 For each combination of 33 digits, the digits can be arranged in 3!=63! = 6 different ways to form numbers. Thus, the total number of three-digit numbers is: 356=21035 \cdot 6 = 210


Favorable outcomes (numbers divisible by 55)

  1. Case 1: The last digit is 00:

    • If the last digit is 00, we need to select 22 additional digits from {1,2,3,4,5,6}\{1, 2, 3, 4, 5, 6\} (6 digits in total).
    • The number of ways to choose 22 digits is: (62)=652=15\binom{6}{2} = \frac{6 \cdot 5}{2} = 15
    • For each selection of 22 digits, there are 2!=22! = 2 ways to arrange the first two digits, so the total number of favorable outcomes for this case is: 152=3015 \cdot 2 = 30
  2. Case 2: The last digit is 55:

    • If the last digit is 55, we need to select 22 additional digits from {0,1,2,3,4,6}\{0, 1, 2, 3, 4, 6\} (6 digits in total).
    • The number of ways to choose 22 digits is: (62)=15\binom{6}{2} = 15
    • For each selection of 22 digits, there are 2!=22! = 2 ways to arrange the first two digits, so the total number of favorable outcomes for this case is: 152=3015 \cdot 2 = 30

Thus, the total number of favorable outcomes is: 30+30=6030 + 30 = 60


Probability

The probability is given by: P=Favorable outcomesTotal outcomes=60210=27P = \frac{\text{Favorable outcomes}}{\text{Total outcomes}} = \frac{60}{210} = \frac{2}{7}


Final Answer:

The probability that a three-digit number formed from these digits is divisible by 55 is: 27\boxed{\frac{2}{7}}


Do you want details on any step? Here are 5 related questions you might explore:

  1. How is the total number of combinations calculated in problems like this?
  2. What happens to the probability if digits are drawn with replacement?
  3. Can you calculate the probability for other divisors, such as 33 or 22?
  4. How does arranging digits affect the total outcomes?
  5. What is the role of permutations versus combinations in this problem?

Tip: Always consider divisibility rules carefully when working with problems involving probabilities and digits.

Ask a new question for Free

By Image

Drop file here or Click Here to upload

Math Problem Analysis

Mathematical Concepts

Probability
Combinatorics
Number Theory

Formulas

P = Favorable outcomes / Total outcomes
Combinations: C(n, k) = n! / [k!(n-k)!]
Permutations: P(n) = n!

Theorems

Divisibility rule for 5

Suitable Grade Level

Grades 9-11