Let:
- $x$ be a vector of dimension $n \times 1$.
- A be a matrix of dimension $n \times m$.
I want to find the derivative of $x^T A$ w.r.t. $x$.
By both the numerator and denominator conventions, the derivative of $x^T$ w.r.t. $x$ seems to be the $n \times n$ identity matrix.
By the product rule, $d(x^T \cdot A) = d(x^T) \cdot A + x^T \cdot d(A) $.
$d(A)$ is $0$, and since $d(x^T) = I_n$, the expression should reduce to just $A$.
But Wikipedia claims it's actually $A^T$.
What did I miss/do wrong?