Euler's formula and no sequences

Let f:ABf:A\rightarrow B be a function of xx only such that ARA\subseteq \mathbb{R} and BRB\subseteq \mathbb{R}. Let us, now, investigate the following differential equation:

aix=Df(x)+if(x);     [1] a^{ix} = Df(x) + if(x) ;\;\;\ \left [ 1 \right ]

Where Df(x)Df(x) stands for the derivative of ff in relation to xx. Now, the relation above gives us iDf(x)=iaix+f(x)iDf(x) = ia^{ix} + f(x) simply by multiplying the relation by ii. Now, differentiating equation [1]\left [ 1 \right ] will give us

ilna  aix=D2f(x)+iDf(x) i \ln{a} \; a^{ix} = D^{2}f(x) + iDf(x)

and using the relation iDf(x)=iaix+f(x)iDf(x) = ia^{ix} + f(x) that we just proved will result in

iaix(lna1)=(D2+1)f(x) ia^{ix}\left ( \ln{a}-1 \right ) = \left ( D^{2}+1 \right )f(x) i(lna1)Df(x)(lna1)f(x)=(D2+1)f(x);     [2] i\left ( \ln{a}-1 \right )Df(x) - \left ( \ln{a}-1 \right )f(x) = \left ( D^{2}+1 \right )f(x) ;\;\;\ \left [ 2 \right ]

Now, as f(x)Rf(x) \in \mathbb{R} for any xx on its domain, it follows that

i(lna1)Df(x)=0 i\left ( \ln{a}-1 \right )Df(x) = 0

As we don't want the trivial solution f(x)=cf(x) = c with cc a constant, we need to take a=ea = e. Now let us find the solution to the rest of the differential equation [2] \left [ 2 \right ] . The equation is

(lna1)f(x)=(D2+1)f(x) - \left ( \ln{a}-1 \right )f(x) = \left ( D^{2}+1 \right )f(x)

or

(D2+lne)f(x)=0\left ( D^{2} + \ln{e} \right )f(x) = 0 (D+i)(Di)=0\left ( D+i \right )\left ( D-i \right ) = 0

And the solutions is obviosly

f(x)=Asinx+Bcosxf(x) = A\sin{x} + B\cos{x}

Feeding it back into [1]\left [ 1 \right ] turns into

eix=(A+iB)cosx+(iAB)sinxe^{ix} = \left ( A+iB \right ) \cos{x} + \left ( iA-B \right ) \sin{x}

as we want e0=1e^{0} = 1 it turns out that A=1iBA = 1 - iB which is only possible if B=0B = 0, because AA and BB must be real once they are part of f(x)f(x), and also A=1A = 1 because A=1iB=10=1A = 1 - iB = 1 - 0 = 1. Then the equation becomes

eix=cosx+isinx e^{ix} = \cos{x} + i\sin{x}

#Calculus

Note by Lucas Tell Marchi
6 years, 1 month ago

No vote yet
1 vote

  Easy Math Editor

This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.

When posting on Brilliant:

  • Use the emojis to react to an explanation, whether you're congratulating a job well done , or just really confused .
  • Ask specific questions about the challenge or the steps in somebody's explanation. Well-posed questions can add a lot to the discussion, but posting "I don't understand!" doesn't help anyone.
  • Try to contribute something new to the discussion, whether it is an extension, generalization or other idea related to the challenge.
  • Stay on topic — we're all here to learn more about math and science, not to hear about your favorite get-rich-quick scheme or current world events.

MarkdownAppears as
*italics* or _italics_ italics
**bold** or __bold__ bold

- bulleted
- list

  • bulleted
  • list

1. numbered
2. list

  1. numbered
  2. list
Note: you must add a full line of space before and after lists for them to show up correctly
paragraph 1

paragraph 2

paragraph 1

paragraph 2

[example link](https://brilliant.org)example link
> This is a quote
This is a quote
    # I indented these lines
    # 4 spaces, and now they show
    # up as a code block.

    print "hello world"
# I indented these lines
# 4 spaces, and now they show
# up as a code block.

print "hello world"
MathAppears as
Remember to wrap math in \( ... \) or \[ ... \] to ensure proper formatting.
2 \times 3 2×3 2 \times 3
2^{34} 234 2^{34}
a_{i-1} ai1 a_{i-1}
\frac{2}{3} 23 \frac{2}{3}
\sqrt{2} 2 \sqrt{2}
\sum_{i=1}^3 i=13 \sum_{i=1}^3
\sin \theta sinθ \sin \theta
\boxed{123} 123 \boxed{123}

Comments

This looks like a correct but pretty roundabout way to derive Euler's formula. If you know the solutions to the differential equation f(x)=f(x)f''(x)=-f(x), as you assume we do, then you can get the result by writing eix=f(x)+ig(x)e^{ix}=f(x) + ig(x), taking the first and second derivative, and using the initial values.

Otto Bretscher - 6 years, 1 month ago

Log in to reply

But you see, I just wanted to find the solutions to the differential equation [1], and I didn't even set a=ea = e; what I did here is: if ff assumes only real values, then differential equation [1] is Euler's formula.

Lucas Tell Marchi - 6 years, 1 month ago

Log in to reply

You assumed that we know that the real solutions of f(x)=f(x)f''(x)=-f(x) are of the form f(x)=asin(x)+bcos(x)f(x)=a\sin(x)+b\cos(x).

Now if we write eix=f(x)+ig(x)e^{ix}=f(x)+ig(x), then we have, taking derivatives, ieix=f(x)+ig(x)ie^{ix}=f'(x)+ig'(x) and eix=f(x)+ig(x)-e^{ix}=f''(x)+ig''(x). The second derivative tells us that f(x)f(x) and g(x)g(x) are solutions of our Diff Equ, and the initial values (f(0)=1,f(0)=0f(0)=1, f'(0)=0 etc) tell us that f(x)=cosxf(x)=\cos{x} and g(x)=sinxg(x)=\sin{x}... done.

Otto Bretscher - 6 years, 1 month ago

Log in to reply

@Otto Bretscher But why did you choose the base a=ea = e?

Lucas Tell Marchi - 6 years, 1 month ago

Log in to reply

@Lucas Tell Marchi I didn't choose it... my country man Euler chose it (hey, it's his number): He asked for the real and imaginary parts of eix,e^{ix}, and Euler's formula is his answer.

Otto Bretscher - 6 years, 1 month ago

Log in to reply

@Otto Bretscher That's what I'm saying. My original differential equation has nothing to do with Euler's.

Lucas Tell Marchi - 6 years, 1 month ago

Log in to reply

@Lucas Tell Marchi The point of your note seems to be to present a proof of Euler's formula?!

Otto Bretscher - 6 years, 1 month ago

Log in to reply

@Otto Bretscher It turned out to have something to do with Euler's formula, but at first it didn't have anything to do with it.

Lucas Tell Marchi - 6 years, 1 month ago

Log in to reply

@Lucas Tell Marchi What motivated you to consider the differential equation aix=f(x)+if(x)a^{ix}=f'(x)+if(x)?

Otto Bretscher - 6 years, 1 month ago

Log in to reply

@Otto Bretscher Boredom at my electrodynamics class.

Lucas Tell Marchi - 6 years, 1 month ago
×

Problem Loading...

Note Loading...

Set Loading...