f'[0]=0.5 is True?
- To: mathgroup at smc.vnet.net
- Subject: [mg131392] f'[0]=0.5 is True?
- From: mariusz sapinski <mariusz.sapinski at gmail.com>
- Date: Thu, 18 Jul 2013 03:00:07 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-outx@smc.vnet.net
- Delivered-to: mathgroup-newsendx@smc.vnet.net
Dear All, I'm trying a simple exercise: eqn = f''[x] + 2 f'[x] + 30 f[x] == 0; Clear[f]; Clear[x]; eqn1 = f[0] == 1; eqn2 = f'[0] == 0.5; DSolve[{eqn, eqn1, eqn2}, f[x], x] and I get: DSolve::deqn: Equation or list of equations expected instead of True in the first argument {30 f[x]+2 (f^\[Prime])[x]+(f^\[Prime]\[Prime])[x]==0,f[0]==1,True}. >> so f'[0]=0.5 is True for Mathematica? How can it be? If I remove eqn2 from DSolve then I get a solution with a parameter of course. Cheers, Mariusz
- Follow-Ups:
- Re: f'[0]=0.5 is True?
- From: Bob Hanlon <hanlonr357@gmail.com>
- Re: f'[0]=0.5 is True?