What Methods Solve the Differential Equation f '(x) = 3 * f(x)?

pilmr
Messages
2
Reaction score
0
Can anyone give some clues on how to solve this differential equation:

f '(x) = 3 * f(x)

Thanks!
 
Physics news on Phys.org
Let me see if I can help...

If the problem is asking to solve for f(x)...
Then, I'd first ask myself, what function is equal to its derivative.

I only know of one function: e^x
Therefore, the answer must be of be form: e^(kx), where k is some constant.

Does that help?
 
f'(x) = 3f(x)
lets say y = f(x) for funsies

y' = 3y
(dy/dx) = 3y
dy/(3y) = dx

Integrate with respect to both sides...

right side = X+ C
Left side, , it equals (1/3)*(lny) (technically absolute value of y, but whatevs)

so
ln(y) = 3x + 3c ... which we can also say 3x + C, since C is an arbitrary constant
ln(y) = 3x+C
y = e^(3x+C)
y = (e^(3x))(e^C)
e^C is a constant, so we can say that's C
so...

y = Ce^(3x)
 
Thank you guys, got it now.
 
Thread 'Use greedy vertex coloring algorithm to prove the upper bound of χ'
Hi! I am struggling with the exercise I mentioned under "Homework statement". The exercise is about a specific "greedy vertex coloring algorithm". One definition (which matches what my book uses) can be found here: https://people.cs.uchicago.edu/~laci/HANDOUTS/greedycoloring.pdf Here is also a screenshot of the relevant parts of the linked PDF, i.e. the def. of the algorithm: Sadly I don't have much to show as far as a solution attempt goes, as I am stuck on how to proceed. I thought...
Back
Top