1

I have the points $a = (1,2,3),b = (1,1,1), c = (3,1,2).$
I know this is the region S such that
$S = a + \lambda (b - a) + \mu (c-a)$ for some $\lambda,\mu \in \mathbb{R}$.
How would I find the restrictions on $\lambda, \mu$?

  • 3
    Hint: Alternately, you can write the triangle as the set of points of the form: $$\lambda_1a+\lambda_2b+\lambda_3c$$ where $\sum\lambda_i=1$ and $\lambda_i\geq 0$. Can you use this to get the restrictions of $\lambda$ and $\mu$ in your question? – Michael Burr May 08 '17 at 12:57
  • Hmm, I'm not sure intuitively (or formulaically) why you can write the triangle in that form, so I'm not sure if I'm able to answer your question
    But I believe $\lambda$ can range from $0$ to $1$ and $\mu$ from $0$ to $1- \lambda$. But that's because you told me the sum is equal to $1$.
    – Twenty-six colours May 08 '17 at 13:00
  • The triangle represents a convex hull. – Zubzub May 08 '17 at 13:19

2 Answers2

1

We rewrite an element of $S$ as $$ a+\lambda(b-a)+\mu(c-a)=(1-\lambda-\mu)a+\lambda b+\mu c. $$ Since $S$ is the triangle generated by $a,b,c$, we have $\lambda,\mu, \lambda+\mu\in [0,1]$. Indeed, the triangle generated by $a,b,c$ is given by \begin{eqnarray*} S&=&\{\alpha a+\beta b+\gamma c:\alpha+\beta+\gamma=1,\alpha,\beta,\gamma\in[0,1]\}\\ &=&\{(1-\beta-\gamma) a+\beta b+\gamma c:1-\beta-\gamma,\beta,\gamma\in[0,1]\}\\ &=&\{(1-\beta-\gamma) a+\beta b+\gamma c:\beta+\gamma,\beta,\gamma\in[0,1]\}. \end{eqnarray*}

Blind
  • 1,116
1

You can start with a segment.

If you have two points $A$ and $B$, take the vector $\vec {AB}$ and then any vector $$\vec{AP}=\alpha \vec{AB}$$

with $0\le \alpha\le 1$ have a starting point at $A$ (obviously) and a ending point between $A$ and $B$ (because $0\le \alpha\le 1$). So,

$$P-A=\alpha(B-A)\to P=(1-\alpha)A+\alpha B$$

Now let's see what happen with a triangle. See the picture: enter image description here

Taking to account what we just said, we have that

$$D=(1-\alpha)B+\alpha C$$

and any point $P$ in $AD$ is given by:

$$P=(1-\beta)A+\beta D$$

so,

$$P=(1-\beta)A+\beta [(1-\alpha)B+\alpha C]$$

$$P=(1-\beta)A+[\beta (1-\alpha)]B+\beta\alpha C$$

we then can call

$\lambda_1=1-\beta$

$\lambda_2=\beta (1-\alpha)$

$\lambda_3=\beta \alpha$

and see that $\lambda_1,\lambda_2,\lambda_3\in [0,1]$ and $\lambda_1+\lambda_2+\lambda_3=1$

$$P=\lambda_1A+\lambda_2 B+\lambda_3 C$$

Speaking of your case

$$S = a + \lambda (b - a) + \mu (c-a)=(1-\lambda-\mu)a+\lambda b+\mu c$$

Can you find out the conditions for $\lambda$ and $\mu$?

Arnaldo
  • 21,342
  • Very informative. I have a better visual understanding of the "line segment" from two points in 3D now as well. I believe it will be either
    $0 \leq \lambda \leq 1 - \mu$ and $0 \leq \mu \leq 1$, by using the inequalities and that sum condition?
    – Twenty-six colours May 08 '17 at 13:53
  • @PaulWoch: that is right. – Arnaldo May 08 '17 at 14:07