Engineering Mathematics

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

1/147

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:16 AM on 8/4/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

148 Terms

1
New cards

Polar Coordinates

A coordinate system representing points in the real cartesian plane using the distance from the origin rr and the direction from the origin expressed as an angle θ\theta, written as (r,θ)(r, \theta).

2
New cards

Rectangular Coordinates

Another name for cartesian coordinates (x,y)(x, y) which describe a position relative to the xx- and yy-axes.

3
New cards

Converting Polar to Cartesian Coordinates

The formulas used to find cartesian values from polar coordinates: x=rcos(θ)x = r \text{cos}(\theta) and y=rsin(θ)y = r \text{sin}(\theta).

4
New cards

Converting Cartesian to Polar Coordinates

The formulas used to find polar values from cartesian coordinates: r=x2+y2r=\sqrt{x^2+y^2} and tan(θ)=yx\text{tan}(\theta) = \frac{y}{x}.

5
New cards

Function arctan2

A function in the Python library numpy that takes xx and yy as separate arguments and provides the angle θ\theta in the correct quadrant corresponding to polar coordinates. Function is called by np.arctan2(y,x).

6
New cards

Gradient of the tangent to a polar curve

The formula for the slope of a curve r=f(θ)r = f(\theta) in cartesian terms: dydx=f(θ)sin(θ)+f(θ)cos(θ)f(θ)cos(θ)f(θ)sin(θ)\frac{dy}{dx} = \frac{f'(\theta) \text{sin}(\theta) + f(\theta) \text{cos}(\theta)}{f'(\theta) \text{cos}(\theta) - f(\theta) \text{sin}(\theta)}.

7
New cards

Complex Numbers (CC)

Numbers of the form a+bja + bj where j2=1j^2 = -1 (thus j=1j=\sqrt{-1} ) and a,bRa, b \in R.

8
New cards

Real Part (ReRe)

The component aa of a complex number a+bja + bj, denoted as Re(a+bj)=aRe(a + bj) = a.

9
New cards

Imaginary Part (ImIm)

The component bb of a complex number a+bja + bj, denoted as Im(a+bj)=bIm(a + bj) = b.

10
New cards

Purely Imaginary Numbers

Complex numbers where the real part a=0a = 0, resulting in the form bjbj.

11
New cards

Addition of Complex Numbers

The operation defined as (a+bj)+(c+dj)=(a+c)+(b+d)j(a + bj) + (c + dj) = (a + c) + (b + d)j.

12
New cards

Multiplication of Complex Numbers

The operation defined by (a+bj)(c+dj)=(acbd)+(ad+bc)j(a + bj)(c + dj) = (ac - bd) + (ad + bc)j.

13
New cards

Complex Conjugate

For a complex number z=a+bjz = a + bj, the conjugate is denoted as zˉ=abj\bar{z} = a - bj.

14
New cards

Modulus of a complex number (z|z|)

The distance of the point representing z=a+bjz = a + bj from the origin in the complex plane, calculated as z=zz=a2+b2|z|=\sqrt{\overline{z}z}=\sqrt{a^2+b^2} .

15
New cards

Polar Form of a Complex Number

Representing a complex number as z=rejθz = r e^{j\theta} , where r=zr=|z| is the modulus and θ\theta is the argument.

16
New cards

Argument (arg z\text{arg } z)

The angle θ\theta in the polar representation of a complex number, which is determined within a range of 2π2\pi .

17
New cards

Principal Argument (ArgzArg z)

The unique value of the argument θ\theta chosen such that -\pi<\theta<\pi

18
New cards

cmath.polar and cmath.rect()

A specialized Python package used to convert complex numbers into polar form or back to cartesian (rectangular) form.

19
New cards

De Moivre’s Theorem

A theorem stating that for any complex number z=rejθz = r e^{j\theta}, the nthn^{th} power is calculated as zn=rnejnθz^n = r^n e^{jn\theta}, for n=1,2,...n = 1, 2, \text{...}.

20
New cards

Impedance (ZZ)

The complex representation used in electrical circuits to relate voltage VV and current II via a form of Ohm's Law: V=IZV = IZ.

21
New cards

Resistor Impedance (ZRZ_R)

Determined by the resistance RR, where ZR=RZ_R = R.

22
New cards

Capacitor Impedance (ZCZ_C)

