Discussion about math, puzzles, games and fun. Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °
| |
|
|
You are not logged in. #76 2012-04-30 14:55:33
Re: Generating FunctionsYes, that is all there is to solving those types of permutation problems. Easy with generating functions hard with the school method. In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #77 2012-04-30 14:58:00
Re: Generating FunctionsSeems so. Sorry for asking this,but,how do we prove that the answer we get is what we wanted? The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #78 2012-04-30 15:03:34
Re: Generating FunctionsRemember the guy who did not want to do anymore math so he learned computers. That is how. In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #79 2012-04-30 22:36:56
Re: Generating FunctionsYou mean you? The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #80 2012-04-30 22:38:30
Re: Generating FunctionsThat does not make sense. In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #81 2012-04-30 22:39:47
Re: Generating FunctionsIf I am going to use this method in class,I need to be able to show it works by hand methods.It really doesn't make sense,but it s how it is. The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #82 2012-04-30 22:40:52
Re: Generating FunctionsNope, the computer backs up the hand method. In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #83 2012-04-30 22:41:48
Re: Generating FunctionsEither way-Is there a hand proof that using GFs like that does the job right? The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #84 2012-04-30 22:44:27
Re: Generating FunctionsDifferent question, they are both hand methods. That is why I do not remember them. In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #85 2012-04-30 22:45:34
Re: Generating FunctionsI don't understand you. The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #86 2012-04-30 22:55:00
Re: Generating FunctionsTalking about gfs is different then post #77 In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #87 2012-04-30 22:57:11
Re: Generating FunctionsNo,I meant-How do I prove that the answer we got with GFs is the the correct one by hand methods? The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #88 2012-04-30 22:58:48
Re: Generating FunctionsProve? That is a funny word. Generally when you do a piece of algebra you do not have to prove it. The work is the proof. In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #89 2012-04-30 23:07:55
Re: Generating FunctionsWell,I am not sure if my prof is gonna be happy if I don't show somehow that the number that I got using GFs is correct. Code:CombGF(list):=block([i,j,a,m,s], i=1, m=1, while i<=length(list) do [ a=get(list,i), j=1, s=0, while j<=a do s=s+x^j, m=m*s, i=i+1 ], return(m) ); It compiles,but doesn't run properly. The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #90 2012-04-30 23:13:02
Re: Generating FunctionsYou wrote it? What is the output supposed to look like? In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #91 2012-04-30 23:17:11
Re: Generating FunctionsYes,I wrote it. PS I changed the code line: s=s+x^j, to s=s+x^j/j!, Last edited by anonimnystefy (2012-04-30 23:17:39) The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #92 2012-04-30 23:26:36
Re: Generating FunctionsExpanded out? In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #93 2012-04-30 23:27:41
Re: Generating FunctionsDoesn't matter.I can expand it later if I it doesn't expand itself on output. The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #94 2012-04-30 23:29:33
Re: Generating FunctionsQuestion first: In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #95 2012-04-30 23:31:27
Re: Generating FunctionsI don't know what you mean. The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #96 2012-04-30 23:34:43
Re: Generating FunctionsSame thing. I wish to have the gf of a single dice. How do you do it? In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #97 2012-04-30 23:37:58
Re: Generating FunctionsIt doesn't do the ordinary GF.It does the exp GF for the type of problem you've given me before. The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #98 2012-04-30 23:39:10
Re: Generating FunctionsWhat I am saying is would you write a loop like you have done to do that? In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. #99 2012-04-30 23:42:19
Re: Generating FunctionsThe code in #89 would be for that. The limit operator is just an excuse for doing something you know you can't. “It's the subject that nobody knows anything about that we can all talk about!” ― Richard Feynman “A secret's worth depends on the people from whom it must be kept.” ― Carlos Ruiz Zafón #100 2012-04-30 23:44:18
Re: Generating FunctionsWhy are you using a procedural form in a CAS? In mathematics, you don't understand things. You just get used to them. 90% of mathematicians do not understand 90% of currently published mathematics. I am willing to wager that over 75% of the new words that appeared were nothing more than spelling errors that caught on. |