Unit 4: Functions Involving Parameters, Vectors, and Matrices

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/49

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:11 AM on 3/12/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

50 Terms

1
New cards

Parameter

A value that acts like a constant within one situation but can change between situations; changing it produces a different graph/model.

2
New cards

Family of functions

A collection of functions generated by varying a parameter in a formula (e.g., different values of a give different parabolas).

3
New cards

Input variable (independent variable)

The variable (like x or t) that changes along a single graph and determines the output of the function.

4
New cards

Parameter vs. input variable

The input variable varies along the curve; a parameter changes the entire curve (a different member of the family).

5
New cards

Quadratic vertex form

A quadratic written as f(x)=a(x−h)^2+k, which makes shifts and stretching/reflection easier to see.

6
New cards

Vertex (in vertex form)

For f(x)=a(x−h)^2+k, the vertex is (h,k) and does not change when only a changes.

7
New cards

Vertical stretch/compression (quadratic)

In f(x)=a(x−h)^2+k, |a|>1 makes the parabola narrower (stretch) and 0<|a|<1 makes it wider (compression).

8
New cards

Parabola opening direction

In f(x)=a(x−h)^2+k, a>0 opens upward and a<0 opens downward.

9
New cards

Exponential growth model

A model like P(t)=P0(1+r)^t where growth depends on an initial value and a growth rate parameter.

10
New cards

Initial value (P0)

In P(t)=P0(1+r)^t, the starting amount at t=0; a parameter that sets the initial height/scale of the model.

11
New cards

Growth rate (r)

In P(t)=P0(1+r)^t, the parameter controlling how fast the quantity grows or decays per time step.

12
New cards

Growth factor (1+r)

The base of the exponential in P(t)=P0(1+r)^t; increasing r increases the growth factor and speeds up growth.

13
New cards

Parametric representation

A way to describe a curve by writing both x and y as functions of a parameter (often time).

14
New cards

Parametric equations

Equations of the form x=f(t) and y=g(t) that produce points (x(t),y(t)) as t varies.

15
New cards

Coordinate functions

The separate functions x(t) and y(t) in a parametric description; both depend on the same parameter t.

16
New cards

Trace (parametric curve)

The set of points (x(t),y(t)) produced as t varies; the point moves along and “traces” the curve.

17
New cards

Orientation (direction of tracing)

The direction a parametric curve is traveled as t increases; this is part of the parametric description.

18
New cards

Eliminating the parameter

Converting parametric equations to a single x–y relation by solving for t in one equation and substituting into the other.

19
New cards

Cartesian equation

A single equation relating x and y (no parameter), often found by eliminating the parameter from parametric equations.

20
New cards

Circle parametrization

A radius-r circle centered at the origin can be written as x=r cos(t), y=r sin(t).

21
New cards

Pythagorean identity (trig)

cos^2(t)+sin^2(t)=1; used to eliminate t from x=r cos(t), y=r sin(t) to get x^2+y^2=r^2.

22
New cards

Parameter interval restriction

Restricting t (e.g., 0≤t≤2) restricts which portion of the curve is traced, even if the Cartesian equation describes more.

23
New cards

Planar motion model

Interpreting parametric equations with t as time, where x(t) and y(t) give an object’s position over time.

24
New cards

Position (in parametrics)

The location of a particle at time t given by the point (x(t),y(t)).

25
New cards

Position vector

A vector from the origin to the position: p(t)=⟨x(t),y(t)⟩ (or x(t)i+y(t)j).

26
New cards

Displacement vector

Change in position from t=a to t=b: ⟨x(b)−x(a), y(b)−y(a)⟩.

27
New cards

Average velocity vector

Displacement divided by elapsed time: ⟨(x(b)−x(a))/(b−a), (y(b)−y(a))/(b−a)⟩.

28
New cards

Direction of motion (component test)

Determined by whether x(t) and y(t) increase or decrease as t increases (e.g., increasing x and decreasing y means right and down).

29
New cards

Horizontal extrema (parametric motion)

The maximum and minimum values of x(t) on the given time interval (furthest left/right points).

30
New cards

Vertical extrema (parametric motion)

