Guozhen AIGlobal AI field notes and model intelligence

English translation

8. Derivative Rules and Derivatives of Basic Functions

Published:

Category: AI Calculus for Beginners

Read time: 4 min

Lesson #8Images are preserved from the source page

AI Article Decision Snapshot

Turn the lesson into workflow, model, budget, and security checks before choosing tools.

Use this quick snapshot before leaving the article. It keeps the next search tied to practical AI software, model/API, cost, privacy, and implementation questions.

Workflow fit

Identify the real job behind the article: coding, research, document review, support, analytics, content, or internal automation.

Model or tool decision

Decide whether the next step is a software shortlist, an AI tool comparison, an API platform choice, or a model benchmark.

Budget and usage signal

Estimate seats, API calls, prompt volume, retries, review time, and fallback work before assuming the workflow is cheap.

Security and privacy review

Check whether source code, customer data, private documents, prompts, logs, or embeddings will enter the AI workflow.

Concept Map: Differentiation Rules and Derivatives of Basic Functions

Differentiation rules allow us to break down complex functions into manageable parts. The most error-prone case is the composite function—both the outer and inner layers’ rates of change must be accounted for.

Verification Chart: Differentiation Rules and Derivatives of Basic Functions

I begin by identifying the functional hierarchy. When encountering a composite function, I first write the derivative of the outer function, then multiply it by the derivative of the inner function.

In the previous section, we explored the definition and geometric interpretation of derivatives, gaining insight into how derivatives quantify the instantaneous rate of change of a function. Next, we delve into differentiation rules and the derivatives of fundamental functions—laying essential groundwork for upcoming applied examples.

I. Differentiation Rules

Differentiation rules are a set of systematic techniques that enable efficient computation of derivatives. Mastering these rules significantly streamlines differentiation, especially for complicated functions. Below are some commonly used rules:

Decision Card: Choosing the Right Differentiation Rule

When learning differentiation rules, first identify which elementary components constitute the function, then decide whether to apply the sum/difference, product, quotient, or chain rule.

1. Constant Rule

If cc is a constant, its derivative is zero:

ddx(c)=0\frac{d}{dx}(c) = 0

2. Power Rule

For any real number nn:

ddx(xn)=nxn1\frac{d}{dx}(x^n) = nx^{n-1}

3. Sum Rule

If f(x)f(x) and g(x)g(x) are differentiable functions, then the derivative of their sum is:

ddx(f(x)+g(x))=f(x)+g(x)\frac{d}{dx}(f(x) + g(x)) = f'(x) + g'(x)

4. Product Rule (Leibniz Rule)

For differentiable functions f(x)f(x) and g(x)g(x), the derivative of their product is:

ddx(f(x)g(x))=f(x)g(x)+f(x)g(x)\frac{d}{dx}(f(x)g(x)) = f'(x)g(x) + f(x)g'(x)

5. Quotient Rule

For differentiable functions f(x)f(x) and g(x)g(x), where g(x)0g(x) \neq 0, the derivative of their quotient is:

ddx(f(x)g(x))=f(x)g(x)f(x)g(x)[g(x)]2\frac{d}{dx}\left(\frac{f(x)}{g(x)}\right) = \frac{f'(x)g(x) - f(x)g'(x)}{[g(x)]^2}

6. Chain Rule

For a composite function y=f(g(x))y = f(g(x)), its derivative is:

dydx=f(g(x))g(x)\frac{dy}{dx} = f'(g(x)) \cdot g'(x)

II. Derivatives of Basic Functions

Having learned the core differentiation rules, we now turn to the derivatives of key elementary functions—knowledge essential for rapid and accurate differentiation in practice.

Calculus Reading Roadmap Card

You need not absorb every detail of “Differentiation Rules and Derivatives of Basic Functions” all at once. Start with a small, hands-on problem you can verify yourself, then use the diagrams and text to fill in conceptual gaps.

1. Exponential Functions

The derivative of the natural exponential function exe^x is:

ddx(ex)=ex\frac{d}{dx}(e^x) = e^x

For a general exponential function axa^x, where a>0a > 0:

ddx(ax)=axln(a)\frac{d}{dx}(a^x) = a^x \ln(a)

2. Logarithmic Functions

The derivative of the natural logarithm is:

