Artificial intelligent assistant

Determine if a triangle is right angled with only coordinates What is the easiest way to determine that, given 3 coords, they DON'T form a right angled triangle? EG, (0, 0, 0), (0, 1, 0), (1, 0, 0) - forms a right angled triangle (0, 0, 0), (0, 1, 0), (1, 0.5, 0) - does not form a right angled triangle

3 points always form a triangle.

For a triangle with side lengths $a$, $b$, $c$, the Pythagorean theorem states that if _and only if_ $a^2 + b^2 = c^2$ then the triangle is a right triangle.

* * *

If $a$ is the distance between points $p$ and $q$, with $p = \begin{bmatrix} p_1 \\\ p_2 \\\ p_3 \end{bmatrix}$, and $q = \begin{bmatrix} q_1 \\\ q_2 \\\ q_3 \end{bmatrix}$,

then $$a = |P - Q| = \sqrt{(p_1 - q_1)^2 + (p_2 - q_2)^2 + (p_3 - q_3)^2}$$

so

$$a^2 = (p_1 - q_1)^2 + (p_2 - q_2)^2 + (p_3 - q_3)^2$$

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy e73f457ea3b95f8ce161ec34151867c8