You are not logged in.
How do I get the coefficient of x^4 from that gf without using a CAS?
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
One way is by simple arithmetic, everybody knows how to multiply a polynomial.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
That will take too much time.
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
Not if you expand intelligently. Should take about 10 - 15 minutes.
Or you can treat this like a series and do the coefficients that way. Both ways are tedious. The questions you are asking are a whole course on gf's.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
How can I take those courses?
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
Combinatorics is one of the most difficult parts of math. Much harder than analysis or calculus. Most people will not even attempt to solve a combinatorics problem.
Give me the time and I will answer the question but it will not be quick.
I will teach you but you will have to do it my way.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Okay, teach me.
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
That will take a long time too. You will learn gradually by doing with a minimum of theory. You will start by getting two books online, the Tucker book I talk about all the time and Generatingfunctionology by the great mathematician Herbert S. Wilf, the best.
Want to see the casework answer?
1 pair:
2 pairs:
All the same:
Just 2, {k, k, k, k} and {c, c, c, c}
3 of the same:
36 + 18 + 2 + 24 = 80
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Would you please explain the casework? I do not get what you mean by 1 pair and etc
I have never seen you talking about Tucker and gfology is very hard unless I have a good foundation of gf's.
Last edited by Agnishom (2014-09-15 03:02:37)
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
The first chapter helps a lot of people learn about gf's. Do not think, read as far as you can get.
The Tucker book I recommend to everyone who asks for a book. I sat on my bed and started reading it. A couple of months later I could do combinatorics.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Would you please explain the casework? I do not get what you mean by 1 pair and etc
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
For 1 pair:
s = Permutations[{k, k, k, k, k, c, c, c, c, t, t, t}, {4}];
Select[s, Length[Union[#]] == 3 &]
%//Length
run that and look at them.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Yes, but how did you get that expression?
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
How many pairs are possible?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
A pair of kabooblydoos, a pair of transparent soaps and a pair of carrots.
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
3 is correct and after the pair is chosen how many different singles are there?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
binomial(3,2) or simply 3
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
You have 2 types left after you choose the pair, for instance you choose kk, now you have c and t to make the reamining two. Obviously that can be done in only 1 way or
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
Oh, sorry. Now I multiply 4! In the denominator to get all the possible arrangements and divide by 2! Because there is one repeatition.
Please explain me the two pairs.
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
For two pairs, you have two select the two kinds whose pairs are taken. There are binomial(3,2) ways to do that and then with the same reasoning you multiply with 4! An divide with 2! And 2!
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
Take a look at them:
s2 = DeleteCases[Select[s, Length[Union[#]] == 2 &], {___, a_, ___, a_, ___, a_, ___}]
Length[s2]
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
What does the regex mean?
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
One thing at a time, your froggy characteristics are showing.
Did you look at the lists and the number of them?
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline
It is 18 but what is wrong with post 45?
'And fun? If maths is fun, then getting a tooth extraction is fun. A viral infection is fun. Rabies shots are fun.'
'God exists because Mathematics is consistent, and the devil exists because we cannot prove it'
I'm not crazy, my mother had me tested.
Offline
Double posting carries with it the seeds of confusion.
In mathematics, you don't understand things. You just get used to them.
If it ain't broke, fix it until it is.
Always satisfy the Prime Directive of getting the right answer above all else.
Offline