Pure Flashcards

1
Q

How to find a perpendicular vector from two vectors

A

(vector 1) . (x y z) = 0
(vector 2) . (x y z) = 0
Dot product

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

Roots (alpha, beta, gamma) of polynomials - x^2 term

A

alpha + beta = - b/a

alpha x beta = + c/a

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

How to find the modulus and argument of complex numbers (+ different quadrants)

A
Modulus = |z|
Argument = arctan(y/x)

Quad. 1: arg(z) = arctan(y/x)
Quad 2: arg(z) = pi - arctan(y/x)
Quad 3: arg(z) = arctan(y/x) - pi
Quad 4: arg(z) = - arctan(y/x)

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

Solving simultaneous equations using vectors

E.g. intersection of 2 lines

A

ax + by = c
dx + ey = f
(a b) ( x ) = ( c )
(d e) ( y ) ( f )

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

Meaning of matrix determinant:
2x2 and 3x3
Negative

A

2x2: determinant represents the area scale factor of the transformation
3x3: the determinant represents the volume scale factor of the transformation
Negative: A negative determinant means the orientation of the image is reversed

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

Proof by induction steps

A
  1. Prove for n=1 (or smallest number)
  2. Assume true for n=k. Write it out. This is target expression
  3. Prove for n=k+1. Will need to use the n=k formula depending on the question
  4. Conclusion
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Proof by induction conclusion

A

If true for n=k, then it is true for n=k+1.

Since it is true for n=1, it is true for all integers where n>= 1

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

Use of differential equations

A

To model situations involving rates of change

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

Method of separation of variables (differential equations)

A

dy/dx = f(x) g(y)
(1/g(y)) (dy/dx) = f(x)
integral [1/g(y) dy/dx dx] = integral [f(x) dx]
integral [1/g(y) dy] = integral [f(x) dx]

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

Polar coordinates: polar => cartesian conversion

A
x = rcos(theta)
y = rsin(theta)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Polar coordinates: cartesian => polar conversion

A

r = sq root (x^2 + y^2)
tan theta = y/x
Draw diagram as theta may be negative

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

How to find roots of complex polynomials
e.g. f(x) = z^4 + az^3 + bz^2 + cz + d
when you are given 2 roots

A

If x+yi is a root, then x-yi is also a root

Given: x+yi and a+bi

f(x) = (z - (x+yi))(z - (x-yi))(z - (a+bi))(z - (a-bi))
Expand out

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

Partial fractions: rhs of equation?

1/(x+4)(x+1)

1/(2x^2 +3)(x+1)

1/((x+2)^2) (x+3)

1/((x^2 + 2)^2) (x+3)

A

A/(x+4) + B/(x+1)

(Ax+B)/(2x^2 +3) + C/(x+1)

A/((X+2)^2) + B/(x+2) + C/(x+3)

(Ax+B)/((x^2 + 2)^2) + (Cx+D)/(x^2 + 2) + E/(x+3)

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