stfwn
  • Introduction
  • Calculus
    • Gradient
    • Taylor Series
    • Miscellaneous
  • Computer Science
    • Basic Architecture and Assembly
  • Fixes & Snippets
    • Docker
    • HTML
    • LaTeX
    • Linux
    • Node.js
    • Miscellaneous
  • Linear Algebra
    • Orthogonality
    • The Gram-Schmidt Process
    • QR-Factorization
    • Orthogonal Diagonalization
    • Quadratic Forms
    • Least Squares Theorem
    • Singular Value Decomposition
    • Pseudoinverse
  • Miscellaneous
    • Digital Safety
    • Homelab
    • Links
    • Music
  • Reading
Powered by GitBook
On this page
  1. Calculus

Gradient

The gradient is a vector-valued function with the partial derivatives of a function as its components. It is a generalization of the single-variable case of a singular derivative into a function that can describe the slope of a function with any number of variables.

∇f=(∂f∂x∂f∂y∂f∂z...)\nabla f = \begin{pmatrix}\frac{\partial f}{\partial x}\\\frac{\partial f}{\partial y}\\\frac{\partial f}{\partial z}\\...\\\end{pmatrix}∇f=​∂x∂f​∂y∂f​∂z∂f​...​​
PreviousCalculusNextTaylor Series

Last updated 5 years ago