Skip to content

Rules for manipulating derivatives #121

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Changes from 22 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
424f19f
Inserted notes
mollygracehicks Apr 16, 2025
5b1aabf
issue-30
mollygracehicks Apr 16, 2025
09b5bdc
issue-30
mollygracehicks Apr 16, 2025
490ae9b
issue30
mollygracehicks Apr 16, 2025
cb2ade4
issue30
mollygracehicks Apr 16, 2025
d782732
issue30
mollygracehicks Apr 16, 2025
4441482
issue30
mollygracehicks Apr 16, 2025
2253d16
issue30
mollygracehicks Apr 16, 2025
b8a97b2
issue 30
mollygracehicks Apr 16, 2025
d15b4fd
issue30
mollygracehicks Apr 16, 2025
cd423c2
issue30
mollygracehicks Apr 16, 2025
1a23111
issue30
mollygracehicks Apr 16, 2025
3b47e6a
issue30
mollygracehicks Apr 16, 2025
153a343
issue30
mollygracehicks Apr 16, 2025
ff7d607
issue30
mollygracehicks Apr 16, 2025
baf7f88
issue30
mollygracehicks Apr 16, 2025
098d801
issue-30
mollygracehicks Apr 16, 2025
cc339dc
issue30
mollygracehicks Apr 16, 2025
8f133e9
issue30
mollygracehicks Apr 16, 2025
897b1b6
issue30
mollygracehicks Apr 16, 2025
3cbe127
issue30
mollygracehicks Apr 16, 2025
3720179
issue30
mollygracehicks Apr 16, 2025
a51fdc8
Merge branch 'main' into issue-30
mphoward Apr 22, 2025
ed7ca60
Update multivariable-calculus/manipulating-derivatives.md
mollygracehicks Apr 23, 2025
96e8f78
Update multivariable-calculus/manipulating-derivatives.md
mollygracehicks Apr 23, 2025
6ffddd3
Update manipulating-derivatives.md
mollygracehicks Apr 23, 2025
0ba999d
Update manipulating-derivatives.md
mollygracehicks Apr 23, 2025
2e56ec3
Update manipulating-derivatives.md
mollygracehicks Apr 23, 2025
3302c50
Update manipulating-derivatives.md
mollygracehicks Apr 23, 2025
a7a6927
issue30
mollygracehicks Apr 23, 2025
439797b
issue30
mollygracehicks Apr 23, 2025
ad02348
Merge branch 'main' into issue-30
mphoward Apr 24, 2025
d64d5e9
issue30
mollygracehicks Apr 26, 2025
ec17b9f
issue30
mollygracehicks Apr 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 74 additions & 1 deletion multivariable-calculus/manipulating-derivatives.md
Original file line number Diff line number Diff line change
@@ -1 +1,74 @@
# Manipulating partial derivatives
# Manipulating Partial Derivatives

We sometimes need to find derivatives we don't obtain easily from one of these potentials. For this, we use some calculus rules.

---

#### Inversion

If x(y, z) and y(x, z), then:

```{math}
\left( \frac{\partial x}{\partial y} \right)_z = \frac{1}{\left( \frac{\partial y}{\partial x} \right)_z}
```

**Example:**

```{math}
Let:
x = \frac{y^2}{z}
```

We can rearrange this to:
```{math}
y = \pm \sqrt{xz}
```

Now compute:
```{math}
\left( \frac{\partial x}{\partial y} \right)_z = \frac{2y}{z}
```

Then:
```{math}
\left( \frac{\partial y}{\partial x} \right)_z = \frac{z}{2y}
```

And confirm the inversion:
```{math}
\frac{1}{\left( \frac{\partial y}{\partial x} \right)_z} = \frac{2y}{z}
```

#### Chain Rule

```{math}
\left( \frac{\partial x}{\partial y} \right)_z = \left( \frac{\partial x}{\partial w} \right)_z \left( \frac{\partial w}{\partial y} \right)_z
```
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This equation could use some preamble to explain what the chain rule is and this new symbol $w$

**Example:**

```{math}
w = yz
```
So,
```{math}
y = \frac{w}{z}
```
Then:
```{math}
x = \frac{(w/z)^2}{z} = \frac{w^2}{z^3}
```

Now compute:
```{math}
\left( \frac{\partial x}{\partial w} \right)_z = \frac{2w}{z^3}
```

And:
```{math}
\left( \frac{\partial w}{\partial y} \right)_z = z
```

Therefore:
```{math}
\left( \frac{\partial x}{\partial y} \right)_z = \frac{2w}{z^3} \cdot z = \frac{2w}{z^2} = \frac{2yz}{z^2} = \frac{2y}{z}
```