====== Differences ====== This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
gibson:teaching:fall-2012:math445:lab1 [2012/08/29 17:05] gibson created |
gibson:teaching:fall-2012:math445:lab1 [2012/08/29 17:12] (current) gibson |
||
---|---|---|---|
Line 20: | Line 20: | ||
for WCF is | for WCF is | ||
- | WCF = 35.7 + 0.6 T - 35.7 V^0.16 + 0.43 T V^0.16 | + | <latex> |
- | + | WCF = 35.7 + 0.6 T - 35.7 V^{0.16} + 0.43 \; T \; V^{0.16} | |
+ | </latex> | ||
Create variables for temperature T and wind speed V and then using this formula, | Create variables for temperature T and wind speed V and then using this formula, | ||
calculate the WCF. | calculate the WCF. | ||
Line 31: | Line 33: | ||
is fix(3.5) == floor(3.5)? | is fix(3.5) == floor(3.5)? | ||
+ | |||
is fix(3.4) == fix(-3.4)? | is fix(3.4) == fix(-3.4)? | ||
+ | |||
is fix(3.2) == floor(3.2)? | is fix(3.2) == floor(3.2)? | ||
+ | |||
is fix(-3.2) == floor(-3.2)? | is fix(-3.2) == floor(-3.2)? | ||
+ | |||
is fix(-3.2) === ceil(-3.2)? | is fix(-3.2) === ceil(-3.2)? | ||
Line 39: | Line 45: | ||
square root of 19 | square root of 19 | ||
+ | |||
3 to the 1.2 | 3 to the 1.2 | ||
+ | |||
tangent of pi | tangent of pi | ||
Line 45: | Line 53: | ||
real in range 0-1 | real in range 0-1 | ||
+ | |||
real in range 0-20 | real in range 0-20 | ||
+ | |||
real in range 20-50 | real in range 20-50 | ||
+ | |||
integer in range 0-10 | integer in range 0-10 | ||
+ | |||
integer in range 0-11 | integer in range 0-11 | ||
+ | |||
integer in range 50-100 | integer in range 50-100 | ||