Suppose $A$ is an $ n \times n$ matrix and suppose that $x,\, k$ are $n \times 1$ vectors. Also suppose that $k$ is a constant vector.
let $$ y : = \left( Ax \right) \otimes k $$ Note that by $\otimes$ in this context we mean the outer product of two vectors given as $v\otimes u = vu^\top$.
I would like to find $\frac{\partial y}{\partial x}$. By this symbol I mean to find the derivative of each entry of $y$ with respect to each entry of $x$.
I know that,
$$ \mathrm{d}(x \otimes y) = (\mathrm{d}x)\otimes y + x \otimes (\mathrm{d}y) $$
Therefore (at least formally) we would have \begin{align} \frac{\partial y}{\partial x} = A \otimes k \label{A} \end{align}
But then what I don't understand is (if the way I have found the derivative is correct) what is meant by $A \otimes k$?. Does it mean the Kronecker product of $A$ and $k$ in the usual sense?
Can someone please clarify?. Better yet, how does one find this derivative?
EDIT $Ax k^\top$ is an $n \times n$ matrix.
Vectorization provides a straightforward solution method. $$\eqalign{ {\rm vec}(Y) &= {\rm vec}(Axk^T) \cr y &= (k\otimes A)\,x \cr dy &= (k\otimes A)\,dx \cr \frac{\partial y}{\partial x} &= (k \otimes A) \cr }$$ In index notation this is just greg's answer: $\,\frac{\partial Y_{ij}}{\partial x_m} = A_{im}k_{j}$