Problem Statement
Gauss's Divergence Theorem and Multiple Integration in a Non-Uniform Electric Field
Problem Statement
A non-uniform electric field E exists in vacuum and is expressed in Cartesian coordinates (x,y,z) as:
E=(kxy2)i^+(kx2y)j^+(γz3)k^
where i^,j^,k^ are unit vectors along each axis, and k and γ are constants.
Let the region V be the cylinder x2+y2≤R2, 0≤z≤H.
Find the total charge Q contained in region V.
Constraints
- Constant: k=2 V/m4
- Constant: γ=1 V/m4
- Cylinder radius: R=3 m
- Cylinder height: H=4 m
- Permittivity of vacuum: ε0=36π×1091 F/m
Input Format
Find the total charge Q in nC (nanocoulombs, 1 nC=10−9 C) and give the answer as a positive integer.
From Gauss's law in differential form:
∇⋅E=ε0ρ
Computing the divergence of the given electric field:
∇⋅E=∂x∂(kxy2)+∂y∂(kx2y)+∂z∂(γz3)
∇⋅E=ky2+kx2+3γz2=k(x2+y2)+3γz2
The total charge in region V:
Q=∭VρdV=ε0∭V(∇⋅E)dV
Using cylindrical coordinates (r,θ,z) with x2+y2=r2 and dV=rdrdθdz:
Q=ε0∫02πdθ∫0Rdr∫0Hdz((kr2+3γz2)r)
Since the integrand is independent of θ, the θ integral gives 2π:
Q=2πε0∫0R(∫0H(kr3+3γrz2)dz)dr
Integrating over z:
∫0H(kr3+3γrz2)dz=kHr3+γH3r
Integrating over r from 0 to R:
Q=2πε0(41kHR4+21γH3R2)
Substituting k=2, γ=1, R=3, H=4:
- First term: 41×2×4×34=2×81=162
- Second term: 21×1×43×32=21×64×9=288
Sum: 162+288=450
Q=2πε0×450=900πε0
Substituting ε0=36π×1091 F/m:
Q=900π×36π×1091=36900×10−9=25×10−9 C
Since 1 nC=10−9 C, the total charge is 25 nC.
Therefore, the answer is 25.