Andrew Gurung
  • Introduction
  • Data Science
    • Natural Language Processing
      • Sentiment analysis using Twitter
    • Linear Algebra
      • Linear algebra explained in four pages
      • Vectors
        • Vector Basics
        • Vector Projection
        • Cosine Similarity
        • Vector Norms and Orthogonality
        • Linear combination and span
        • Linear independence and Basis vectors
      • Matrices
        • Matrix Arithmetic
        • Matrix Operations
        • Functions and Linear Transformations
        • Matrix types
      • Eigendecomposition, Eigenvectors and Eigenvalues
      • Principle Component Analysis (PCA)
      • Singular-Value Decomposition(SVD)
      • Linear Algebra: Deep Learning Book
    • Calculus
      • Functions, Limits, Continuity and Differentiability
      • Scalar Derivative and Partial Derivatives
      • Gradient
      • Matrix Calculus
      • Maxima and Minima using Derivatives
      • Gradient Descent and its types
    • Statistics and Probability
      • Probability Rules and Axioms
      • Types of Events
      • Frequentist vs Bayesian View
      • Random Variables
      • MLE, MAP, and Naive Bayes
      • Probability Distributions
      • P-Value and hypothesis test
    • 7 Step DS Process
      • 1: Business Requirement
      • 2: Data Acquisition
      • 3: Data Processing
        • SQL Techniques
        • Cleaning Text Data
      • 4: Data Exploration
      • 5: Modeling
      • 6: Model deployment
      • 7: Communication
    • Miscellaneous
      • LaTeX commands
  • Computer Science
    • Primer
      • Big O Notation
  • Life
    • Health
      • Minimalist Workout Routine
      • Reddit FAQ on Nootropics
      • Hiking/Biking Resources
    • Philosophy
      • Aristotle's Defense of Private Property
    • Self-improvement
      • 100 Mental Models
      • Don't break the chain
      • Cal Newport's 5 Productivity tips
      • Andrew Ng's advice on deliberate practice
      • Atomic Habits
      • Turn sound effects off in Outlook
    • Food and Travel
      • 2019 Guide to Pesticides in Produce
      • Recipe
        • Spicy Sesame Noodles
      • Travel
        • Hiking
    • Art
      • Scott Adams: 80% of the rules of good writing
      • Learn Blues Guitar
    • Tools
      • Software
        • Docker
        • Visual Studio Code
        • Terminal
        • Comparing Git Workflow
      • Life Hacks
        • DIY Deck Cleaner
  • Knowledge Vault
    • Book
      • The Almanack of Naval Ravikant
    • Media
    • Course/Training
Powered by GitBook
On this page
  • Limits
  • Continuity
  • Differentiability

Was this helpful?

  1. Data Science
  2. Calculus

Functions, Limits, Continuity and Differentiability

PreviousCalculusNextScalar Derivative and Partial Derivatives

Last updated 6 years ago

Was this helpful?

An equation will be a function if, for any xxx in the domain of the equation (the domain is all the xxx’s that can be plugged into the equation), the equation will yield exactly one value of yyy when we evaluate the equation at a specific xxx.

Single variable calculus deals with functions of one variable, multivariable calculus deals with functions of multiple variables.

Singlevariablefunction:f(x)=x2+2x+1Multivariablefunction:f(x,y)=x2+2xy+y2Single\hspace{0.1cm}variable\hspace{0.1cm}function:\hspace{0.1cm}f(x) = x^2+2x+1 \newline Multi\hspace{0.1cm}variable\hspace{0.1cm}function:\hspace{0.1cm}f(x,y)=x^2 +2xy+y^2Singlevariablefunction:f(x)=x2+2x+1Multivariablefunction:f(x,y)=x2+2xy+y2

Limits

A limit is the value f(a) that a function f(x) approaches as that function’s inputs 'x' get closer and closer to some number 'a'. The idea of a limit is the basis of all calculus.

lim⁡x→af(x)=f(a)\lim_{x\to a} f(x) = f(a)x→alim​f(x)=f(a)

In the following example, the limit of a function g(x)g(x)g(x) as the input xxxapproaches 2 is a value 4.

Continuity

A function f(x) is continuous on a set if the graph of f is a connected curve without any jumps, gaps, or holes.

Continuity can be defined using the concept of limits where a continuous function will satisfy the following equation:

Differentiability

A function is differentiable at a point if it has a derivative there. Note: A differentiable function must be continuous

The function f is differentiable at x if the derivative exists:

Test for differentiablity:

Link:

lim⁡x→cf(x)=f(c)\lim_{x\to c} f(x) = f(c)x→clim​f(x)=f(c)
lim⁡h→0f(x+h)−f(x)h\lim_{h\to 0} \frac{f(x+h) - f(x)}{h} h→0lim​hf(x+h)−f(x)​

3Blue1Brown Video: Essence of Calculus (~17mins)
Khan Academy: Introduction to Limits (~13mins)
Khan Academy: Continuity Introduction (~12mins)
Differentiability Lecture PDF
Continuity test
Source: Math.uri.edu