I'm learning from a statistics tutorial which defines a likelihood function as
\begin{align} L(1,3,2,2; \theta)=27 \cdot \theta^{8} (1-\theta)^{4} \tag{1} \end{align}
and then the tutorial sets the derivative of (1) to zero to find the value of $\theta$ that maximizes the likelihood function.
I understand where this formula comes from.
\begin{align} \frac{\text d L(1,3,2,2; \theta)}{\text d\theta}= 27 \big[8\theta^{7} (1-\theta)^{4}-4\theta^{8} (1-\theta)^{3} \big] \tag{2} \end{align}
I don't understand how to determine if setting (2) to 0 produces a maximum or minimum.
Per another tutorial, we could use the second derivative of the function to determine if it is a maximum or minimum.
Here is the second derivative of the likelihood function (1)
$4\left(\theta-1\right)^2\theta^6\left(33\theta^2-44\theta+14\right) \tag{3}$
Setting (2) to zero and simplifying it gives
$2-3\theta = 0 \tag{4}$
How do I use (3) to determine if it is a maximum or minimum?
Should I set (3) to zero and simplify it the same way to get (4)?
Any other method is also welcomed.