Technique used to solve certain types of differential equations. This technique involves collecting all of the variables in the equation with their corresponding d. Rei:


x dy + y dx=0

x dy=-y dx                    <- organizing equation

dy/y = -dx/x                  <- dividing by x and y - separating equation

Sdy/y=-Sdx/x                  <- integrate both sides

ln|y| + c1 = -ln|x| + c2      <- fundamental theorem of Calculus

ln|y|+ln|x| = C               <- collecting constants

e^(ln|y*x|)= e^C              <- simplifying

y*x=C2                        <- simplifying further - new constant

y=C2/x

L'Hospital came up with separation of variables in 1750, and it is now the physicist's handiest tool for solving partial differential equations. Using Laplace's equation and given the appropriate boundary conditions, it is possible to determine V (the electric potential) or W (the scalar potential of the auxiliary field) using separation of variables. In general, given a partial differential equation in a function Φ(x1, x2, ..., xn), we break it up into a set of independent ordinary differential equations such that

Φ(x1, x2, ..., xn)=X1(x1)X2(x2)...Xn(xn)

Xi can be easily solved and substituted back in. This is not possible for many Φ, but for lots of problems in physics this process is capable of finding solutions from specified boundary conditions. The solutions for V are unique for a given set of boundary conditions, so the answer we get through this process is the actual solution.

It is important to pick the right coordinate system. Let's pick Cartesian coordinates.

V(x,y,z)=X(x)Y(y)Z(z)

2V/∂x2+∂2V/∂y2+∂2V/∂z2=0      Laplace's Equation

2X/∂x2*Y(y)Z(z)+∂2Y/∂y2*X(x)Z(z)+∂2Z/∂z2*X(x)Y(y)=0      Plugging V into Laplace's Equation

2X/∂x2*1/X(x) +∂2Y/∂y2*1/Y(y)+∂2Z/∂z2*1/Z(z)=0      Dividing by V

2X/∂x2*1/X=C1, ∂2Y/∂y2*1/Y=C2, ∂2Z/∂z2*1/Z=C3   C1+C2+C3=0 Follows from above

Depending on your charge distribution, you can pick C1, C2 and C3 however you like. Let's assume that the potential goes to 0 as x goes to infinity. Then we will pick C1 to be positive and C2, C3 to be negative.

C1=k2+l2, C2=-k2, C3=-l2

2X/∂x2=(k2+l2)X, ∂2Y/∂y2=-k2Y, ∂2Z/∂z2=-l2Z,

Now we have our ordinary differential equations. Solving...

X(x)=Ae√(k2+l2) x+Be-√(k2+l2) x
Y(y)=C sin(ky)+ D cos(ky)
Z(z)=E sin(lz)+ F cos(lz)

While the formula V(x,y,z)=(Ae√(k2+l2) x+Be-√(k2+l2) x)(C sin(ky)+ D cos(ky))(E sin(lz)+ F cos(lz)) might not seem particularly enlightening, with the appropriate boundary conditions you can solve for A, B, C, D, E, F, k and l, many of which turn out to be zero. It might also seem like the sine and cosine terms give infinite solutions, making this whole process worthless; but it is exactly these infinite solutions that allows us to find a solution for V.

Laplace's Equation is linear, such that any linear combination of solutions to Laplace's equation is also a solution to Laplace's Equation. Thus our solution ends up being an infinite sum ∑n, 0->∞ Vn, where k and l are linear functions of n. The completeness and orthogonality of the sinusoidal functions allows us to use this infinite sum to find the actual V, not unlike a Fourier series. In practice, most of the terms usually drop out or the contributions of successive terms decreases quickly such that you can get a reasonable approximation for V with only a few terms.

This process also works in a whole bunch of other coordinate systems. The general solution in spherical coordinates (assuming azimuthal symmetry) is:

V(r, θ)=∑n, 0->∞(Anrn+Bn/rn+1)Pn(cos θ)

Where Pn(x) are the Legendre polynomials.

Sources:
http://mathworld.wolfram.com/SeparationofVariables.html
Griffiths, D. Introduction to Electrodynamics 3rd edition © 1999

Log in or register to write something here or to contact authors.