Re: NDSolve with NIntegrate where Integral is a function of x

  • Follow


You did not specify g[x,t] so I could not verify that this will work.

You also need to pay closer attention to syntax.

h[x_?NumericQ] := Integrate[g[x, t], {t, 0, Infinity}]

NDSolve[{y'[x] == f[x]*h[x], y[0] == 0.04}, y[x], {x, 0, 10}]


Bob Hanlon


On Thu, Jul 19, 2012 at 3:50 AM, Nikthecrab <nikhil.dexter@gmail.com> wrote:
> I am trying to solve a differential equation using NDSolve . It is of the form:
>
> NDSolve[{y'[x]=f(x)*Integrate[g(x,t),{t,0,infinity}],y[0]=0.04},y[x],{x,0,10}]
>
> here f is a function of x and g is a function of x and a dummy variable t for integration.
> The integral cannot be solved directly in terms of x.So I tried using NIntegrate.But NIntegrate requires x to be a number while NDSolve clearly has to vary x from 0 to 10. Can anyone suggest a suitable solution to this problem?
>

0
Reply hanlonr357 (718) 7/20/2012 7:59:14 AM


0 Replies
23 Views

(page loaded in 0.048 seconds)

Similiar Articles:




7/21/2012 9:47:57 PM


Reply: