SU-CS205L JAN232025
Last edited: August 8, 2025Issues with Direct Methods
- for instance, direct solvers have problems at numerical stability issues (for instance numerically stable quadratic formula); for cubics, there maybe unacceptable errors since there’s no such fix
Continuous Collision Detection
Implementing collision detection: three points, generally, are three \(v_1, v_2, v_3\) in \(\mathbb{R}^{3}\); yet, if they become linearly dependent, we know collision happened. In particular if the rank of \(\mqty(v_1, v_2, v_3)\) < 3, we have collided.
Problem! Solving this (taking the determinant of our matrix to figure out when collisions happened) will result in a cubic polynomial! This is numerically quite unstable.
SU-CS205L JAN282025
Last edited: August 8, 2025Line Search and Steepest Design
Gram-Schmidt For Matrix Orthogonality
You can use Gram-Schmidt to find matrix orthogonality. In particular, for a series of vectors \(s^{(j)}\) forming a matrix \(A\):
\begin{equation} s^{(q)} = s^{(q)}- \sum_{q’=1}^{q-1} \frac{\langle s^{(q)}, s^{(q’)} \rangle_{A}}{\langle s^{(q’)}, s^{(q’)} \rangle_{A}}s^{(q’)} \end{equation}
for Conjugate Gradient, it works out such that only one such dot products is non-zero, so we can write:
\begin{equation} s^{(q)} = r^{(q)} + \frac{r^{(q)}\cdot r^{(q)}}{r^{(q-1)}\cdot r^{(q-1)}} s^{(q-1)} \end{equation}
for residual \(r^{(q)}\), and
SU-CS205L Quiz 2/10
Last edited: August 8, 2025t’s a bad idea when
SU-CS205L Quiz 3/3
Last edited: August 8, 2025SU-CS224N APR022024
Last edited: August 8, 2025Why Language
- language, first, allows communication (which allowed us to take over the world)
- language allows humans to achieve higher level thoughts (it scaffolds detailed planning)
- language is also a flexible system which allows variatically precise communication
“The common misconception is that language use has to do with words and what they mean; instead, language use has to do with people and what they mean.”
Timeline of Development
2014 - Neural Machine Translation
Deep Google Translate allows wider communication and understanding