Difference between revisions of "Manuals/calci/SUMFACTORS"
Jump to navigation
Jump to search
(Created page with "sumfactors") |
|||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | + | <div style="font-size:30px">'''SUMFACTORS (N,HowManyFactors) '''</div><br/> | |
+ | *<math>N</math> is any positive real number. | ||
+ | *<math>HowManyFactors </math> is any real number. | ||
+ | |||
+ | ==Description== | ||
+ | *This function shows the sum factors of the given numbers. | ||
+ | *In <math>SUMFACTORS (N,HowManyFactors)</math>, <math>N</math> is the number to find the sum. | ||
+ | *<math>HowManyFactors</math> is the number of numbers to display. | ||
+ | *Sum factors is the sum of the given number with distinct options. | ||
+ | *This function shows sum of the given number which satisfies a number or quantity that when adding with another produces a given number. | ||
+ | *So for the single number will give the distinct possibilities. | ||
+ | |||
+ | ==Examples== | ||
+ | 1.SUMFACTORS(2,3) | ||
+ | {| border="1" cellpadding="5" cellspacing="0" | ||
+ | |- | ||
+ | |1 || 0 || 1 | ||
+ | |- | ||
+ | | | ||
+ | 1 2 | ||
+ | | | ||
+ | 1 0 | ||
+ | | | ||
+ | 0 0 | ||
+ | |} | ||
+ | 2.SUMFACTORS(3,2.2) | ||
+ | {| border="1" cellpadding="5" cellspacing="0" | ||
+ | |- | ||
+ | |1 || 0 || 2 | ||
+ | |- | ||
+ | | | ||
+ | 1 2 | ||
+ | | | ||
+ | 1 0 | ||
+ | | | ||
+ | 1 1 | ||
+ | |- | ||
+ | | | ||
+ | 1 2 3 | ||
+ | | | ||
+ | 2 1 0 | ||
+ | | | ||
+ | 0 0 0 | ||
+ | |} | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=17st-s5gg10|280|center|Factorization}} | ||
+ | |||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/PRIMEFACTORS| PRIMEFACTORS]] | ||
+ | *[[Manuals/calci/SUM| SUM]] | ||
+ | |||
+ | ==References== | ||
+ | *[https://math.stackexchange.com/questions/163245/finding-sum-of-factors-of-a-number-using-prime-factorization Sum Factors] | ||
+ | |||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 14:46, 31 January 2019
SUMFACTORS (N,HowManyFactors)
- is any positive real number.
- is any real number.
Description
- This function shows the sum factors of the given numbers.
- In , is the number to find the sum.
- is the number of numbers to display.
- Sum factors is the sum of the given number with distinct options.
- This function shows sum of the given number which satisfies a number or quantity that when adding with another produces a given number.
- So for the single number will give the distinct possibilities.
Examples
1.SUMFACTORS(2,3)
1 | 0 | 1 |
1 2 |
1 0 |
0 0 |
2.SUMFACTORS(3,2.2)
1 | 0 | 2 |
1 2 |
1 0 |
1 1 |
1 2 3 |
2 1 0 |
0 0 0 |
Related Videos