Basis & Coordinate Sets & Decomposition & DA Flashcards

(52 cards)

1
Q

What is a Basis / Bases?

A

Set of Functions tat allo indexing every element in a set individually and uniquely as a linear combination of the basis

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

What is the Expression for Basis?

A

∀v ∈ V : v = ∑{i} w{i} * e{i}

w{i} = Weights
e{i} = Functions

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

What can any element in a set be expressed as?

A

Summation of the Linear Combination of w{i} * e{i}

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

What is Dimension of a set?

A

No. of functions in the basis

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

What is the Representation?

A

The tuples of values that used to point to the element in the set.

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

How can a point is space be represented?

A

by a linear weighted sum of chosen coordiante basis functions

p = ∑{i} w{i} * e{i}

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

For different tools and expression that simplify to ∑{i} w{i} * e{i} tell us?

A

There MUST be a coordinate basis

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

Give the 3 well known coordinate basis?

A
  • Canonical Basis of Euclidina Space R^n
  • Orthogonal Unit Vectors in Physics i,j,k
  • Argand Basis of Complex plan *C
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In simple terms what does the Coordinate Basis allow you to do?

A

Uniquely Pinpoint elements in a set

Can be scalar, but can be much more complex

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

Do coordinate Basis have to be Normalised or Orthogonal?

A

NO

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

What have Basis?

A
  • ALL non-empty topological Sets
  • ALL vector spaces (That have + & * encoded)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are NON-empty Topological sets guarantee?

A

At least one basis guaranteed

Note a set can have 0, many / infinite basis

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

How do we switch between coordinates basis given we have 2 different representaion of one point?

A
  • Get 2 points to make a system of equations and reslove the new sustem to get a new representation & bais
  • JUST SIMULTANEOUS EQUATIONS:
    You use simultaneous equations to express one basis in terms of the other.That gives you the change-of-basis matrix.Then just multiply by the matrix to convert coordinates
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the Idea of Coordinate Systems in DA?

A

Find a coordinate basis to move/shift a point & return to the other basis to find the new basis.

ONLY WHEN IT IS DIFFICULT TO DO SO ON OG BASIS

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

How can Sampling property of discrete impulse function be expressed?

A

x[n] = ∑{-∞,∞} x[k]δ[n-k]

  • Expresses x[n] as a combo of the coordinates in delta t
  • Signal maybe expressed as the value of the sample at the time at a certain positon. Do it for every postion to get a signal

GPT : is the discrete-time sifting property, expressing x[n] as a sum of scaled and shifted unit impulses — the fundamental “building blocks” of any discrete-time signal.

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

WHat is x[n]

A

