Foundations and Exercises
Global Center for Science and Engineering, Waseda University
git clone https://github.com/waseda-num-analysis-2026/materials
cd materials
git pull
💡 Not sure how? Just ask your AI — it can run these commands for you.
040/:
4th-handout.qmd |
📘 main material — full content of this lecture |
4th-handout.html |
rendered handout — viewable in browser |
4th.qmd |
slides (this file) — exercises & instructions only |
4th.html |
rendered slides |
#question.
Repository: same as Ex 4.1 | Submit: 4th-handout.qmd (your edited copy) | Deadline: May 14 (Thu), 23:59
While studying 4th-handout.qmd, insert at least 3 Q&A blocks of your own — questions you actually had while reading, answered with the help of GitHub Copilot (or another AI) following the protocol in AI_TUTOR.md.
How to submit
materials/040/4th-handout.qmd into the root of your Ex 4 repositoryAI_TUTOR.md⌘L / Ctrl+L, then ask the AI to add a Q&A blockgit push💡 The Q&A block format is explained at the top of 4th-handout.qmd.
Repository: Ex 4 — GitHub Classroom link | Edit: ex4-1.qmd | Deadline: May 14 (Thu), 23:59
Prove that \(\ell^1\), \(\ell^2\), and \(\ell^\infty\) are vector norms on \(\mathbb{R}^n\).
For each norm, verify:
⚠️ AI is not recommended for the proof itself. You may use AI to convert handwritten equations to LaTeX, but the mathematical reasoning should be yours.
Repository: same as Ex 4.1 | Edit: ex4-2.qmd | Deadline: May 14 (Thu), 23:59
Confirm the following inequalities numerically using random vectors:
\[ \|x\|_2 \leq \|x\|_1 \leq \sqrt{n}\,\|x\|_2, \qquad \|x\|_\infty \leq \|x\|_1 \leq n\,\|x\|_\infty, \]
\[ \|x\|_\infty \leq \|x\|_2 \leq \sqrt{n}\,\|x\|_\infty. \]
Minimum requirement
n = 2, 5, 10, 50Repository: same as Ex 4.1 | Edit: ex4-3.qmd | Deadline: May 14 (Thu), 23:59
Estimate the induced matrix norm \(\|A\|_p\) from below by sampling random vectors.
AI use is allowed, but you must verify and explain the results yourself.
N = 10, 100, 1000, 10000; report the sampled maximum, true value, and relative gap.For \(p = 2\), do the following extra analysis for one \(2 \times 2\) matrix:
\[ \|A\|_2 = \sqrt{\lambda_{\max}(A^T A)}. \]
numpy.linalg.norm(A, ord=2).This bonus is beyond today’s main lecture. It is for students who want to connect matrix norms with eigenvalues and maximum stretching directions.
Accept the Ex 4 GitHub Classroom link: https://classroom.github.com/a/IIB7mFi7
ex4-1.qmd, ex4-2.qmd, ex4-3.qmd + your copy of 4th-handout.qmd for Ex 4.0git push — the last commit before the deadline is gradedKeep working on Ex 3.0–3.3 if not finished yet