Numerical Analysis Blog

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

This week's material

The material covered this week may be structured as follows:

Lecture 1 (Curs 1)

  1. Vector Norms (Norme de vectori in n ). We discuss about the most commonly used vector norms and their equivalence.
  2. Matrix norms in general (norme de matrici) and operator (matrix) norms (norme de operator). We give the most important operator norms: | | A | | 1 , | | A | | , | | A | | 2 where A m , n ( ) .
  3. Conditioning numbers (numere de conditionare) and how these numbers affect the numerical solution of linear systems.
  4. Direct methods for solving linear systems (Metode directe de rezolvare a sistemelor liniare).

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.