Midterm 2 + Previous Topics Flashcards

(24 cards)

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

What is the Taylor Series?

A

A function f(x) is equal to the sum of its derivatives at a point a: f(x) = sum from n=0 to infinity of f^(n)(a) * (x-a)^n / n!

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

What is a Maclaurin Series?

A

A Taylor Series centered at a = 0

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

Define Power Series.

A

A sum of the form sum from n=0 to infinity of c_n*(x-a)^n; converges within a radius R

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

What is the Interval of Convergence?

A

The set of x-values for which a power series converges

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

What is an Alternating Series?

A

A series whose terms alternate in sign: a_1 - a_2 + a_3 - …

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

What does the Alternating Series Test state?

A

If a_n is decreasing and lim a_n = 0, then the series sum (-1)^n * a_n converges

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

What is a Taylor Polynomial?

A

A polynomial approximation of f(x) near x = a using n derivatives

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

What is the Remainder/Error Term?

A

The error between a function and its Taylor Polynomial: R_n(x) = f(x) - P_n(x)

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

Define Polar Coordinates.

A

A coordinate system using (r, theta), where r is the radius and theta is the angle

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

Convert Polar to Cartesian coordinates.

A

x = rcos(theta), y = rsin(theta)

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

Convert Cartesian to Polar coordinates.

A

r = sqrt(x^2 + y^2), theta = arctan(y/x)

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

What is the Area in Polar Coordinates?

A

(1/2) * integral from a to b of [r(theta)]^2 dtheta

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

What is a Parametric Curve?

A

A curve defined by x = f(t), y = g(t) where t is a parameter

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

What is the Arc Length of a Parametric Curve?

A

L = integral from a to b of sqrt((dx/dt)^2 + (dy/dt)^2) dt

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

Define Vectors.

A

An object with both magnitude and direction, written <x, y> or <x, y, z>

17
Q

How is Vector Addition performed?

A

Add corresponding components: <x1, y1> + <x2, y2> = <x1+x2, y1+y2>

18
Q

What is Scalar Multiplication?

A

Multiply each component by the scalar: k * <x, y> = <kx, ky>

19
Q

Define the Dot Product.

A

<x1, y1> · <x2, y2> = x1x2 + y1y2; result is a scalar

20
Q

What is the relationship between Dot Product and Angle?

A

a · b = |a||b|cos(theta); used to find angle between vectors

21
Q

What are Orthogonal Vectors?

A

Two vectors a and b are orthogonal if a · b = 0

22
Q

How is Vector Projection calculated?

A

proj_b(a) = (a · b / |b|^2) * b

23
Q

What is the Cross Product?

A

Only in 3D: a × b = a vector perpendicular to both a and b

24
Q

How is a Line in 3D defined?

A

Defined by a point and a direction vector: r(t) = r0 + tv