Lecture 1 - Linear algebra Flashcards

Matrices, Fractals, Vectors

1
Q

Square matrix

A

n columns and n rows

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

Diagonal matrix

A

square matrix with non-zero elements only on main diagonal

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

Band matrix

A

Non-zero elements only on main diagonal and few neighboring diagonals

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

Triangular matrix

A

square matrix with non-zero elements only below or above the main diagonal , main diagonal included

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

Identity matrix I

A

diagonal matrix with elements equal to 1

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

Symmetric matrix

A

square matrix where a[i][j]=a[j][i]

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

Sparse matrices

A

Many problems are based on matrices, which contains at most 1% of non-zero elements. It’s more efficient and faster if we store them in the SPARSE format.
e.g.: compressed row storage CRS

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

Arithmetic

A

Addition
Subtraction
Multiplication -> NON-commutative
Dot product

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

Transposition

At or A’

A

swapping rows and columns in such way that after it a[i][j] ==a[j][i]
(AB)t=BtAt

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

Fractal

A

Set with following features:

  • > self-similarity - similar patterns at increasingly small scales
  • > fine or detailed structure at arbitrarily small scales
  • > is not easily described in traditional Euclidean geometric language
  • > simple and recursive definitions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Benoit Mandelbrote

A

MANDELBROT fractal:

  • > for each point at the complex plane
  • > recurrence formula z(0)=0, z(i+1) = z(i)^2+p
  • > The Mandelbrot set consist of the points that do not converge to the infinity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Norm of a vector

A

it’s length

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

Orthogonal vectors

A

Dot product = 0 <=> at * b = 0

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