level 3
笛酱(๑❛ᴗ❛๑)
楼主
理论上来说,第一类曲面积分对1积分的结果应该是曲面的面积
然而今天计算x^2+y^2==Cos[z]^2的函数时,其积分结果总为0
同时尝试了一下x^2+y^2==z^2,积分结果是正常的
然后又尝试了一下x^2+y^2==(Arcsin[Sin[x]])^2,积分结果仍然是0
即使Region输出的结果貌似是完全相同的
Clear["Global`*"]
surfacea =
ImplicitRegion[
x^2 + y^2 == (Cos[z])^2 && 0 < z < \[Pi]/2, {x, y, z}];
surfaceb =
ImplicitRegion[
x^2 + y^2 == (ArcSin[Sin[z]])^2 && 0 < z < \[Pi]/2, {x, y, z}];
surfacec =
ImplicitRegion[x^2 + y^2 == (z)^2 && 0 < z < \[Pi]/2, {x, y, z}];
surfaced =
ImplicitRegion[
x^2 + y^2 == (\[Pi]/2 - z)^2 && 0 < z < \[Pi]/2, {x, y, z}];
{Region[surfacea], Region[surfaceb], Region[surfacec],
Region[surfaced]}
{SurfaceIntegrate[1, {x, y, z} \[Element] surfacea],
SurfaceIntegrate[1, {x, y, z} \[Element] surfaceb],
SurfaceIntegrate[1, {x, y, z} \[Element] surfacec],
SurfaceIntegrate[1, {x, y, z} \[Element] surfaced]}

2024年11月27日 11点11分
1
然而今天计算x^2+y^2==Cos[z]^2的函数时,其积分结果总为0
同时尝试了一下x^2+y^2==z^2,积分结果是正常的
然后又尝试了一下x^2+y^2==(Arcsin[Sin[x]])^2,积分结果仍然是0
即使Region输出的结果貌似是完全相同的
Clear["Global`*"]
surfacea =
ImplicitRegion[
x^2 + y^2 == (Cos[z])^2 && 0 < z < \[Pi]/2, {x, y, z}];
surfaceb =
ImplicitRegion[
x^2 + y^2 == (ArcSin[Sin[z]])^2 && 0 < z < \[Pi]/2, {x, y, z}];
surfacec =
ImplicitRegion[x^2 + y^2 == (z)^2 && 0 < z < \[Pi]/2, {x, y, z}];
surfaced =
ImplicitRegion[
x^2 + y^2 == (\[Pi]/2 - z)^2 && 0 < z < \[Pi]/2, {x, y, z}];
{Region[surfacea], Region[surfaceb], Region[surfacec],
Region[surfaced]}
{SurfaceIntegrate[1, {x, y, z} \[Element] surfacea],
SurfaceIntegrate[1, {x, y, z} \[Element] surfaceb],
SurfaceIntegrate[1, {x, y, z} \[Element] surfacec],
SurfaceIntegrate[1, {x, y, z} \[Element] surfaced]}
