This is the , i want to solve in javascript.please help me.
Here I will give voltage(v0) as input and time increase by one from 1 to 10.I have to find u(velocity) OR straightly i hv to get distance(integral of velocity ).
Asked
Active
Viewed 132 times
0

guest271314
- 1
- 15
- 104
- 177

dhanu
- 55
- 10
-
Are you asking for both Answer to calculus portion of Question and solving the calculus using `javascript`? What have you tried to solve the Question? – guest271314 Nov 05 '16 at 06:55
-
hi, I want to solve this equation.I want to find u(velocity). – dhanu Nov 05 '16 at 07:07
-
Yes, what have you tried to solve the calculus? – guest271314 Nov 05 '16 at 07:09
-
Have you considered asking Question at http://math.stackexchange.com/ ? Though, still include what you have tried to solve Question within body of Question. – guest271314 Nov 05 '16 at 07:14
-
I tried numeric.js.I couldn't be able to do it. – dhanu Nov 05 '16 at 07:14
-
Try performing the calculus by hand before using a computer program to do so. How can you verify that the answer returned by the program is correct? – guest271314 Nov 05 '16 at 07:16
-
I am doing a simulator.i have to check with program and hand.is there any way to do in programming? – dhanu Nov 05 '16 at 07:19
-
See [number.js](https://github.com/numbers/numbers.js) , [MathJax](https://www.mathjax.org/) , [Math libraries](https://github.com/bebraw/jswiki/wiki/Math-libraries) – guest271314 Nov 05 '16 at 07:21
-
1You want to solve a differential equation (system) `U'=u, a=b*t/U+c*u'`. You will need a numerical integrator and two initial conditions. – Lutz Lehmann Nov 05 '16 at 09:27
-
@LutzL i didn't get it.can you tell it briefly?pls – dhanu Nov 06 '16 at 05:29
-
Try to understand http://stackoverflow.com/questions/29830807/runge-kutta-problems-in-js if you want to integrate yourself. Please document your attempts of using `numeric.js` (by editing the question), the examples in http://www.numericjs.com/documentation.html section "Solving ODEs" seem rather straightforward. – Lutz Lehmann Nov 06 '16 at 08:36