Group Abstract Group Abstract

Message Boards Message Boards

0
|
4.8K Views
|
5 Replies
|
5 Total Likes
View groups...
Share
Share this post:

[?] Find relationships between coefficients - Equality?

Posted 8 years ago

Hello everyone. Is it possible to find the relationships between the coefficients Subscript[b,m] Subscript[c,m] Subscript[a,n] Subscript[d,n] so that the following expression:

Sum[Subscript[b, m] z^(-m), {m, 0, M}]/
 Sum[Subscript[a, n] z^(-n), {n, 0, N}]

is equal to:

(Subscript[b, 0]/
   Subscript[a, 0]) Product[(1 - Subscript[c, m] z^(-1)), {m, 0, M}]/
  Product[(1 - Subscript[d, n] z^(-1)), {n, 0, N}]

?

Thank you for your time.

POSTED BY: Gennaro Arguzzi
5 Replies
POSTED BY: Hans Dolhaine

@Hans Dolhaine . I apologize if that's how it sounded. I am glad for the help you gave me. At the beginning I did not understand your answer and for this I asked you another question. My intention was to say thanks with an up vote after I understand your answer. I apologize again, I am mortified.

POSTED BY: Gennaro Arguzzi

Having gotten the idea about the subsets (which is of course well known in the Expansion of a polynomial given in factorized form) there is a second method to do it. See Notebook for the 1st and 2nd method.

Attachments:
POSTED BY: Hans Dolhaine

Hi @Hans Dolhaine . Why there aren't equalities in your solution? I expect for example c1c2=c6c4.

POSTED BY: Gennaro Arguzzi

I consider only one Sum / Product..

Check out the following for differnt M. note the value of sum1 - sum2

M = 5;
sum1 = Collect[Expand[(\!\(
\*UnderoverscriptBox[\(\[Product]\), \(m = 0\), \(M\)]\((1 - 
\*FractionBox[
SubscriptBox[\(c\), \(m\)], \(z\)])\)\)) 1], z]
tt = Table[Subscript[c, j], {j, 0, M}]
ss = Subsets[tt, {2, M + 1}]
sum2 = 1 - (\!\(
\*UnderoverscriptBox[\(\[Sum]\), \(j = 0\), \(M\)]
\*SubscriptBox[\(c\), \(j\)]\))/z + \!\(
\*UnderoverscriptBox[\(\[Sum]\), \(j = 2\), \(M + 1\)]\(
FractionBox[\(Plus @@ \((Apply[Times, 
        Select[ss, Length[#] == j &], {1}])\)\), 
SuperscriptBox[\(z\), \(j\)]] 
\*SuperscriptBox[\((\(-1\))\), \(j\)]\)\)

Simplify[sum1 - sum2]
POSTED BY: Hans Dolhaine
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard