NIntegrate::cartdim
Examples
Basic Examples (1)
A message is generated because the number of rules for the Cartesian product rule is larger than the dimension of the integral:
NIntegrate[(1/Sqrt[x + y + z]), {x, 0, 1}, {y, 0, 1}, {z, 0, 1}, Method -> {"GaussKronrodRule", "ClenshawCurtisRule", "ClenshawCurtisRule", "GaussKronrodRule"}]These are correct specifications:
NIntegrate[(1/Sqrt[x + y + z]), {x, 0, 1}, {y, 0, 1}, {z, 0, 1}, Method -> "LobattoKronrodRule"]NIntegrate[(1/Sqrt[x + y + z]), {x, 0, 1}, {y, 0, 1}, {z, 0, 1}, Method -> {"GaussKronrodRule", "ClenshawCurtisRule"}]