The one-weight ridge solve can be seen as a denominator change: least squares uses sum x squared, and ridge uses sum x squared plus λ.
highlighted = computed this step
Start with the least-squares denominator
The same two displayed points give sum xy=8 and sum x squared=5. In this one-weight through-origin toy, least squares uses that denominator.
∑xy=8,∑x2=5
Add λ to that denominator
Choose λ=1 before the solve. Ridge changes the denominator from 5 to 5 + 1 = 6.
∑x2+λ=5+1=6
Read off the exact weight
The numerator stays sum xy=8. The ridge weight is 8 / 6 = 4/3.
w=68=4/3
One-weight bridge only
This is the one-weight version of adding λ to the normal-equation denominator. It is exact arithmetic on the shown rows, not a broader optimization or future-data claim.