2

Given $A$, $B$, $C$ which satisfy $A+B+C=2\pi$, is there an ingenious method to prove that $$ \det\begin{pmatrix} 1 & 1 & 1 \\ \tan A & \tan B & \tan C \\ \tan 2A & \tan 2B & \tan 2C \end{pmatrix}=0 $$? By column transformation we have $$ \det\begin{pmatrix} 1 & 1 & 1 \\ \tan A & \tan B & \tan C \\ \tan 2A & \tan 2B & \tan 2C \end{pmatrix}=\det\begin{pmatrix} \tan B-\tan A & \tan C-\tan B \\ \tan 2B-\tan 2A & \tan 2C-\tan 2B \end{pmatrix}. $$ Substitute $C=2\pi—A-B$ and the rest computation seems very complicated! Any hint?

Stephen
  • 786
  • Well, you have that $\tan(A+B)=-\tan(C)$. You will need to use addition formulae – FShrike Mar 05 '22 at 10:37
  • You will find useful identities there: https://en.wikipedia.org/wiki/List_of_trigonometric_identities – KBS Mar 05 '22 at 10:52
  • In your last matrix on the right side it must be $;-2\tan A;$ first row, and second row on same right side $;-2\tan2A;$ ...i.e., $;A;$ instead of $;B;$ in that second column – DonAntonio Mar 05 '22 at 10:56

1 Answers1

1

Well here is my working of the problem. I must have made a sign mistake somewhere, however if I have not, then the equation only holds under special cases. Feedback welcome.

Let $a=\tan A, b=\tan B,c=\tan C$ then $$\tan 2A=\frac{2a}{1-a^2}$$ etc.

So the matrix is $$X=\begin{vmatrix} 1&1&1\\ a&b&c\\ \frac{2a}{1-a^2}&\frac{2b}{1-b^2}&\frac{2c}{1-c^2}\\ \end{vmatrix}$$

Multiplying the columns the question is transformed into

$$\frac{1}{2}(1-a^2)(1-b^2)(1-c^2)X=\begin{vmatrix} 1-a^2&1-b^2&1-c^2\\ a-a^3&b-b^3&c-c^3\\ a&b&c\\ \end{vmatrix}$$

Which is the same as

$$\frac{1}{2}(1-a^2)(1-b^2)(1-c^2)X=\begin{vmatrix} a&b&c\\ a^2-1&b^2-1&c^2-1\\ a^3&b^3&c^3\\ \end{vmatrix}$$

Now we calculate, $$\begin{vmatrix} a&b&c\\ a^2-1&b^2-1&c^2-1\\ a^3&b^3&c^3\\ \end{vmatrix}=\begin{vmatrix} a&b&c\\ a^2&b^2&c^2\\ a^3&b^3&c^3\\ \end{vmatrix}-\begin{vmatrix} a&b&c\\ 1&1&1\\ a^3&b^3&c^3\\ \end{vmatrix}$$ $$=abc\begin{vmatrix} 1&1&1\\ a&b&c\\ a^2&b^2&c^2\\ \end{vmatrix}+\begin{vmatrix} 1&1&1\\ a&b&c\\ a^3&b^3&c^3\\ \end{vmatrix}$$ Now by assumption, $a+b+c=abc$

so we have $$\frac{1}{2}(1-a^2)(1-b^2)(1-c^2)X$$ $$=(a+b+c)\begin{vmatrix} 1&1&1\\ a&b&c\\ a^2&b^2&c^2\\ \end{vmatrix}+\begin{vmatrix} 1&1&1\\ a&b&c\\ a^3&b^3&c^3\\ \end{vmatrix}$$

Note however that the difference of these two matrices is zero,

$$(a+b+c)\begin{vmatrix} 1&1&1\\ a&b&c\\ a^2&b^2&c^2\\ \end{vmatrix}-\begin{vmatrix} 1&1&1\\ a&b&c\\ a^3&b^3&c^3\\ \end{vmatrix}$$ $$=\begin{vmatrix} 1&1&1\\ a&b&c\\ a^2(b+c)&b^2(a+c)&c^2(a+b)\\ \end{vmatrix}=0$$ because

$$bc^2(a+b)-cb^2(a+c)=abc(c-b)$$ $$ca^2(b+c)-ac^2(a+b)=abc(a-c)$$ $$ab^2(a+c)-ba^2(b+c)=abc(b-a)$$

Therefore,

$$\frac{1}{2}(1-a^2)(1-b^2)(1-c^2)X= 2(a+b+c)\begin{vmatrix} 1&1&1\\ a&b&c\\ a^2&b^2&c^2\\\end{vmatrix}$$

So

$$X=\frac{4abc(a-b)(b-c)(c-a)}{(1-a^2)(1-b^2)(1-c^2)}$$ $$=\frac{1}{2}\tan 2A \tan 2B\tan 2C(\tan A-\tan B)(\tan B-\tan C)(\tan C-\tan A)$$ And this $X=0$ happens only in special cases.

  • Thanks for your answer and I can’t find any mistakes in your solution. Maybe the exercise itself is wrong. – Stephen Mar 06 '22 at 02:32