There is a vector $\boldsymbol{v}=[x, y, z]^T$ and a matrix $\boldsymbol{A}(x,y,z)$.
How is the derivative of a determinant of a matrix with respect to a vector calculated, i.e.:
$\frac{d|\boldsymbol{A}|}{d\boldsymbol{v}}=?$
Here are some calculations from Mathcad Prime. Here $A$ and $M$ are a matrix-function and a matrix of arbitrary numbers, and $v$ is a parameter vector. And $q$ is the function to be differentiated with respect to the vector $v$.
I differentiate the function $q$ with respect to each of the parameters $x,y,z$. I need to find a union operation that "packs" all in the function $f(trace(\cdot),\otimes,\partial_v A)$, I think, it probably includes the Kronecker product, tensor, etc. That's what I need to find if it exists.
EDIT №2:


$ \def\a{\alpha} \def\p{\partial} \def\A{A^{-1}} \def\LR#1{\left(#1\right)} \def\trace#1{\operatorname{Tr}\LR{#1}} \def\qiq{\quad\implies\quad} \def\grad#1#2{\frac{\p #1}{\p #2}} \def\dgrad#1#2{\frac{d #1}{d #2}} \def\m#1{\left[\begin{array}{r}#1\end{array}\right]} \def\c#1{\color{red}{#1}} \def\vc#1{\operatorname{vec}\LR{#1}} \def\CLR#1{\c{\LR{#1}}} \def\gradLR#1#2{\LR{\grad{#1}{#2}}} \def\dgradLR#1#2{\LR{\frac{d #1}{d #2}}} \def\fracLR#1#2{\LR{\frac{#1}{#2}}} $Jacobi's formula for the determinant can be summarized as $$\eqalign{ \a &= \det(A) \qiq \dgrad{\a}{t}= \a\trace{\A\dgradLR{A}{t}} \\ }$$ where $t$ is some scalar parameter.
Sequentially setting $t$ to the components of the $v$ vector leads to the desired result $$\large\eqalign{ \grad{\a}{v} &= \a \pmatrix{ \trace{\A \gradLR{A}{x}} \\ \trace{\A \gradLR{A}{y}} \\ \trace{\A \gradLR{A}{z}} \\ } \\\\ }$$
Update
In response to the comments, let $$\eqalign{ &a=\vc A,\quad b=\vc{A^{-T}} \\ &J=\grad{a}{v}\qquad\big\{{\rm Jacobian\:of\:}a\big\} \\ }$$ then employing Jacobi's formula in differential form yields $$\eqalign{ d\a &= \a\;A^{-T}:dA \\ &= \a\;b:da \\ &= \a\;b:J\,dv \\ &= \a\;J^Tb:dv \\ \grad{\a}{v} &= \a\;J^Tb \\ }$$ where a colon denotes the Frobenius product, i.e. $$\eqalign{ F:G &= \sum_{i=1}^m\sum_{j=1}^n F_{ij}G_{ij} \;=\; \trace{F^TG} \\ G:G &= \|G\|^2_F \\ }$$ This is also called the double-dot or double contraction product.
When applied to vectors $(n=\tt1)$ it reduces to the standard dot product.
The properties of the underlying trace function allow the terms in a Frobenius product to be rearranged in many different ways, e.g. $$\eqalign{ F:G &= G:F \\ F:G &= F^T:G^T \\ H:\LR{FG} &= \LR{HG^T}:F \\&= \LR{F^TH}:G \\ }$$ As with the Hadamard product, the matrix on each side of the multiplication symbol $(:)$ must have exactly the same dimensions.