Description
// Two points on space
p = [2, 3]
q = [-1, -1]
// Points between the difference of the points above
w = q - p = [-3, -4]
// Which gives us the parametric form
f(x) = (1 - t)[2, 3] + t[-3, -4]
// Sample parameter
// Which seems to overflow w = [-3, -4]
f(2) = -1[2, 3] + 2[-3, -4] = [-8, -11]
// The coefficients sum up to one
-1 + 2 = 1
As far as I can understand convex combination suffices if the sum of the coefficients are equal to 1 (l1 + l2 + ... + li = 1)
My Question
If it's a convex combination, doesn't it have to be between w = [-3, -4]?