Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1000 Bytes

File metadata and controls

51 lines (35 loc) · 1000 Bytes

Mathematics

Calculus

Derivatives

Sum of functions

h(x) = f(x) + g(x)
h'(x) = f'(x) + g'(x)

Subtraction of functions

h(x) = f(x) - g(x)
h'(x) = f'(x) - g'(x)

Multiplication of functions

h(x) = f(x) • g(x)
h'(x) = f'(x) • g(x) + f(x) • g'(x)

Division of functions

h(x) = f(x) / g(x)
h'(x) = (f'(x) • g(x) - f(x) • g'(x)) / (g(x))²

Domain of a Vector-Valued Function

The domain of f is the intersection of the domains of its component functions.

  • t²: (-∞,∞)
  • 1/(t+3): (-∞,-3) ∪ (-3,∞)
  • √-t: -t > 0: (-∞,0]
  • ln(t): t > 0: (0,∞)
  • cot(t): cos(t)/sin(t): sin(t) ≠ 0: t ≠ nπ: (-∞,nπ) ∪ (nπ,∞)

Linear Algebra

Matrices

  • Upper triangular matrices: square matrix in which all entries below the diagonal are zeros
  • Lower triangular matrices: square matrix in which all entries above the diagonal are zeros
  • Diagonal matrices: matrix for which all entries above and below the diagonal are zeros