Actually, I am dealing with a problem in barycentric coordinates
I got the equations of three lines as
I know that these three lines sharing a common point, I know if I prove their det is zero, they are concurrent.
here the problem is to prove det is zero,
my question is there any shorter way to prove that det is zero, or is there any online tool which is useful in proving this, if so please share.
and also how should I find a common point on these lines which is in the form of (x:y:z)
please share the steps to get it or any online tool for finding this.
Thanks in advance.
Here is the command in Maxima, you can use other CAS if you want:
(or use
factorinstead ofratexpand), which indeed shows the determinant is $0$.You can also use
eigenvalues(M);to see that there is indeed an eigenvalue $0$ of multiplicity $1$. To find the eigenspace, useeigenvectors(M);, which we are only interested in the last part of the output (the full output is[[[eigenvalues],[multiplicities]],[eigenvectors]]) $$ \begin{bmatrix} 1\\ {{bc^3+\left(ab-b^2\right)c^2+\left(-b^3+4ab^2+a^2b \right)c+b^4-ab^3-a^2b^2+a^3b}\over{ac^3+\left(ab-a^2 \right)c^2+\left(ab^2+4a^2b-a^3\right)c+ab^3-a^2b^2-a^ 3b+a^4}}\\ {{c^4+\left(-b-a\right)c^3+\left(-b^2+4ab-a^2 \right)c^2+\left(b^3+ab^2+a^2b+a^3\right)c}\over{ac^3+ \left(ab-a^2\right)c^2+\left(ab^2+4a^2b-a^3\right)c+ab ^3-a^2b^2-a^3b+a^4}} \end{bmatrix} $$ (OK, maxima doesn't really output like this, but you get the idea). So clearing denominator $$x=a\left(\sum_{cyc}a^2(a-b-c)+2bc(b+c)+4abc\right)$$ and cyclic permute for $y,z$:gives the output $[0,0,0]$.
Edit: correct factor of $2$, the expression is now much uglier.