Difference between revisions of "Manuals/calci/EVENS"
Jump to navigation
Jump to search
(Created page with "evens") |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | <div style="font-size:30px">'''EVENS (Limit,StartFrom)'''</div><br/> | |
+ | *<math> Limit</math> is the number of even numbers. | ||
+ | *<math>StartFrom</math> is the minimum number. | ||
+ | |||
+ | ==Description== | ||
+ | *This function returns the Even numbers list. | ||
+ | *In <math>EVENS (Limit,StartFrom)</math>,<math>Limit</math> is number of Even numbers 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== | ||
+ | #EVENS(10,89) = 89 91 93 95 97 99 101 103 105 107(If the Start is not Even, it will start from the Start Parameter itself) | ||
+ | #EVENS(7,-30) = -30 -28 -26 -24 -22 -20 -18 | ||
+ | #EVENS(6,9.43) = 9.43 11.43 13.43 15.43 17.43 19.43 | ||
+ | |||
+ | ==Related Videos== | ||
+ | {{#ev:youtube|SFRTTUtAjg4|280|center|EVEN}} | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/EVEN | EVEN]] | ||
+ | *[[Manuals/calci/EVENSET | EVENSET ]] | ||
+ | *[[Manuals/calci/EVENSUPTO | EVENSUPTO]] | ||
+ | *[[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:20, 14 April 2022
EVENS (Limit,StartFrom)
- is the number of even numbers.
- is the minimum number.
Description
- This function returns the Even numbers list.
- In , is number of Even numbers 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
- EVENS(10,89) = 89 91 93 95 97 99 101 103 105 107(If the Start is not Even, it will start from the Start Parameter itself)
- EVENS(7,-30) = -30 -28 -26 -24 -22 -20 -18
- EVENS(6,9.43) = 9.43 11.43 13.43 15.43 17.43 19.43
Related Videos
See Also
References