Determined by capacitance CC and angular frequency \text{\omega}, where ZC=1jCω=jCωZ_{C}=\frac{1}{jC\omega}=-\frac{j}{C\omega} .This represents the opposition to current flow in a capacitor, indicating that the impedance is inversely related to both capacitance and frequency.

23
New cards

Inductor Impedance (ZLZ_L)

Determined by inductance LL and angular frequency \text{\omega}, where ZL=jLωZ_{L}=jL\omega .

24
New cards

Series Total Impedance

The sum of impedances for nn components in series: Z=Z1+Z2+...+ZnZ = Z_1 + Z_2 + \text{...} + Z_n.

25
New cards

Parallel Total Impedance

The impedance for nn components in parallel given by Z=11Z1+1Z2+...1ZnZ = \frac{1}{\frac{1}{Z_1} + \frac{1}{Z_2} + \text{...} \frac{1}{Z_n}}.

26
New cards

Limit of a Function

The value that a function approaches as the input approaches a given point.

27
New cards

One-Sided Limit

Limits from one side only, denoted limx→a+ for right-hand limits and limx→a− for left-hand limits.

28
New cards

Local Maxima

Points in the domain where the function value is greater than or equal to the values of the function in some neighborhood.

29
New cards

Local Minima

Points in the domain where the function value is less than or equal to the values of the function in some neighborhood.

30
New cards

Critical Point

A point where the derivative is either zero or undefined.

31
New cards

Second Derivative Test

A method to classify critical points by examining the sign of the second derivative.

32
New cards

Stationary Point

A point where the derivative is zero and the function may be at a local maximum or minimum.

33
New cards

Implicit Differentiation

A technique used to differentiate equations that define y implicitly as a function of x.

34
New cards

Related Rates

Problems involving the rates at which two or more related variables change.

35
New cards

Partial Derivatives

Derivatives of functions with multiple variables, holding other variables constant.

36
New cards

Chain Rule for Partial Derivatives

A formula for finding the derivative of a composite function in the context of multiple variables.

37
New cards

Product Rule

If u and v are functions of x, then the derivative of their product is u'v + uv'.

38
New cards

Quotient Rule

If u and v are functions of x, then the derivative of their quotient is (u'v - uv') / v².

39
New cards

Continuous Function

A function without breaks, jumps, or holes in its graph.

40
New cards

Graph of a Function

The visual representation of the set of ordered pairs (x, f(x)) in a Cartesian plane.

41
New cards

Value Approaching Infinity

Describes the behavior of a function as the input grows larger without bound.

42
New cards

Slope of a Tangent Line

The instantaneous rate of change of a function at a given point, equal to the derivative at that point.

43
New cards

Concave Up

Describes a shape of a graph where the second derivative is positive.

44
New cards

Concave Down

Describes a shape of a graph where the second derivative is negative.

45
New cards

Optimization Problem

A problem that seeks to maximize or minimize a particular quantity.

46
New cards

Chain Rule for Functions

Used for differentiating composite functions, stating that the derivative of f(g(x)) is f'(g(x)) * g'(x).

47
New cards

Exponential Growth

Growth that occurs when a quantity increases at a rate proportional to its current value.

48
New cards

Logarithmic Growth

Growth characterized by a slower rate of increase as the quantity becomes larger.

49
New cards

Limit Existence

A limit is said to exist if the function approaches the same value from all directions.

50
New cards

Non-Continuous Function

A function that has discontinuities; it does not have a well-defined limit at certain points.

51
New cards

Inflection Point

A point on a curve where the concavity changes from up to down or down to up.

52
New cards

Step Function

A piecewise constant function that jumps from one value to another at specific points.

53
New cards

Asymptotic Analysis

A method for analyzing the behavior of functions as they approach certain limits.

54
New cards

Maximum Rate of Change

The highest point at which the variable experiences a change with respect to another variable.

55
New cards

Slope Field

A graphical representation of the solutions to a first-order differential equation.

56
New cards

Geometrical Representation of Vectors

Vectors are represented as line segments with an arrowhead indicating direction.

57
New cards

Equal Vectors

Two vectors are equal if they have the same length and direction.

58
New cards

Zero Vector

The vector whose initial and terminal points are the same; has a length of 0.

59
New cards

Dot Product

A scalar obtained from two vectors, calculated as the product of their magnitudes and the cosine of the angle between them.

60
New cards

Cross Product

