Errors Accuracy and Roundoff
- Binary
- Convert binary to deciman (>1 and <1)
- Floating point representation
- why is it call that (float point representation)?
- how are 1.001E3 and 2.2E-1 added?
- What are the parts of a floating point number including their names?
- Precision
- What is the relative error (machine precision) for doubles on a computer?
- How many bits are in a byte?
- How many bytes and bits are in a double?
- In math, we have $\mathbb{N,,Z,,Q,,R,,C}$. Which do we have naturally on computers?
- Is $a+b+c$ the same as $a+c+b$? Why?
- Roundoff error analysis
- What is 1/10 in binary? (Why is that interesting?)
- Whis is best: $a^2-b^2$ or $(a-b)(a+b)$?
- Which calculation should make you more nervous and why: $\prod_ix_i$, $\sum_ix_i$?
- Why is subtracting two nearly equal numbers bad?