Skip to content

Split View: 공업수학 시리즈 16편: gradient, divergence, curl

|

공업수학 시리즈 16편: gradient, divergence, curl

공업수학 시리즈 16편: gradient, divergence, curl

벡터미적분은 연산 기호만 보면 어렵지만, 사실 세 가지 질문에 답하는 도구라고 생각하면 훨씬 단순해집니다.

  1. 어디로 가장 빨리 증가하는가
  2. 얼마나 퍼져 나가거나 모여드는가
  3. 얼마나 회전하는가

이 질문에 각각 대응하는 것이 gradient, divergence, curl입니다.

gradient

스칼라장 f(x,y,z)f(x,y,z)의 gradient는

f=(fx,fy,fz)\nabla f = \left(\frac{\partial f}{\partial x}, \frac{\partial f}{\partial y}, \frac{\partial f}{\partial z}\right)

입니다.

직관적으로는 가장 가파르게 증가하는 방향을 알려주는 벡터입니다.

예를 들어

f(x,y)=x2+y2f(x,y)=x^2+y^2

이면

f=(2x,2y)\nabla f = (2x,2y)

입니다. 원점에서 멀어질수록 바깥쪽을 향하는 화살표가 더 커집니다. 즉 gradient는 등고선에 수직이고, "오르막 방향"을 가리킵니다.

divergence

벡터장 F=(P,Q,R)\mathbf{F}=(P,Q,R)의 divergence는

F=Px+Qy+Rz\nabla \cdot \mathbf{F} = \frac{\partial P}{\partial x} + \frac{\partial Q}{\partial y} + \frac{\partial R}{\partial z}

입니다.

직관적으로는 한 점 근처에서 벡터장이 밖으로 퍼져 나가는 정도를 뜻합니다.

  • 양수면 source처럼 바깥으로 퍼짐
  • 음수면 sink처럼 안으로 모임
  • 0이면 순증가 없이 흐름이 보존됨

curl

벡터장 F\mathbf{F}의 curl은 회전 성분을 나타냅니다. 3차원에서 정의되며, 2차원에서는 보통 "국소 회전"의 척도로 이해합니다.

직관적으로는 작은 바람개비를 그 점에 놓았을 때 얼마나 돌 것인가를 묻는 것과 비슷합니다.

예를 들어

F(x,y)=(y,x)\mathbf{F}(x,y)=(-y,x)

는 원점을 중심으로 회전하는 장이므로 curl이 0이 아닙니다.

손으로 보는 예제

벡터장

F(x,y,z)=(x,y,z)\mathbf{F}(x,y,z) = (x, y, z)

를 보겠습니다. divergence는

F=1+1+1=3\nabla \cdot \mathbf{F} = 1+1+1 = 3

입니다. 이는 모든 방향으로 바깥으로 퍼져 나가는 source 같은 장이라는 뜻입니다.

반면

F(x,y)=(y,x)\mathbf{F}(x,y)=(-y,x)

는 공간 전체에서 원형 흐름을 만들기 때문에 divergence보다 회전 성분 해석이 더 중요합니다.

공학 응용

온도장

gradient는 온도가 가장 빠르게 증가하는 방향을 알려줍니다.

유체역학

divergence는 압축성이나 질량 보존과 연결되고, curl은 소용돌이와 연결됩니다.

전자기학

맥스웰 방정식은 gradient, divergence, curl의 언어로 쓰여 있다고 해도 과언이 아닙니다.

왜 정의보다 해석이 먼저인가

입문자가 가장 자주 하는 실수는 공식을 외우고 나서도 그 결과가 뭘 뜻하는지 모르는 것입니다. 예를 들어 divergence가 0이면 계산적으로는 단순한 숫자지만, 물리적으로는 "들어오는 양과 나가는 양이 균형"이라는 뜻입니다.

자주 하는 실수

gradient와 divergence를 같은 종류 연산으로 본다

gradient는 스칼라장에서 벡터를 만들고, divergence는 벡터장에서 스칼라를 만듭니다.

curl을 공식만으로 이해하려 한다

작은 회전의 강도라는 그림이 먼저 떠올라야 공식이 자연스럽습니다.

좌표 계산만 하고 field interpretation을 놓친다

물리적 의미를 같이 읽지 않으면 벡터미적분은 금방 암기 과목이 됩니다.

