Roll a standard die n times. For finding the number of permutations of getting exactly k 3's you would do ${n\choose k} \cdot {5} ^{n-k} $ But what about finding at least k 3's? I was thinking of going along the lines of $6^{n}-5^{n}-5^{n - 1} ...-5^{n-k+1}$ which would be total - all rolls without the number 3 minus all the rolls with one 3 minus all the rolls... and keep subtracting until you get to $n - k + 1$ spaces to fill without a 3. This could be wrong and furthermore is there a better equation?
2026-04-11 14:00:37.1775916037
Permutations Discrete Math
69 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in DISCRETE-MATHEMATICS
- What is (mathematically) minimal computer architecture to run any software
- What's $P(A_1\cap A_2\cap A_3\cap A_4) $?
- The function $f(x)=$ ${b^mx^m}\over(1-bx)^{m+1}$ is a generating function of the sequence $\{a_n\}$. Find the coefficient of $x^n$
- Given is $2$ dimensional random variable $(X,Y)$ with table. Determine the correlation between $X$ and $Y$
- Given a function, prove that it's injective
- Surjective function proof
- How to find image of a function
- Find the truth value of... empty set?
- Solving discrete recursion equations with min in the equation
- Determine the marginal distributions of $(T_1, T_2)$
Related Questions in PERMUTATIONS
- A weird automorphism
- List Conjugacy Classes in GAP?
- Permutation does not change if we multiply by left by another group element?
- Validating a solution to a combinatorics problem
- Selection of at least one vowel and one consonant
- How to get the missing brick of the proof $A \circ P_\sigma = P_\sigma \circ A$ using permutations?
- Probability of a candidate being selected for a job.
- $S_3$ action on the splitting field of $\mathbb{Q}[x]/(x^3 - x - 1)$
- Expected "overlap" between permutations of a multiset
- Selecting balls from infinite sample with certain conditions
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Arthur's right in both points - multiply by the binomial coefficients and there aren't any "better" equations except maybe approaching it from the opposite direction.
However, you can sometimes find shortcuts. For example, let's say you flip the coin 5 times and want to know how many ways there are to get 3 or more tails. Well, we can split the results into the following possibilities:
0 tails, 1 tail, 2 tails, 3 tails, 4 tails, 5 tails
What we want is the latter three options (3, 4 or 5 tails). The first three options have the "heads" equivalent:
0 tails = 5 heads 1 tail = 4 heads 2 tails = 3 heads
So what you now have as your list of options:
5 heads, 4 heads, 3 heads, 3 tails, 4 tails, 5 tails
The number of ways to get 3 heads will (for obvious reasons) be equal to the number of ways to get 3 tails. Similarly for 4 of each and 5 of each. So the number of ways to get at least 3 tails = $\frac 12$ of the total possiblities. Total possibilities = $2^5$, so to get 3 or more tails = $\frac 12 * 2^5 = 2^4$. To find the number of outcomes with 2 or more tails out of 5 tosses, you can take half of the total and just add the number of 2-tail results.
This approach works well for odd numbers of tosses, as it splits easily in half. An even number of tosses is a little tougher. Here you could figure out the total, drop the middle one, and then split the rest in half. For example, with 4 tosses we have $2^4 = 16$ possible outcomes. We don't have a natural place to split this in half, though, as the possible outcomes are:
4 heads, 3 heads, 2 heads/2 tails, 3 tails, 4 tails
We do have a natural midpoint, though - the 2H/2T result. For this, we can subtract out the # of 2H/2T possibilities $\binom 42$ and split the rest in half to group them. Therefore we'd know that there are 5 possibilities of either 3 or 4 H, 6 possible outcomes of 2H/2T, and 5 outcomes of 3 or 4 tails.