You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Can you share where you see //a**2 in VMLS? I agree that in the book on 47 and 48, the authors describe squaring the whole RHS. I believe it was written as you describe in the notebooks though, because
in the Julia companion, found here, on 24 and 25, the authors describe floor(...//a) as an improvement in notation.
If this number is, say, 12.15, we can conclude that no more than 12 entries have absolute value at least a, since the number of entries is an integer. So the Chebyshev bound can be improved to be floor(‖x‖2/a), where floor(u) is the integer part of a positive number.
Curious what you think. And please let me know if you find anything else that might be incorrect!
According to VMLS:
cheb_bound = lambda x,a: npl.norm(x)**2//a**2
But in python companions,the denominator is not squared:
cheb_bound = lambda x,a: npl.norm(x)**2//a
Is this a mistake?
The text was updated successfully, but these errors were encountered: