Suppose there are "$n$" people and there are "$n$" seats, how many ways can those $n$ people seat such that person $i$ can´t seat in the the $i$ seat?. For example: person $2$ can´t seat in the second place. I don´t know if this changes the solution, but suposse that $n$ is and odd number. Thanks.
2026-04-13 12:04:57.1776081897
Suppose there are "$n$" people and there are "$n$" seats...
76 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in COMBINATORICS
- Using only the digits 2,3,9, how many six-digit numbers can be formed which are divisible by 6?
- 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$
- Name of Theorem for Coloring of $\{1, \dots, n\}$
- Hard combinatorial identity: $\sum_{l=0}^p(-1)^l\binom{2l}{l}\binom{k}{p-l}\binom{2k+2l-2p}{k+l-p}^{-1}=4^p\binom{k-1}{p}\binom{2k}{k}^{-1}$
- Algebraic step including finite sum and binomial coefficient
- nth letter of lexicographically ordered substrings
- Count of possible money splits
- Covering vector space over finite field by subspaces
- A certain partition of 28
- Counting argument proof or inductive proof of $F_1 {n \choose1}+...+F_n {n \choose n} = F_{2n}$ where $F_i$ are Fibonacci
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?
Let's start with the opposite. How many different ways can person $i$ end up in seat $i$? Well, allowing everyone else to sit where they like gives $(n-1)!$ possibilities.
We can add up the number of ways the first person can be in the first seat, the second person can be in the second seat, and so on to get $$\overbrace{(n-1)!+(n-1)!+ \cdots +(n-1)!}^{n \ times}.$$ This gives us $n \times (n-1)! = n!$ possibilities. Now that can't be right because that is the same as the total number of all permutation. Where did we go wrong? Well, we counted some configurations twice. If person one and person two were both in their own seats, then we counted that possibility when we did the computation for person one and for person two. Thus we can now subtract every possibility where any two people are in the same seats. There are $n \choose 2$ ways we can pick two seats, and $(n-2)!$ ways to permute the rest of the people, which brings us to $$n \times (n-1)! - {n \choose 2} \times (n-2)!$$ configurations. But now we have to account for the possibility that say the first three people were in their seats. We would have subtracted those cases when we calulated the possibilities for 1 and 2, 2 and 3, and 1 and 3. Thus we have to add again.
This process is called inclusion-exclusion, and there are many places to read more about it. For a small example, you can start with a three circle venn diagram and think about how you can calculate the total number of objects in a union of three sets using just full sets, intersections and the picture.
When you continue the process in the case of $n$ people we get a sum of the form
$${n \choose 1} \times (n-1)! - {n \choose 2} \times (n-2)! + {n \choose 3} \times (n-3)! - \cdots \pm {n \choose n} \times 0!.$$ Since $${n \choose k}(n-k)! = \frac{n!}{k!(n-k)!}(n-k)! = \frac{n!}{k!},$$ this equals
$$\frac{n!}{1!} - \frac{n!}{2!} + \frac{n!}{3!} \cdots \pm \frac{n!}{n!}$$ or $$n!\left(\frac{1}{1!} - \frac{1}{2!} + \frac{1}{3!} \cdots \pm \frac{1}{n!}\right).$$