After the coefficient reaches zero, larger lambda values keep the same one-weight solution at the exact floor instead of pushing it negative.
highlighted = computed this step
Choose lambda first
Use the same source sums: sum xy=28 and sum x squared=14. Now compare three chosen lambda values: 21, 28, and 35. Lambda is chosen before the solve.
λ∈{21,28,35};∑xy=28
At the threshold
At λ=28, the numerator is max(28 minus 28, 0)=0. The weight is exactly 0.
max(28−28,0)=0⇒w=0
Beyond the threshold
At λ=35, max(28 minus 35, 0) is still 0. Once λ reaches the source correlation 28, larger λ values do not make this one-weight coefficient negative; the floor holds it at exact zero.