For n>= 1 let a(sub n) be the number of ways in which 2n people can be paired to do n simulataneous projects. Find a recurrence relation for a(sub n)
This reminds me the following anecdote about the physicist Paul Dirac, one of the founders of quantum mechanics.
I do not mean to be rude in any way, but in addition to just the problem statement it would be nice to see some approaches you tried to solve the problem and the difficulties you encountered.Dirac was working on an equation on the board. Turning around after to a silent audience he asked for any questions. A person in audience raised a hand and said "I do not understand such-and-such an equation". To which Dirac replies, "That's not a question, it's a statement."
I dont think that recurrence relation works since a _ 2 = 3 but when u plug it into the reccurence to find a_2 it doesnt come out.
Ive been working on it and cant seem to find anything that is working for me. I tried many combinations of 2n(n-1)a_(n-2) becauase I believe that part is correct Im just unsure of how to get the a_(n-1) term
What about this reasoning? We want to find. Suppose we have
people. Let's arbitrarily pick one of them. This person can be paired in
ways. After this person is paired, we have
people left, and we already know in how many ways they can be paired. It seems that all pairings thus obtained are different and cover everything.
It is very easy to see that two different recursive definition:
;
Define the same number sequence!
But the question is :
Without using Mathematical Induction, how to get another recursive definition If one of the recursive definition is known?
How to solve the first recursive relation without using the Mathematics Induction?
can anybody give a solution or hint?