kwatts59 has asked for the wisdom of the Perl Monks concerning the following question:
There are two arrays, each with n numbers. How do I calculate the sum of all the possible n-tuples.
For example, array @A has 4 numbers and array @B has 4 numbers as follows:
@A = ($a1,$a2,$a3,$a4); @B = ($b1,$b2,$b3,$b4);
How do I calculate the sum of all 4-tuples?
Note that there are no duplicate numbers or positions. Ex. a1*a1*a2*a2 or a1*b1*a2*b2 are not counted.$E = b1*a2*a3*a4 + a1*b2*a3*a4 + a1*a2*b3*a4 + a1*a2*a3*b4 + b1*b2*a3*a4 + b1*a2*b3*a4 + b1*a2*a3*b4 + a1*b2*b3*a4 + a1*b2*a3*b4 + a1*a2*b3*b4 + b1*b2*b3*a4 + b1*b2*a3*b4 + b1*a2*b3*b4 + a1*b2*b3*b4 + b1*b2*b3*b4;
2019-05-17 Athanasius added code tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: adding n-tuples
by choroba (Cardinal) on May 16, 2019 at 14:38 UTC | |
|
Re: adding n-tuples
by WoodyWeaver (Monk) on May 16, 2019 at 13:44 UTC | |
|
Re: adding n-tuples
by LanX (Saint) on May 16, 2019 at 14:51 UTC | |
|
Re: adding n-tuples
by tybalt89 (Monsignor) on May 16, 2019 at 15:08 UTC | |
by LanX (Saint) on May 16, 2019 at 15:41 UTC | |
by tybalt89 (Monsignor) on May 16, 2019 at 16:46 UTC | |
|
Re: adding n-tuples
by BillKSmith (Monsignor) on May 16, 2019 at 14:41 UTC | |
|
Re: adding n-tuples
by QM (Parson) on May 16, 2019 at 15:23 UTC | |
by LanX (Saint) on May 16, 2019 at 15:38 UTC |