Numerical Analysis Blog

Calcul Numeric, ISA II (RO), Technical University of Cluj-Napoca

Week 2

The material covered this week may be structured as follows:

Lecture 2 (Curs 2)

  1. Iterative methods for linear systems (Metode iterative pentru rezolvarea sistemelor liniare):
    1. Jacobi's Method,
    2. Gauss-Seidel Method,
    3. S O R ( ω ) .
  2. Convergence of iterative methods.

Laboratory, Weeks: 1-2 (Laborator, sapt. 1-2).

  1. A quick overview of MatLab/Octave.
  2. Floating point representation of real numbers, round off errors (reprezentarea numerelor in virgula mobila, erori de rotunjire). Some examples of disasters caused by numerical errors can be found here.

    Some exercises will involve the concept of epsilon_machine . In MatLab/Octave the value for epsilon_machine is given by the constant eps. Some sample MatLab code related to this is given below:

    >> 1+eps/4+eps/4+eps/4+eps/4 == 1+(eps/4+eps/4+eps/4+eps/4)
                            

  3. Vector norms and matrix norms (both operator and non-operator norms). Here we discuss the the MatLab/Mathematica commands for computing these norms as well as solve some problems without the direct use of computer.

    Sample Problems

    1. Desenati bilele unitate din 2 pentru | | | | 2 , | | | | si | | | | 1 .
    2. Fie A n , n ( ) , astfel incat: A = ( 4 1 0 . . . . . . . . . 0 1 4 1 0 . . . . . . 0 0 1 4 1 0 . . . 0 . . . . . . . . . . . . . . . . . . . . . 0 . . . . . . 0 1 4 1 0 . . . . . . . . . 0 1 4 ) Sa se arate ca r σ ( A ) 6 si r σ ( A -1 ) 1 / 2 , unde r σ ( A ) este raza spectrala.
  4. Direct methods for linear systems.