Logo Neurocoda

Argument Synthesis Method and Its Proof

Neurocoda
Neurocoda

Core Concept

Argument synthesis method (also known as the R method) is a technique to convert a linear trigonometric expression of the form

acosα+bsinαa\cos\alpha + b\sin\alpha

into a single trigonometric function. The core idea is to construct an appropriate amplitude RR and phase angle ϕ\phi such that the expression can be written as

Rsin(α+ϕ)orRcos(αϕ).R\sin(\alpha + \phi) \quad\text{or}\quad R\cos(\alpha - \phi).

Derivation Steps

Amplitude Calculation

The amplitude RR has the geometric interpretation as the magnitude of the vector (a,b)(a, b), so

R=a2+b2R = \sqrt{a^2 + b^2}

For example, for cosα+3sinα\cos\alpha + \sqrt{3}\sin\alpha:

R=12+(3)2=4=2R = \sqrt{1^2 + (\sqrt{3})^2} = \sqrt{4} = 2

Determining the Phase Angle

Depending on the target form (sine or cosine), the calculation of ϕ\phi differs slightly, and quadrant determination is necessary:

  • Sine form: Let

    acosα+bsinα=Rsin(α+ϕ)a\cos\alpha + b\sin\alpha = R\sin(\alpha + \phi)

    Expanding using the angle sum formula:

    Rsin(α+ϕ)=R[sinαcosϕ+cosαsinϕ]R\sin(\alpha + \phi) = R[\sin\alpha\cos\phi + \cos\alpha\sin\phi]

    Comparing coefficients gives:

    {Rcosϕ=bRsinϕ=a{cosϕ=bRsinϕ=aR\begin{cases} R\cos\phi = b \\ R\sin\phi = a \end{cases} \quad\Rightarrow\quad \begin{cases} \cos\phi = \dfrac{b}{R} \\ \sin\phi = \dfrac{a}{R} \end{cases}

    Therefore,

    ϕ=arctan2(a,b)\phi = \arctan2\bigl(a,\,b\bigr)
  • Cosine form: Let

    acosα+bsinα=Rcos(αϕ)a\cos\alpha + b\sin\alpha = R\cos(\alpha - \phi)

    Expanding:

    Rcos(αϕ)=R[cosαcosϕ+sinαsinϕ]R\cos(\alpha - \phi) = R[\cos\alpha\cos\phi + \sin\alpha\sin\phi]

    Comparing coefficients:

    {Rcosϕ=aRsinϕ=b{cosϕ=aRsinϕ=bR\begin{cases} R\cos\phi = a \\ R\sin\phi = b \end{cases} \quad\Rightarrow\quad \begin{cases} \cos\phi = \dfrac{a}{R} \\ \sin\phi = \dfrac{b}{R} \end{cases}

    Therefore,

    ϕ=arctan2(b,a)\phi = \arctan2\bigl(b,\,a\bigr)

Note: If only arctan(ba)\arctan\left(\frac{b}{a}\right) is used without considering signs, the quadrant may be misjudged. Use arctan2\arctan2 or sign analysis.

Proof of Correctness

Using the cosine form as an example:

  1. Define

    R=a2+b2,cosϕ=aR,sinϕ=bRR = \sqrt{a^2 + b^2}, \quad \cos\phi = \frac{a}{R}, \quad \sin\phi = \frac{b}{R}
  2. Expand the right-hand side:

    Rcos(αϕ)=R[cosαcosϕ+sinαsinϕ]=Rcosϕcosα+RsinϕsinαR\cos(\alpha - \phi) = R\bigl[\cos\alpha\cos\phi + \sin\alpha\sin\phi\bigr] = R\cos\phi \cdot \cos\alpha + R\sin\phi \cdot \sin\alpha
  3. Substitute the definitions:

    Rcosϕ=a,Rsinϕ=bacosα+bsinαR\cos\phi = a, \quad R\sin\phi = b \quad \Longrightarrow \quad a\cos\alpha + b\sin\alpha

Thus the identity holds. The sine form can be proved analogously.

Concrete Example

Example: Convert 3cosx4sinx3\cos x - 4\sin x into a single trigonometric function.

  1. Calculate amplitude:

    R=32+(4)2=9+16=5R = \sqrt{3^2 + (-4)^2} = \sqrt{9 + 16} = 5
  2. Determine phase angle (cosine form):

    cosϕ=35,sinϕ=45\cos\phi = \frac{3}{5}, \quad \sin\phi = -\frac{4}{5}

    The phase angle ϕ\phi is in the fourth quadrant:

    ϕ=arctan(43)\phi = -\,\arctan\left(\tfrac{4}{3}\right)
  3. Synthesized result:

    3cosx4sinx=5cos(x+arctan43)3\cos x - 4\sin x = 5\cos\left(x + \arctan\tfrac{4}{3}\right)
  4. Verification:

    5cos(x+arctan43)=5[cosx35sinx45]=3cosx4sinx5\cos\left(x + \arctan\frac{4}{3}\right) = 5 \left[\cos x \cdot \frac{3}{5} - \sin x \cdot \frac{4}{5}\right] = 3\cos x - 4\sin x

Important Notes

  1. Quadrant Determination
    The phase angle ϕ\phi must be determined based on the signs of aa and bb.

  2. Form Selection

    • For differentiation, prefer the sine form.
    • For integration, prefer the cosine form.
  3. Frequency Consistency
    This method only applies to superpositions of trigonometric functions with the same frequency.

  4. Connection to Complex Numbers
    Corresponds to complex multiplication: a+bi=Reiϕa + bi = R e^{i\phi}, representing a “rotation + scaling” transformation.

Summary

The argument synthesis method converts acosα+bsinαa\cos\alpha + b\sin\alpha into a single trigonometric function through amplitude RR and phase angle ϕ\phi:

  • Compute R=a2+b2R = \sqrt{a^2 + b^2}
  • Determine ϕ\phi based on the target form
  • Applicable in analytic geometry, signal analysis, and related fields.
Title: Argument Synthesis Method and Its Proof Author: Neurocoda Created at: 2026-07-03 12:45:28 Link: https://neurocoda.com/zh-TW/posts/argument-synthesis-method-and-its-proof-en/ License: This work is licensed under CC BY-ND 4.0.

Comments