The maximum and minimum values of y(t) on the given time interval (highest/lowest points).

31
New cards

Implicitly defined relation

An equation in x and y not solved for one variable in terms of the other; it may represent multiple curves or fail the vertical line test.

32
New cards

Vertical line test

A graph represents y as a function of x only if every vertical line intersects it at most once.

33
New cards

Parametrization verification (by substitution)

To check a parametrization, substitute x(t) and y(t) into the original equation and confirm it holds for all allowed t.

34
New cards

Vector

A quantity with magnitude and direction; in the plane it is often represented by components.

35
New cards

Vector components (component form)

Writing a vector as ⟨a,b⟩ meaning move a units horizontally and b units vertically.

36
New cards

Vector from P to Q

For P(x1,y1) and Q(x2,y2), the vector PQ is ⟨x2−x1, y2−y1⟩.

37
New cards

Magnitude of a vector

For v=⟨a,b⟩, the length is |v|=√(a^2+b^2).

38
New cards

Scalar multiplication (vectors)

Multiplying v=⟨a,b⟩ by k gives k⟨a,b⟩=⟨ka,kb⟩, scaling length by |k| and reversing direction if k<0.

39
New cards

Unit vector

A vector of magnitude 1 giving direction; for nonzero v, v̂ = (1/|v|)v.

40
New cards

Dot product

For u=⟨a,b⟩ and v=⟨c,d⟩, u·v=ac+bd; connects algebra to angles and perpendicularity.

41
New cards

Perpendicular vectors (dot product test)

If u·v=0 and both vectors are nonzero, then u and v are perpendicular.

42
New cards

Matrix (dimensions)

A rectangular array of numbers with size n×m (n rows, m columns) used for data, systems, and transformations.

43
New cards

Matrix multiplication (defined and how)

(m×k)(k×n) is defined and produces an m×n matrix; entries come from row-by-column products (not element-wise).

44
New cards

Identity matrix (2×2)

I=[[1,0],[0,1]]; multiplying by I leaves a vector unchanged (I x = x).

45
New cards

Determinant (2×2)

For A=[[a,b],[c,d]], det(A)=ad−bc; |det(A)| is the area scale factor, det(A)=0 means not invertible, and a negative det flips orientation.

46
New cards

Inverse of a 2×2 matrix

If det(A)≠0 for A=[[a,b],[c,d]], then A^{-1}=(1/(ad−bc))[[d,−b],[−c,a]].

47
New cards

Linear transformation (in R^2)

A mapping L that preserves addition and scalar multiplication: L(u+v)=L(u)+L(v) and L(c v)=cL(v); it keeps the origin fixed and can be represented by a 2×2 matrix.

48
New cards

Composition of transformations (order matters)

If A is applied first and then B, the combined matrix is BA; in general AB≠BA, so changing order can change the result.

49
New cards

Transition matrix

A matrix whose entries encode how amounts/percentages move between states each time step; repeated multiplication models the system over time.

50
New cards

State vector

A vector listing the amounts (or proportions) in each state at a given time; multiplying by a transition matrix updates it to the next time step.

Explore top notes

note
Factorisation (copy)
Updated 1073d ago
0.0(0)
note
Notes
Updated 1187d ago
0.0(0)
note
Tsunamis
Updated 674d ago
0.0(0)
note
US History Student Notes
Updated 2d ago
0.0(0)
note
26.2 History of Life on Earth
Updated 1774d ago
0.0(0)
note
KOREAN - IMPORTANT VOCABULARY
Updated 1254d ago
0.0(0)
note
Factorisation (copy)
Updated 1073d ago
0.0(0)
note
Notes
Updated 1187d ago
0.0(0)
note
Tsunamis
Updated 674d ago
0.0(0)
note
US History Student Notes
Updated 2d ago
0.0(0)
note
26.2 History of Life on Earth
Updated 1774d ago
0.0(0)
note
KOREAN - IMPORTANT VOCABULARY
Updated 1254d ago
0.0(0)

Explore top flashcards

flashcards
faf
40
Updated 957d ago
0.0(0)
flashcards
faf
40
Updated 957d ago
0.0(0)