A vector resulting from multiplying two vectors, which is perpendicular to the plane containing them. Calculated by the product of their magnitudes and the sine of the angle between them.

61
New cards

Unit Vector

A vector with a length of 1.

62
New cards

Gradient Vector

A vector consisting of the partial derivatives of a function, indicating the direction of maximum increase.

63
New cards

Directional Derivative

The rate of change of a function in the direction of a unit vector.

64
New cards

Parametric Curve

A curve defined by parameters where the x and y coordinates are given as functions of a variable.

65
New cards

Torque

The rotational equivalent of a linear force, calculated as the cross product of the position vector and the force vector.

66
New cards

Angle Between Vectors

Calculated using the dot product formula, θ=arccos(uvuv)\theta={arccos}\left(\frac{u \cdot v}{||u|| ||v||}\right) .

67
New cards

Orthogonal Vectors

Vectors that are perpendicular to each other; their dot product is zero.

68
New cards

Impulse

Change in momentum produced by a force acting over time.

69
New cards

Circle Parametrization

The representation of a circle using parametric equations such as (cos(t),sin(t))(cos(t), sin(t)).

70
New cards

Max Directional Derivative

The maximum directional derivative is equal to the magnitude of the gradient; it occurs in the direction of the gradient.

71
New cards

Arc Length

The length of the path traced by a curve over a specific parameter interval.

72
New cards

Sets of Numbers

Categories of numbers that includes natural numbers, integers, rational numbers, and real numbers.

73
New cards

Natural Numbers (N)

The positive whole numbers: {1, 2, 3, 4, …}.

74
New cards

Integers (Z)

All whole numbers including both positive and negative numbers and zero: {…, -3, -2, -1, 0, 1, 2, 3, …}.

75
New cards

Rational Numbers (Q)

Numbers that can be expressed as fractions of two integers: e.g. 1/2, -5/4.

76
New cards

Real Numbers (R)

All rational numbers and other numbers that cannot be expressed as fractions, including √2 and π.

77
New cards

Element of a Set

A number that belongs to a set, denoted by the symbol ∈.

78
New cards

Subset

A set containing some, but not all, elements of another set. Denoted by \subset

79
New cards

Interval Notation

A method to represent subsets of real numbers, indicating ranges between two values.

80
New cards

Closed Interval [a, b]

Set of all x such that a ≤ x ≤ b.

81
New cards

Open Interval (a, b)

Set of all x such that a < x < b.

82
New cards

Union of Sets (∪)

Combines two sets to include all elements from both.

83
New cards

Function

A rule that assigns each element in a domain D a unique value in a set S.

84
New cards

Domain of a Function (D)

The set of all possible inputs for a function.

85
New cards

Range of a Function (R(f))

The set of all output values produced by the function.

86
New cards

Rational Function

A function expressed as the ratio of two polynomial functions, p(x)/q(x)p(x)/q(x), where q(x) ≠ 0.

87
New cards

Exponential Function

Functions of the form f(x)=axf(x) = a^x where a is a positive real number.

88
New cards

Logarithmic Function

The inverse of an exponential function, defining the exponent required to achieve a value.

89
New cards

Trigonometric Functions

Functions such as sin, cos, and tan, relating angles to ratios of side lengths in right triangles.

90
New cards

Sinusoidal Wave

A mathematical curve that describes a smooth periodic oscillation.

91
New cards

Amplitude (A)

Half the distance between the maximum and minimum values of a wave.

92
New cards

Period (T)

The length of time it takes for one complete cycle of a wave.

93
New cards

Frequency (f)

The number of cycles that occur in a unit of time, measured in Hertz (Hz).

94
New cards

Phase Shift

The horizontal shift of the periodic wave, affecting its starting point.

95
New cards

Piecewise Function

A function defined by multiple sub-functions, each applying to a specific interval.

96
New cards

Heaviside Function

A piecewise function defined as H(x) = 0 for x < 0, 1 for x ≥ 0.

97
New cards

Absolute Value Function

A function defined as f(x) = |x| = x if x ≥ 0 and f(x) = -x if x < 0.

98
New cards

Hyperbolic Functions

Functions defined in terms of the exponential function, such as sinh, cosh, and tanh.

99
New cards

Combination of Functions

The result of applying operations (addition, subtraction, multiplication, and division) to functions.

100
New cards

Composite Functions (f ◦ g)

Combining two functions where the output of one function becomes the input of another.