For this formula: $F(W, H) = \frac{1}{2}\lVert V-WH \rVert^2$
I calculated the partial derivative using matrix calculus equations in the image:
$\bigtriangledown_HF(W,H) = -(V-WH)W^T=(WH-V)W^T $
$\bigtriangledown_WF(W,H) = -(V-WH)H = (WH-V)H$
But the book give the below result:
$\bigtriangledown_HF(W,H) = W^T(WH-V)$
$\bigtriangledown_WF(W,H) = (WH-V)H^T$
could you explain:
why my answer is different from result of the book, and how to do it correctly.

Just write it out:
$$ F(W,H) = \frac{1}{2} ||V-WH||^2 = \frac{1}{2} (V-WH)^T(V-WH) = $$ $$= \frac{1}{2} \left(V^TV -V^TWH -H^TW^TV + H^T W^T WH\right) $$
Now hit it with the derivative: $$ F_H = \frac{1}{2} \left(0 -W^TV - W^TV + \underbrace{( W^T WH + W^T W H)}_{product rule} \right ) = W^T( WH - V)$$
2nd One:
$$F_W = \frac{1}{2} \left(0 -V \partial_W( HW) - V \partial_W(W^TH^T) + \underbrace{( WH \partial_W ( H^TW^T) + WH \partial_W( HW)}_{product rule} \right ) = ( WH - V)H^T$$