Difference between revisions of "Manuals/calci/EVENSUPTO"
Jump to navigation
Jump to search
(Created page with "EV") |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <div style="font-size:30px">'''EVENSUPTO (Limit,StartFrom) '''</div><br/> | |
+ | *<math> Limit</math> is the maximum number. | ||
+ | *<math>StartFrom</math> is the minimum number. | ||
+ | |||
+ | ==Description== | ||
+ | *This function returns the Even numbers list. | ||
+ | *In <math>EVENSUPTO (Limit,StartFrom)</math>,<math>Limit</math> is the maximum number and <math>StartFrom</math> is the Starting of Even numbers. | ||
+ | *Even number is an integer of the form <math>n=2k</math>, where <math>k</math> is an integer. | ||
+ | *So even numbers are integrally divisible by two which means there is no remainder when dividing by 2. | ||
+ | *Even numbers can be either positive or negative. | ||
+ | *For example -4,-2,0,2,4,6,8,10.... | ||
+ | |||
+ | ==Examples== | ||
+ | #EVENSUPTO(20,5) =5 7 9 11 13 15 17 19 (If the Start is not Even, it will start from the Start Parameter itself) | ||
+ | #EVENSUPTO(900,857) = 858 860 862 864 866 868 870 872 874 876 878 880 882 884 886 888 890 892 894 896 898 | ||
+ | #EVENSUPTO(-80,-110) = -110 -108 -106 -104 -102 -100 -98 -96 -94 -92 -90 -88 -86 -84 -82 | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|SFRTTUtAjg4|280|center|EVEN}} | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/EVENS | EVENS]] | ||
+ | *[[Manuals/calci/EVENSET | EVENSET ]] | ||
+ | *[[Manuals/calci/EVEN | EVEN]] | ||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[Z3 | Z3 home ]] | ||
+ | |||
+ | ==References== | ||
+ | [https://www.mathsisfun.com/numbers/even-odd.html Even numbers] | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | |||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 04:26, 14 April 2022
EVENSUPTO (Limit,StartFrom)
- is the maximum number.
- is the minimum number.
Description
- This function returns the Even numbers list.
- In , is the maximum number and is the Starting of Even numbers.
- Even number is an integer of the form , where is an integer.
- So even numbers are integrally divisible by two which means there is no remainder when dividing by 2.
- Even numbers can be either positive or negative.
- For example -4,-2,0,2,4,6,8,10....
Examples
- EVENSUPTO(20,5) =5 7 9 11 13 15 17 19 (If the Start is not Even, it will start from the Start Parameter itself)
- EVENSUPTO(900,857) = 858 860 862 864 866 868 870 872 874 876 878 880 882 884 886 888 890 892 894 896 898
- EVENSUPTO(-80,-110) = -110 -108 -106 -104 -102 -100 -98 -96 -94 -92 -90 -88 -86 -84 -82
Related Videos
See Also
References