来自杜永昌的问题
【用Mathematica解方程f'''[x]+0.5f[x]f''[x]=0,初始条件是f[0]==0,f'[0]==a,f'[10]==1-a.哪位高手给用Mathematica给解一下】
用Mathematica解方程
f'''[x]+0.5f[x]f''[x]=0,初始条件是f[0]==0,f'[0]==a,f'[10]==1-a.
哪位高手给用Mathematica给解一下


【用Mathematica解方程f'''[x]+0.5f[x]f''[x]=0,初始条件是f[0]==0,f'[0]==a,f'[10]==1-a.哪位高手给用Mathematica给解一下】
用Mathematica解方程
f'''[x]+0.5f[x]f''[x]=0,初始条件是f[0]==0,f'[0]==a,f'[10]==1-a.
哪位高手给用Mathematica给解一下
s=With[{a=1(*你设定的a值*)},
NDSolve[{f'''[x]+0.5f[x]f''[x]==0,f[0]==0,f'[0]==a,
f'[10]==1-a},f[x],{x,0,10(*你设定的x范围*)}]];
Plot[f[x]/.s,{x,0,10(*你设定的x范围*)}]
这个微分方程用电脑好像解不出来