x[n] = Discrete signal (possible to express every sample as though it were a unit δ[n] * amplitude

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

What is Dimension of Basis?

A

Min Number of descriptors that are required to uniquely identify any given element

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

What is δ[n-k]?

A

Offset of δ[n] to select the section that we want

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

What is a projection?

A

When a signal of n points can be represented as an impulse in a space with n dimensions, a point in it is called PROJECTION

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

Processing

What is Processing?

A
  • Internal operation
  • Stays on the same plane
  • When the function applies a shift to move a FULL signal to another position
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Analysis

What is Analysis?

A
  • External Processes
  • Moving Across Spaces
  • SAME IDEA AS PROCESSING MOVING FULL SIGNALS
22
Q

What is Decomposition?

A

Algo to find Coordinate Basis of a space with some desired mathematical properties

Optionally with predefiend properties

JUST THE FINDING A BASIS WHERE IT IS EASIER TO CALCULATE THE SHIFT/OPERATION ON

23
Q

What is General Linear Model?

A
  • Most Pervasive Model
  • Expresses 95% of nature & the other 5% is just tranfoming
  • Simple & Powerful

  • I can encode GLM on the same basis as our SIGNALS
  • When working with quadratics or bigger i can rename them so they can work with GLM

24
Q

What is the expression for colinear?

A

y =B1x1 + B0
AKA y = mx+c

25
What is it when Linear Models are Not Colinear?
Not all point fit the model or fit on a straight line in that basis
26
How do you Express Non Colinear Linear Models?
Fit all the data you have with error/uncertiaty **y =B1x1 + B0 + ε** ## Footnote Go from deterministic lines to stochastic lines
27
How to solve Non Colinear Linear Models?
Use Least Squares
28
What is the Expression for a Linear Model?
y = B1 * e1 + B0 * e0 + e # SINGLE y = Bn * en + ... + B1 * e1 + B0 * e0 *They both simpilfy to:* Σ{i} Bi * xi **THIS IS A BASIS** ## Footnote For both single and multivariable
29
What is the Matric Form of GLM?
**Y** = **X** * B | Y = Matrix of Dependent Variables X = Matrix of Indepenedent Variables ## Footnote Use this formal for most of DA & expresses 95% of the universe
30
What is the Matrix Form for Finding B?
**B = ((X^T * X)^ -1) * X^T * Y** ## Footnote Solves Deterministic & Stochastic Models Always gets one answer Can't tell if solution is good mathematically only YOU can determine that
31
What is the Derivation to find B?
XB = Y => (X^T X)B = X^T Y # * *X^T guarnatees prodcut is square and therefore we can calculate inverse* => ((X^T X)^ -1)(X^T X)B = X^T Y ((X^T X)^ -1) => IB = X^T Y ((X^T X)^ -1) => B = X^T Y ((X^T X)^ -1)
32
Whats the rules with Multiplying Matrixes?
Only possible if one matrix has n rows and the other matrix has n columns
33
What is Fourier Analysis?
Method of Operating on signals that is very good at spectral & Filtering ## Footnote Another form of defining a Coordinate Space
34
What does Fourier Analysis do?
Decomposes a signal in the time domain f(t) into its components frequencies g(wi) | No matter complexity can always conver it into sine & cosine
35
What are the 2 ways to Express Fourier Analysis?
- **Complex Exponentials:** f(t) =Σ{-N,N} cn * e ^ (jwtn) - **Sinusoidals:** - f(t) = Σ{0,N}(an * cos(jwtn) + bn * sin(jwtn)) ## Footnote Both related to Euler's Model => e^(jθ) = cos(θ) + jsin(θ) **Just weighted Summation Formulas**
36
What is the Idea of Fourier like the process?
Taking the Signal (the Wave graph), making it a point on a ne basis then moving the point another place and seeing the change on the orginal basis ## Footnote All that matters is ur shifting or moving the point around
37
What is Low Pass Filter?
Makes high component 0 and leaves low as it is. ## Footnote All that matters is ur shifting or moving the point around
38
What is High Pass Filter?
Makes Low Component Cooridnate 0 and Leaves the high one the same. ## Footnote All that matters is ur shifting or moving the point around
39
What is Wavelets?
Approximate a Complex function using superpositioning of similar functions Number of possible wavlets families are latge , therefore can capture a wide range of signal features. Each Wavlet is a wave; Amp at 0 , increase and decrease back to 0
40
What is the Formula for wavelets?
f(t) = Σ{k * n} ck,n Ψ(t; k ,n) ## Footnote Similar to Sinusoidals but compresses time Shifted and scaled by mother wavelet Ψ Function represents Coordinate basis & coeffient represents signal ck,n
41
What is Principal Component Anlaysis & Classical Multidimensional Scaling?
Tool used to find a coordinate basis of a data set such that it aligns wiht MAX Var in datase, in each dimension. Maths based on eigen-decompostion of the correlation matrix ## Footnote PCA 7 cMDS are mathematical duality & thhey yield the same solution
42
Formula for PCA?
p' = Σ{i} (eig i) ^T * (P - μP) ## Footnote eig i => Function (P - μP) => Weight μP => Mean of all data
43
Steps for PCA?
1) Mean Correct Data: *subtract mean from each point* X' = X - E[X] => E[X'] = 0 2) Normalise Data *Define Matrix* H{k * M} = (1 / (sqrt(m-1))) * X'^T Therefore Cov x',x = (X' X^T) /( m-1) = H^T H
44
In PCA What forms the New Basis?
The EigenVectors
45
What does PCA do?
Rotates the Axix/Data: Can do Low pass, high pass, & bandpass & pand rejection filtering
46
What do all Decompostion Follow at is core?
p = **∑{i} w{i} * e{i}**
47
What is A manifold?
Manifolds are sets that can be mapped from one projection onto another - Set with a countable base - Homeomorphic to flat spaces *Hold locally a certain property anywhere* - Family of Topological Spaces - Root in low level maths - Expensive an Very powerful that it often hard to think of practical problems that cannot be seene as a specific case
48
What does Homeomorphic Mean?
- Holds locally a certain property everywhere - Every point **P** in **M** there is an open neighbourhood **U** of **P** & homeomorphism **f: U => V** that maps set **U** to open set **V**. ## Footnote Don't have to be euclidean Cocneputally the object is flat in the local space
49
What is Manifold Embedding
Projection of a manifold onto another, commonly to achieve dimensionality reduction #
50
What is Manifold Equation?
p = Σ{i} wi^(u * p) * ei^(-u * p) (u * p) => the neighbourhood of p (Having a local coordinate basis at each point p)
51
Genreal Remarks/ NOTES:
- Need to use non-linear model use it - Need to generalise then do, if not dont - Know when to stop with mathematical knowledge
52
Explain Info in an inclosed system?
- Info cannot be created or destoryed in an inclosed system - More u manipulate data the entropy grows (*Move points where i want without abusing our power *)