ddx(lnx)=1x,x>0\frac{d}{dx}(\ln x) = \frac{1}{x}, \quad x > 0

For the logarithm base aa:

ddx(logax)=1xlna,x>0\frac{d}{dx}(\log_a x) = \frac{1}{x \ln a}, \quad x > 0

3. Trigonometric Functions

Derivatives of basic trigonometric functions:

  • ddx(sinx)=cosx\displaystyle \frac{d}{dx}(\sin x) = \cos x
  • ddx(cosx)=sinx\displaystyle \frac{d}{dx}(\cos x) = -\sin x
  • ddx(tanx)=sec2x\displaystyle \frac{d}{dx}(\tan x) = \sec^2 x

4. Inverse Trigonometric Functions

  • ddx(arcsinx)=11x2,1<x<1\displaystyle \frac{d}{dx}(\arcsin x) = \frac{1}{\sqrt{1 - x^2}}, \quad -1 < x < 1
  • ddx(arccosx)=11x2,1<x<1\displaystyle \frac{d}{dx}(\arccos x) = -\frac{1}{\sqrt{1 - x^2}}, \quad -1 < x < 1
  • ddx(arctanx)=11+x2\displaystyle \frac{d}{dx}(\arctan x) = \frac{1}{1 + x^2}

III. Example Application

Let’s apply these rules and derivatives to a concrete example.

Consider the function:

f(x)=3x35x2+2x7f(x) = 3x^3 - 5x^2 + 2x - 7

We compute its derivative using the sum rule and power rule:

  1. Differentiate each term individually:

    • Derivative of 3x33x^3 is 9x29x^2
    • Derivative of 5x2-5x^2 is 10x-10x
    • Derivative of 2x2x is 22
    • Derivative of the constant 7-7 is 00
  2. Combine results:

f(x)=9x210x+2f'(x) = 9x^2 - 10x + 2

We can verify this result programmatically using Python:

import sympy as sp

x = sp.symbols('x')
f = 3*x**3 - 5*x**2 + 2*x - 7
f_prime = sp.diff(f, x)
f_prime

Running this code yields the derivative f(x)=9x210x+2f'(x) = 9x^2 - 10x + 2.

Application Recap Card: Differentiation Rules and Derivatives of Basic Functions

After reading “Differentiation Rules and Derivatives of Basic Functions”, organize your understanding into a recap table: first clarify the central thread, then test it with a small task to confirm correctness.

Application Check Card: Differentiation Rules and Derivatives of Basic Functions

Upon finishing “Differentiation Rules and Derivatives of Basic Functions”, select a simple example and walk through the full differentiation process end-to-end. Then assess which steps you can now execute independently.

IV. Summary

In this section, we covered foundational differentiation rules and the derivatives of essential elementary functions. These tools prepare us thoroughly for the next section, where we’ll explore practical applications—including tangent lines and real-world rate-of-change problems. Equipped with these rules and derivatives, we’re ready to tackle increasingly sophisticated challenges. Next, we’ll examine how derivatives manifest in concrete contexts.

Apply This Lesson

Turn this article into AI software, model, API, and security decisions.

English Article FAQ

Use this article as evidence before choosing AI tools

How should I use this AI Tutorials article?

Use it as the implementation or learning layer, then connect the idea to AI software buyer guides, tool comparisons, benchmarks, API choices, and security checks before making a production decision.

Is this English article different from the Chinese original?

The English edition is localized for global AI readers while preserving the original diagrams, screenshots, prompts, code examples, and source context from the Chinese article.

What should I read after 8. Derivative Rules and Derivatives of Basic Functions?

Continue with AI Software Buyer Guides, AI Tools Workbench, Best AI Coding Agents, AI Model Benchmarks, OpenAI vs Anthropic API, or LLM Security Tools depending on the decision you need to make.

Can this article alone choose an AI product or model?

No. Treat the article as evidence and context, then validate fit with pricing, privacy requirements, integration effort, benchmark results, workflow tests, and fallback planning.

Continue

Keep reading from here

Browse English site

Reader Messages

Reader messages

Questions, corrections, extra sources, or hands-on results can be left here. No login is required.

Max 800 characters

To reduce spam, each message is checked for length, link count, and posting frequency.

0/800

Messages

0 messages
Loading messages...