2024-09-13 09:10:32

This commit is contained in:
2024-09-13 09:10:33 -03:00
parent dcf54efb2e
commit d55e35f8e7
2 changed files with 16 additions and 6 deletions

View File

@ -47,4 +47,14 @@ IEEE rounding to nearest role:
Convert a real number to a floating point number:
1. Decimal to binary number
2. Justify step: Shift the radix to the right of the left most one, compensate with the exponent. 100.1 -> 1.0001 x_2^3
3. We do it with respect to p.A d.p 52 numbers ??? I think she means IEEE rounding
3. We do it with respect to p.A d.p 52 numbers ??? I think she means IEEE rounding
There is no need to represent the first bit of the mantissa, since it is always 1 with certain exceptions
Overflow - exponent greater than 1023
Underflow - exponent less than 2^-1074
Normally set to zero
Mean value theorem - *Info and graph in slides*
Taylor's Theorem