The one-weight lasso solution is a soft-thresholded exact ratio. Lambda subtracts from the source correlation, then the numerator floors at zero.
highlighted = computed this step
The soft-threshold rule
Because sum xy is positive here, the closed form is max(sum xy minus λ, zero) divided by sum x squared. With sum xy=28 and sum x squared=14, every row stays exact.
wλ=14max(28−λ,0)
Two shrinkage values
At λ=7, the weight is 3/2. At λ=14, the weight is 1. Both are exact rational shrinkage values.
w(7)=3/2,w(14)=1
Summary
Soft-thresholding subtracts λ from the source correlation and floors at zero. The floor is exact, not approximate.