import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
"figure.facecolor"] = (1, 1, 1, 0) # RGBA tuple with alpha=0
plt.rcParams["axes.facecolor"] = (1, 1, 1, 0) # RGBA tuple with alpha=0 plt.rcParams[
Partial Derivatives
Ordinary derivatives in one-variable calculus
Your heating bill depends on the average temperature outside. If all other factors remain constant, then the heating bill will increase when temperatures drop. Let’s denote average temperature by
We can then interpret the ordinary derivative as indicating how much the heating bill will change as you change the temperature:
If we plot
In this example we have a curve:
where
The derivative of this curve is:
The derivative gives us the slope of the curve at any point. Since we would like to plot the tangent of the curve were
To find the y-intercept of the tangent line, we first find the value of
We can find then the y-intercept by using the formula:
Therefore:
def f(x):
return -0.05 * x**2 - 2 * x + 50
def df(x):
return -0.1 * x - 2
def tangent_line(x, x0, y0):
= df(x0)
slope return slope * (x - x0) + y0
= 1
x0 = f(x0)
y0
= np.linspace(-5, 20, 100)
x
= f(x)
y
= tangent_line(x, x0, y0)
tangent_y
= plt.figure()
fig = fig.add_subplot(1, 1, 1)
ax
="f(x)")
ax.plot(x, y, label=f"Tangent at ({x0}, {y0})", linestyle="--")
ax.plot(x, tangent_y, label
0)
ax.set_xmargin(0)
ax.set_ymargin(
"left"].set_position("zero")
ax.spines["bottom"].set_position("zero")
ax.spines[
"right"].set_color("none")
ax.spines["top"].set_color("none")
ax.spines[
set(xticks=np.arange(-5, 21, 1))
ax.set(yticks=np.arange(-5, 61, 5))
ax.
ax.legend()
plt.tight_layout() plt.show()
Partial derivatives are analogous to ordinary derivatives
Clearly, writing the heating bill as a function of temperature is a gross oversimplification. The heating bill will depend on other factors. For instance the amount of insulation in your house, which we’ll denote by
Suppose you aren’t changing the amount of insulation in your house, so that we view
If
Now, imagine you are considering the possibility of lowering your heating bill by installing additional insulation. To help you decide if it will be worth your money, you may want to know how much adding insulation will decrease the heating bill, assuming the temperature remains constant. In other words, you want to know the partial derivative of
If
The partial derivative
In the graph of
# TODO Add partial derivative plots to the surface plot
# Define a multivariable function
def f(x, y):
return -0.05 * x**2 - 0.05 * y**2 - 2 * x - 2 * y + 50
# Define the partial derivatives with respect to x and y
def df_dx(x, y):
return 2 * x
def df_dy(x, y):
return 2 * y
def tangent_line_x(x, x0, y0):
= df_dx(x0)
slope return slope * (x - x0) + y0
def tangent_line_y(x, x0, y0):
= df_dy(x0)
slope return slope * (x - x0) + y0
# Generate x and y values for plotting
= np.linspace(-5, 20, 100)
t = np.linspace(0, 10, 10)
i
# Create a meshgrid to compute the function values and partial derivatives at each point
= np.meshgrid(t, i)
X, Y = f(X, Y)
Z
# Create a 3D plot
= plt.figure()
fig = fig.add_subplot(111, projection="3d")
ax
# Plot the function's surface
="viridis", alpha=0.5)
ax.plot_surface(X, Y, Z, cmap
0)
ax.set_xmargin(0)
ax.set_ymargin(
# Customize the plot
"t")
ax.set_xlabel("i")
ax.set_ylabel("h")
ax.set_zlabel("Curve on a 3D Plane with Partial Derivatives as Tangents")
ax.set_title(
# Show the plot
plt.show()
Examples of calculating partial derivatives
Once you understand the concept of a partial derivative as the rate that something is changing, calculating partial derivatives usually isn’t difficult. (Unfortunately, there are special cases where calculating the partial derivatives is hard.) As these examples show, calculating a partial derivatives is usually just like calculating an ordinary derivative of one-variable calculus. You just have to remember with which variable you are taking the derivative.
Example 1
Let
Solution:
We simply view
Example 2
Also for
Solution:
Because this time we are finding the derivative with respect to
Example 3
Also for
Solution:
Example 4
For
calculate
Solution:
Although this initially looks hard, it’s really any easy problem. The ugly term does not depend on
Substituting in the values
Example 5
Given
calculate
Solution:
In calculating partial derivatives, we can use all the rules for ordinary derivatives. We can calculate
TODO: finish this example