numeric Flashcards
How many bits of computer memory are used when storing a single
32
How many bits of computer memory are used when storing a double
64
How many bits of computer memory are used when storing a long double
80
In a double, how are the bits distrbuted among sign, exponent and significant
1 sign, 11 exponent and 52 mantissa
In a single, how are the bits distrbuted among sign, exponent and significant
1 sign, 8 exponents and 23 mantissa
What is an Mantissa
It is the part of a logarithm after the decimal point.
What are, in absolute value, the largest and smallest numbers representable as doubles?
E=0 and E=2047
Find the absolute round-off error of the numbers below when represented as a double.
- 1415
- 022140857*10^23
- 8*10^(-10)
number_one = 3.1415 *2.22*10**-16 number_two = 6.022140857*10**23*2.22*10**-16 number_three = 0.8*10**-10*2.22*10**-16
Hva kjennetegner komposittmetoder for numerisk integrasjon?
Korrekt svar: Komposittmetoder baserer seg på å splitte integrasjonsintervallet i flere
subintervaller
Rangér metodene fra mest til minst restriktive konvergensbetingelser.
Newton > secant > bisection
Newton > bisection > secant
secant > bisection > Newton
bisection > secant > Newton
Newton > sekant > biseksjon
Hva er usant om algoritmer for å finne nullpunkt til ikke-lineære funksjoner?
Korrekt svar: Biseksjonsmetoden baserer seg på å følge tangentlinjene til funksjonen
Hva er hensikten med partiell pivotering i Gauss-eliminasjon?
Korrekt svar: Å redusere regnefeil som følge av flyttallspresisjon
Heuns metode er et eksempel på…
Korrekt svar: En to-stegs metode
Adaptiv Simpsons metode er…
Korrekt svar: Et eksempel på en rekursiv algoritme
Hva er usant om flyttall?
Korrekt svar: Det er uproblematisk å sjekke likhet mellom to flyttall
Hvilken algoritme brukes for å beregne bestemte integraler?
Korrekt svar: Trapesmetoden
Hva er en rimelig kontrollstruktur å bruke når man skal implementere Newtons metode?
Korrekt svar: En while-løkke
Hva kan man ikke bruke feilestimater for integrasjonsmetoder til?
Korrekt svar: Gi eksakte svar på integralene
How can one deduce the secant method from Newton’s method
Exchange the derivative in Newton’s method for a difference approximation.
Will Newton’s method always converge to a zero?
No, because the converge is reliant on the function and the point
If no derivative is available, which method should you choose - Newton’s method or the secant method?
The secant method
Which method is the safest to use - Newton’s method, the secant method or the bisection method?
Bisection
Which method is the slowest to use - Newton’s method, the secant method or the bisection method?
Bisection
What is Tuple
Tuples are used to store multiple items in a single variable.
What characterises a composite method for numerical integration?
- Simpsons rule cannot be generalized to a composite rule
- Composite rules are based on splitting the integration interval into several subintervals
- Composite rules are based on combining the midpoint and trapezoidal rules
- It is impossible to make error estimates for composite rules
Komposittmetoder baserer seg på å splitte integrasjonsintervallet i flere
subintervaller