연쇄 법칙은 미분에서 가장 많이 쓰이는 도구이자 가장 큰 실수의 원천이기도 합니다. "바깥-그다음-안쪽" 패턴을 체화하면 거의 모든 합성함수를 세 줄 안에 미분할 수 있습니다. 이 가이드는 그 패턴을 보여 주고, 난도를 높여 가는 일곱 가지 예제를 풀며, 미리 외워 둘 가치가 있는 네 가지 실수를 정리합니다.
연쇄 법칙이 말하는 것
f 와 g 가 미분 가능하면, 합성 f(g(x)) 의 도함수는
dxdf(g(x))=f′(g(x))⋅g′(x).
말로 하면: 바깥 함수를 안쪽에서 평가해 미분하고, 안쪽의 도함수를 곱한다. "바깥"과 "안쪽" 표시는 타협 불가입니다. 헷갈리면 답이 뒤집힙니다.
유용한 암기법: 연쇄 법칙은 "바깥 도함수 곱하기 안쪽 도함수"이며, 결코 더하기도, 하나만도 아닙니다.
The chain rule states that the derivative of a composite function f(g(x)) is f′(g(x)) · g′(x). In words: differentiate the outer function leaving the inner function unchanged, then multiply by the derivative of the inner function.
Use the chain rule whenever you differentiate a function composed of two or more functions, such as sin(x²), e^(3x), or (2x+1)⁵. If you can identify an "outer" and an "inner" function, the chain rule applies.
Forgetting to multiply by the derivative of the inner function. For example, the derivative of sin(x²) is cos(x²) · 2x, not just cos(x²). Always multiply the outer derivative by the inner derivative.