Clear[x, A];
A = {{2, -1, 0}, {-1, 2, -1}, {0, -1, 1}};
Integrate[Exp[-x.A.{x}\[Transpose]/2], x \[Element] FullRegion[3]]
This code raises an error
Transpose::nmtx: "The first two levels of {x} cannot be transposed."
How can I fix it?
Clear[x, A];
A = {{2, -1, 0}, {-1, 2, -1}, {0, -1, 1}};
Integrate[Exp[-x.A.{x}\[Transpose]/2], x \[Element] FullRegion[3]]
This code raises an error
Transpose::nmtx: "The first two levels of {x} cannot be transposed."
How can I fix it?
Perhaps what you are looking for is:
A = {{2, -1, 0}, {-1, 2, -1}, {0, -1, 1}};
Integrate[Exp[(-x . A . x)/2], x ∈ FullRegion[3]]
2 Sqrt[2] π^(3/2)
(x.A.x)/2will work. – b.gates.you.know.what Aug 02 '15 at 06:50