0
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?

Shen Zhou
  • 63
  • 4

1 Answers1

3

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)
m_goldberg
  • 107,779
  • 16
  • 103
  • 257