한 줄 요약

gradient는 증가 방향, divergence는 퍼짐, curl은 회전을 측정합니다.

다음 편 예고

다음 글에서는 선적분, 면적분, 그리고 그린 정리와 가우스 정리 같은 적분 정리가 왜 중요한지 보겠습니다.

참고자료

  • Erwin Kreyszig, Advanced Engineering Mathematics, 10th Edition
  • H. M. Schey, Div, Grad, Curl, and All That
  • David J. Griffiths, Introduction to Electrodynamics

Engineering Math Series 16: Gradient, Divergence, and Curl

Engineering Math Series 16: Gradient, Divergence, and Curl

Vector calculus looks difficult when you only see the operator symbols, but it becomes much simpler if you think of it as a tool that answers three questions.

  1. In which direction does it increase the fastest
  2. How much does it spread out or converge
  3. How much does it rotate

The answers to these questions correspond to gradient, divergence, and curl respectively.

Gradient

The gradient of a scalar field f(x,y,z)f(x,y,z) is

f=(fx,fy,fz)\nabla f = \left(\frac{\partial f}{\partial x}, \frac{\partial f}{\partial y}, \frac{\partial f}{\partial z}\right)

Intuitively, it is a vector that tells you the direction of steepest increase.

For example, if

f(x,y)=x2+y2f(x,y)=x^2+y^2

then

f=(2x,2y)\nabla f = (2x,2y)

The further from the origin, the larger the outward-pointing arrows become. The gradient is perpendicular to level curves and points in the "uphill direction."

Divergence

The divergence of a vector field F=(P,Q,R)\mathbf{F}=(P,Q,R) is

F=Px+Qy+Rz\nabla \cdot \mathbf{F} = \frac{\partial P}{\partial x} + \frac{\partial Q}{\partial y} + \frac{\partial R}{\partial z}

Intuitively, it measures the extent to which the vector field spreads outward near a point.

  • Positive means spreading outward like a source
  • Negative means converging inward like a sink
  • Zero means the flow is conserved with no net outflow

Curl

The curl of a vector field F\mathbf{F} represents the rotational component. It is defined in three dimensions, and in two dimensions it is usually understood as a measure of "local rotation."

Intuitively, it is similar to asking how much a tiny pinwheel placed at that point would spin.

For example,

F(x,y)=(y,x)\mathbf{F}(x,y)=(-y,x)

is a field that rotates around the origin, so the curl is not zero.

Worked Example

Consider the vector field

F(x,y,z)=(x,y,z)\mathbf{F}(x,y,z) = (x, y, z)

The divergence is

F=1+1+1=3\nabla \cdot \mathbf{F} = 1+1+1 = 3

This means it is a source-like field that spreads outward in all directions.

On the other hand,

F(x,y)=(y,x)\mathbf{F}(x,y)=(-y,x)

creates a circular flow throughout space, so analyzing its rotational component is more important than its divergence.

Engineering Applications

Temperature Fields

The gradient tells you the direction in which temperature increases the fastest.

Fluid Mechanics

Divergence is connected to compressibility and mass conservation, while curl is connected to vortices.

Electromagnetics

It is no exaggeration to say that Maxwell's equations are written in the language of gradient, divergence, and curl.

Why Interpretation Comes Before Definition

The most common mistake beginners make is memorizing formulas and then not knowing what the result means. For example, when divergence is 0, computationally it is a simple number, but physically it means "the incoming and outgoing amounts are balanced."

Common Mistakes

Viewing gradient and divergence as the same type of operation

Gradient creates a vector from a scalar field, while divergence creates a scalar from a vector field.

Trying to understand curl through formulas alone

The picture of the strength of small rotation should come to mind first for the formula to feel natural.

Only doing coordinate calculations and missing field interpretation

Without reading the physical meaning alongside, vector calculus quickly becomes a memorization subject.

One-Line Summary

Gradient measures the direction of increase, divergence measures spreading, and curl measures rotation.

Next Post Preview

In the next post, we will look at why line integrals, surface integrals, and integral theorems like Green's theorem and Gauss's theorem are important.

References

  • Erwin Kreyszig, Advanced Engineering Mathematics, 10th Edition
  • H. M. Schey, Div, Grad, Curl, and All That
  • David J. Griffiths, Introduction to Electrodynamics