polish: cross-reference verification and final formatting

- Fix overfull hbox in ch05 method comparison table (118pt -> resolved)
- Fix overfull hbox in ch09 verification equation (147pt -> split with align)
- Fix overfull hbox in ch08 phase plane table (16pt -> p-column width)
- Fix overfull hbox in appA VOP formula (70pt -> inline textstyle)
- Fix overfull hbox in appB Fourier series table (70pt -> resizebox)
- Fix overfull hbox in appB common integrals table (tabular width)
- Fix overfull hbox in appB Laplace properties table (tabular width)
- Fix float too large in ch06 TikZ resonance figure (scale + clip)
- Fix text overfull in ch03 terminal velocity paragraph
- Fix ch09 summary table width with @{} column specifiers
This commit is contained in:
Worker Agent
2026-06-04 19:30:31 -05:00
parent 18811c2d09
commit c46724301a
7 changed files with 30 additions and 25 deletions

View File

@@ -317,9 +317,11 @@ The repeated-root case is analogous to the repeated-root case for constant-coeff
\textit{Verification.} Compute $y' = 3c_1 x^2 - c_2 x^{-2}$ and $y'' = 6c_1 x + 2c_2 x^{-3}$. Substitute into the ODE:
\[
x^2(6c_1 x + 2c_2 x^{-3}) - x(3c_1 x^2 - c_2 x^{-2}) - 3(c_1 x^3 + c_2 x^{-1})
= 6c_1 x^3 + 2c_2 x^{-1} - 3c_1 x^3 + c_2 x^{-1} - 3c_1 x^3 - 3c_2 x^{-1}
= (6 - 3 - 3)c_1 x^3 + (2 + 1 - 3)c_2 x^{-1} = 0. \quad \checkmark
\begin{split}
& x^2(6c_1 x + 2c_2 x^{-3}) - x(3c_1 x^2 - c_2 x^{-2}) - 3(c_1 x^3 + c_2 x^{-1}) \\
& \quad = 6c_1 x^3 + 2c_2 x^{-1} - 3c_1 x^3 + c_2 x^{-1} - 3c_1 x^3 - 3c_2 x^{-1} \\
& \quad = (6 - 3 - 3)c_1 x^3 + (2 + 1 - 3)c_2 x^{-1} = 0. \quad \checkmark
\end{split}
\]
\end{workedexample}
@@ -578,16 +580,16 @@ Cases~2 and~3 involve the logarithmic term $\ln(x)$, analogous to the repeated-r
\centering
\caption{Series solution methods: when to use and solution forms}
\label{tab:ch09_summary}
\begin{tabular}{l l p{4.5cm}}
\begin{tabular}{@{}l l p{4.2cm}@{}}
\toprule
\textbf{Method} & \textbf{When to use} & \textbf{Solution form} \\
\midrule
Power series & $p(x)$ and $q(x)$ analytic at $x_0$ &
$y(x) = \sum_{n=0}^{\infty} a_n (x-x_0)^n$ \\[12pt]
Euler--Cauchy & $x^2 y'' + \alpha x y' + \beta y = 0$ &
$y = c_1 x^{r_1} + c_2 x^{r_2}$ (and variants, see \cref{sec:ch09_euler_cauchy}) \\[12pt]
$y = c_1 x^{r_1} + c_2 x^{r_2}$ (see \cref{sec:ch09_euler_cauchy}) \\[12pt]
Frobenius & $x_0$ is a regular singular point; $xp(x)$ and $x^2q(x)$ analytic at $x_0$ &
$y(x) = x^r \sum_{n=0}^{\infty} a_n x^n$ (with $r$ from the indicial equation) \\
$y(x) = x^r \sum_{n=0}^{\infty} a_n x^n$ \\
\bottomrule
\end{tabular}
\end{table}