Notebook 4 Flashcards

1
Q

Number

A

String of digits in a base b

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Bits

A

Binary Digits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Floating Point Storage

A

Encode numbers with fractional parts in a systematic way using fixed-size encoding.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Systematic encoding

A

sign, significand, exponent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Systematic encoding

A

sign, significand, exponent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Rounding Error

A

Not being able to store the exact solution due to too much digits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Binary Encoding

A

IEEE 754 Standard

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

IEEE Double-precision

A

64 bits total
1 sign bit
53 bit significant
11 bit exponent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

IEEE Single-precision

A

32 bits total
1 sign bit
24 bit significand
8 bit exponent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Analyzing Floating-point programs

A

f(x) = Function to compute
alg(x) = program to compute f(x)
lalg(x)- f(x)l - forward stability analysis

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

“small”

A

forward stable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Forward Stable

A

|alg(x) - f(x)| <= “small”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Backward Stable

A

alg(x) = f(x+deltax),|deltax|

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Taylor’s theorem

A

f(x+deltax) = f(x) + deltax x first deriv x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Small backward error ->

A

forward error small

How well did you know this?
1
Not at all
2
3
4
5
Perfectly