Letters to Abigail

God/Body/$Q$: 1st, 3rd, 5th, ♭♭7th, 9th

Community/Mind/$U()$: 11th, 13th

Individual/Soul/$\frac{dU()}{dQ}$: ♯9,♭9,♯11,♭13

#

I could fill Volumes with Descriptions of Temples and Palaces, Paintings, Sculptures, Tapestry, Porcelaine, etc – if I could have time. But I could not do this without neglecting my duty. The Science of Government it is my Duty to study, more than all other Sciences: the Art of Legislation and Administration and Negotiation, ought to take Place, indeed to exclude in a manner all other Arts. I must study Politicks and War that my sons may have liberty to study Painting and Poetry, Mathematicks and Philosophy. My sons ought to study Mathematicks and Philosophy, Geography, natural History, Naval Architecture, navigation, Commerce and Agriculture, in order to give their Children a right to study Painting, Poetry, Musick, Architecture, Statuary, Tapestry and Porcelaine.

#

To demonstrate diminishing marginal utility visually (for the lot who have no study, but leisure), I’ll create a plot that shows the relationship between total utility and the quantity of a good consumed, alongside a marginal utility curve. Additionally, I’ll include some calculus notation and Greek symbols to illustrate the concept mathematically. Leisure thus leads to cravings for utility - drugs come to mind, or a healthy return of the prodigal son to the arts, professional work, or even manual labor

Here’s a step-by-step plan:

  1. Define Utility Functions:
    • Total Utility (U): A typical utility function $U(Q)$ where $Q$ is the quantity of the good.
    • Marginal Utility (MU): The derivative of total utility with respect to quantity, $MU(Q) = \frac{dU(Q)}{dQ}$
  2. Illustrate Diminishing Marginal Utility:
    • Show that as $Q$ increases, $MU$ decreases.
  3. Mathematical Representation:
    • Use calculus notation to explain the relationship between total utility and marginal utility.
    • Include Greek symbols like $\Delta$ (Delta) for change, and $\epsilon$ (epsilon) for a small increment.

Let’s create the visual:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import numpy as np
import matplotlib.pyplot as plt

# Define the total utility function U(Q)
def total_utility(Q):
    return 100 * np.log(Q + 1)  # Logarithmic utility function for illustration

# Define the marginal utility function MU(Q)
def marginal_utility(Q):
    return 100 / (Q + 1)  # Derivative of the total utility function

# Generate data
Q = np.linspace(1, 100, 500)  # Quantity range from 1 to 100
U = total_utility(Q)
MU = marginal_utility(Q)

# Plotting
plt.figure(figsize=(14, 7))

# Plot Total Utility
plt.subplot(1, 2, 1)
plt.plot(Q, U, label=r'Total Utility $U(Q) = 100 \log(Q + 1)$', color='blue')
plt.title('Total Utility')
plt.xlabel('Quantity (Q)')
plt.ylabel('Total Utility (U)')
plt.legend()
plt.grid(True)

# Plot Marginal Utility
plt.subplot(1, 2, 2)
plt.plot(Q, MU, label=r'Marginal Utility $MU(Q) = \frac{dU(Q)}{dQ} = \frac{100}{Q + 1}$', color='red')
plt.title('Marginal Utility')
plt.xlabel('Quantity (Q)')
plt.ylabel('Marginal Utility (MU)')
plt.legend()
plt.grid(True)

# Adding some calculus notation and Greek symbols
plt.figtext(0.5, 0.02, r"$MU(Q) = \frac{dU(Q)}{dQ} = \lim_{\Delta Q \to 0} \frac{U(Q + \Delta Q) - U(Q)}{\Delta Q}$", ha="center", fontsize=12)

plt.tight_layout()
plt.show()

Running this code will generate a visual demonstration of diminishing marginal utility with appropriate calculus notation and Greek symbols.

Here is the generated image:

Diminishing Marginal Utility

One needs challenges, a worthy adversary, the embrace of more remote overtones of the harmonic series - Qualities

DIO. Enough of both your odes.

AESCH. Enough for me. Now would I bring the fellow to the scales. That,
that alone, shall test our poetry now, And prove whose words are
weightiest, his or mine.

DIO. Then both come hither, since I needs must weigh
The art poetic like a pound of cheese.