how to write in matlab
y = e^ int(75/80)dt

5 Comments

Please provide more detail. What differential equation are you trying to solve?
d dtx1(t) = − x1(t) 2 + 20 d
solved using linear DE equation to get
y = exp^int(1/2)dt ** not 75/80
James Tursa
James Tursa on 12 Dec 2018
Edited: James Tursa on 12 Dec 2018
Is it this? (where x1 is a function of time)
d(x1)/dt = -x1 / 2 + 20 * d
What is that d at the end?
sorry no d so just
d(x1)/dt = -x1 / 2 + 20
Stephan
Stephan on 12 Dec 2018
Edited: Stephan on 12 Dec 2018
Hi Brenda,
i saw that you got some answers on your severa questions here in the forum. Did you notice that you can accept and/or vote for answers, in order to thank the volunteers here for taking the time to help you with your problems?

Sign in to comment.

 Accepted Answer

madhan ravi
madhan ravi on 12 Dec 2018
Edited: madhan ravi on 12 Dec 2018
You can verify the result with wolfram but here you will see a C which is constant which arises after antiderivative(without limits):
syms y(t)
ode=diff(y) == exp(75/80)
dsolve(ode)

9 Comments

what about the exponential before the integral how to represent that
exp() see edited answer
madhan ravi
madhan ravi on 12 Dec 2018
Edited: madhan ravi on 12 Dec 2018
This is how you write the equation:
syms t y
eqn = y == vpa(exp(1)^(int(75/80,t))) % in decimal form
eqn = y == exp(1)^(int(75/80,t)) % in fractions form
Brenda Galabe's answer moved here for consistency:
but the equation looks like this
y = exp^int(75/80)dt . so the exp is before the integral
Brenda Galabe's answer moved here for consistency:
ok cool. answer im getting is
eqn =
y == (3060513257434037/1125899906842624)^((15*t)/16)
i know on paper answer suppose to be exp^(75/80)t
Basically they are the same but represented in different forms just substitute the values and see as below:
>> t=1;
>> exp(1)^(75/80)*t
ans =
2.5536
>> (3060513257434037/1125899906842624)^((15*t)/16)
ans =
2.5536
>>
Brenda Galabe's answer moved here for consistency:
ok thank you
Anytime :)

Sign in to comment.

More Answers (1)

Brenda Galabe
Brenda Galabe on 12 Dec 2018

0 votes

not sure what that means

Categories

Find more on Mathematics in Help Center and File Exchange

Products

Release

R2015b

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!