$\log_a b = \frac{\log_c b}{\log_c a} $と $\log a^b = b\log a$を使うと $$ \begin{align} &\log_3 4 = 2\log_3 2 \\ &\log_9 4 = \frac{\log_3 2^2}{\log_3 3^2} = \log_3 2 \\ &\log_2 27 = \frac{\log_3 3^3}{\log_3 2} = \frac{3}{\log_3 2} \\ &\log_4 9 = \frac{\log_3 3^2}{\log_3 2^2}= \frac{1}{\log_3 2} \\ \end{align} $$ $$ a = \log_3 2 とすると(2a + a)(\frac{3}{a} + \frac{1}{a}) = 3a\frac{4}{a} = 12 $$
$ \sin^2 \theta +\cos^2 \theta = 1 $ から $ \sin x = \pm \sqrt{1-(\frac{3}{5})^2}= \pm \frac{4}{5}$, $x$の範囲から$\sin x > 0$なので$\sin x = \frac{4}{5}$
同様に$ \cos y = \pm \sqrt{1-(\frac{7}{25})^2}= \pm \frac{24}{25}$, $y$の範囲から$\cos y > 0$なので$\cos y = \frac{24}{25}$
$$ \begin{align} \tan (x+y) &= \frac{\sin(x+y)}{\cos(x+y)} =\frac{\sin x\cos y + \cos x \sin y}{\cos x\cos y- \sin x \sin y}\\ \sin x\cos y + \cos x \sin y &= 4/5\cdot24/25 + 3/5\cdot7/25 = (96 + 21) / (5\cdot125) = 117 / (5\cdot125)\\ \cos x\cos y- \sin x \sin y &= 3/5\cdot24/25 - 4/5\cdot7/25 = (72 - 28) / (5\cdot125) = 44 / (5\cdot125)\\ \tan (x+y) &= \frac{117}{44} \end{align} $$9人の並び順は$9!$。2人、3人、4人の並び順はそれぞれ$2!, 3!, 4!$
よって $ \frac{9\cdot8\cdot7\cdot6\cdot5\cdot4\cdot3\cdot2\cdot1\cdot0}{(2\cdot1)(3\cdot2\cdot1)(4\cdot3\cdot2\cdot1)} = 9\cdot4\cdot7\cdot5 = 1260$
5-1と同様に $ 9! / 2! / 2! / 5! = 9\cdot2\cdot7\cdot6 = 756$
2人のグループに区別がないので $ 756 / 2! = 378$
5-2と同様に $ 9! / 3! / 3! / 3! / 3! = 9! / (9\cdot4) / 3! / 6 = 8\cdot7\cdot5 = 280$
$a=3$のとき正四面体の1辺は $\sqrt{3^2-8\cdot3+33} = 3\sqrt{2}$
$a= -5$のとき $\sqrt{(-5)^2-8\cdot(-5)+33} = 7\sqrt{2}$
よって $\frac{3}{7}$
$x = 2$のとき$-(x - 2)^2+4$は最大値4をとり、$g'(x)$ は$\frac{4}{4} -k = 1 - k$で最小値をとる
$g(x)=0$が異なる3つの実数解を持つためには$g'(x)$が正負の値をとる必要がある($g'(x)$が常に正もしくは負の場合、$g(x)$は単調増加もしくは減少関数となり、3つの実数解をもたない)。
最小値$1-k$ が 0より小さければ$g'(x)$は正負両方の値をとる。よって$k > 1$。
k <- c(0, 1, 2, 4)
for(i in 1:length(k)){
curve(log((x)/(4-x))-k[i]*(x-2), from = 0, to = 4, col = rainbow(length(k))[i], add =i != 1)
}
legend('top', legend = k, col = rainbow(length(k)), lwd = 2)