2024-09-13 09:10:32

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

View File

@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "UNB/Year 5/Semester 1/MAAC3113/In class notes.md", "file": "UNB/Year 5/Semester 1/CS3113/In class notes.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@ -85,7 +85,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "UNB/Year 5/Semester 1/MAAC3113/In class notes.md", "file": "UNB/Year 5/Semester 1/CS3113/In class notes.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -102,7 +102,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "UNB/Year 5/Semester 1/MAAC3113/In class notes.md", "file": "UNB/Year 5/Semester 1/CS3113/In class notes.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -125,7 +125,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "UNB/Year 5/Semester 1/MAAC3113/In class notes.md" "file": "UNB/Year 5/Semester 1/CS3113/In class notes.md"
} }
} }
} }
@ -149,12 +149,12 @@
}, },
"active": "3e47767dcfdfb364", "active": "3e47767dcfdfb364",
"lastOpenFiles": [ "lastOpenFiles": [
"UNB/Year 5/Semester 1/MAAC3113/In class notes.md",
"README.md", "README.md",
"UNB/Year 5/Semester 1/HIST1001/In class notes.md", "UNB/Year 5/Semester 1/HIST1001/In class notes.md",
"UNB/Year 5/Semester 1/HIST1451/Race predictions group project.md", "UNB/Year 5/Semester 1/HIST1451/Race predictions group project.md",
"UNB/Year 5/Semester 1/HIST1451/In class notes.md", "UNB/Year 5/Semester 1/HIST1451/In class notes.md",
"UNB/Year 5/Semester 1/CS3113/In class notes.md", "UNB/Year 5/Semester 1/CS3113/In class notes.md",
"UNB/Year 5/Semester 1/MAAC3113/In class notes.md",
"UNB/Year 5/Semester 1/MAAC3113", "UNB/Year 5/Semester 1/MAAC3113",
"UNB/Year 5/Semester 1/HIST1451/Political questionaire.md", "UNB/Year 5/Semester 1/HIST1451/Political questionaire.md",
"UNB/Year 5/Semester 1/CS3113", "UNB/Year 5/Semester 1/CS3113",

View File

@ -48,3 +48,13 @@ Convert a real number to a floating point number:
1. Decimal to binary 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 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