|
11 | 11 | <meta name="generator" content="quarto-1.5.43"> |
12 | 12 |
|
13 | 13 | <meta name="author" content="Dr. Gilbert"> |
14 | | - <meta name="dcterms.date" content="2026-01-08"> |
| 14 | + <meta name="dcterms.date" content="2026-01-09"> |
15 | 15 | <title>MAT 370: Binary and Floating Point Arithmetic</title> |
16 | 16 | <meta name="apple-mobile-web-app-capable" content="yes"> |
17 | 17 | <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> |
@@ -337,7 +337,7 @@ <h1 class="title">MAT 370: Binary and Floating Point Arithmetic</h1> |
337 | 337 | </div> |
338 | 338 | </div> |
339 | 339 |
|
340 | | - <p class="date">January 8, 2026</p> |
| 340 | + <p class="date">January 9, 2026</p> |
341 | 341 | </section> |
342 | 342 | <section class="slide level2"> |
343 | 343 |
|
@@ -535,7 +535,7 @@ <h2>Binary Representations of Integers</h2> |
535 | 535 | <p><span class="math display">\[\begin{align*} 84 &= 2\left(42\right) + 0\\ |
536 | 536 | 42 &= 2\left(21\right) + 0\\ |
537 | 537 | 21 &= 2\left(10\right) + 1\\ |
538 | | -10 &= 2\left(5\right) + 1 |
| 538 | +10 &= 2\left(5\right) + 0 |
539 | 539 | \end{align*}\]</span></p> |
540 | 540 | </div><div class="column" style="width:60%;"> |
541 | 541 |
|
@@ -566,7 +566,7 @@ <h2>Binary Representations of Integers</h2> |
566 | 566 | <p><span class="math display">\[\begin{align*} 84 &= 2\left(42\right) + 0\\ |
567 | 567 | 42 &= 2\left(21\right) + 0\\ |
568 | 568 | 21 &= 2\left(10\right) + 1\\ |
569 | | -10 &= 2\left(5\right) + 1\\ |
| 569 | +10 &= 2\left(5\right) + 0\\ |
570 | 570 | 5 &= 2\left(2\right) + 1 |
571 | 571 | \end{align*}\]</span></p> |
572 | 572 | </div><div class="column" style="width:60%;"> |
@@ -598,7 +598,7 @@ <h2>Binary Representations of Integers</h2> |
598 | 598 | <p><span class="math display">\[\begin{align*} 84 &= 2\left(42\right) + 0\\ |
599 | 599 | 42 &= 2\left(21\right) + 0\\ |
600 | 600 | 21 &= 2\left(10\right) + 1\\ |
601 | | -10 &= 2\left(5\right) + 1\\ |
| 601 | +10 &= 2\left(5\right) + 0\\ |
602 | 602 | 5 &= 2\left(2\right) + 1\\ |
603 | 603 | 2 &= 2\left(1\right) + 0 |
604 | 604 | \end{align*}\]</span></p> |
@@ -631,20 +631,20 @@ <h2>Binary Representations of Integers</h2> |
631 | 631 | <p><span class="math display">\[\begin{align*} 84 &= 2\left(42\right) + 0\\ |
632 | 632 | 42 &= 2\left(21\right) + 0\\ |
633 | 633 | 21 &= 2\left(10\right) + 1\\ |
634 | | -10 &= 2\left(5\right) + 1\\ |
| 634 | +10 &= 2\left(5\right) + 0\\ |
635 | 635 | 5 &= 2\left(2\right) + 1\\ |
636 | 636 | 2 &= 2\left(1\right) + 0\\ |
637 | 637 | 1 &= 2\left(0\right) + 1 |
638 | 638 | \end{align*}\]</span></p> |
639 | 639 | </div><div class="column" style="width:60%;"> |
640 | 640 | <div class="fragment"> |
641 | | -<p>Reading the remainders from bottom to top, we find that <span class="math inline">\(\left(84\right)_{10} = \left(1011100\right)_{2}\)</span>.</p> |
| 641 | +<p>Reading the remainders from bottom to top, we find that <span class="math inline">\(\left(84\right)_{10} = \left(1010100\right)_{2}\)</span>.</p> |
642 | 642 | </div> |
643 | 643 | <div class="fragment"> |
644 | 644 | <p>Each <em>bi</em>nary dig<em>it</em> is referred to as a <em>bit</em>, and it is common to consider collections of <span class="math inline">\(8\)</span> bits together – known as a <em>byte</em>.</p> |
645 | 645 | </div> |
646 | 646 | <div class="fragment"> |
647 | | -<p>That is, we would more commonly write <span class="math inline">\(\left(01011100\right)_{2}\)</span> as the binary representation of <span class="math inline">\(84\)</span>.</p> |
| 647 | +<p>That is, we would more commonly write <span class="math inline">\(\left(01010100\right)_{2}\)</span> as the binary representation of <span class="math inline">\(84\)</span>.</p> |
648 | 648 | </div> |
649 | 649 | </div> |
650 | 650 | </div> |
|
0 commit comments