Qurak

D solve working with d solve singular solutions

Tutorial 6 passos, executados em ordem numa sessão. Cada passo foi executado no motor e a saída abaixo é o que ele produziu.

Passo 1
DSolve[y'[x] ^ 2 - y'[x] * x + y[x] == 0, y[x], x]
Saída
DSolve[Derivative[1][y][x]^2 - x*Derivative[1][y][x] + y[x] == 0, y[x], x]
Passo 2
DSolve[y'[x] ^ 2 - y'[x] * x + y[x] == 0, y, x, IncludeSingularSolutions -> True]
Saída
DSolve[Derivative[1][y][x]^2 - x*Derivative[1][y][x] + y[x] == 0, y, x, IncludeSingularSolutions -> True]
Passo 3
Plot[Table[x c - c^2, {c, -10, 10}]//Evaluate, {x, -50, 50}, PlotRange -> All]
Saída
-Graphics-
Passo 4
DSolve[y'[x] == y[x] (1 - y[x]), y[x], x]
Saída
{{y[x] -> C[1]/E^Integrate[-1 + y[x], x]}}
Passo 5
DSolve[y'[x] == y[x] (1 - y[x]), y, x, IncludeSingularSolutions -> True]
Saída
DSolve[Derivative[1][y][x] == (1 - y[x])*y[x], y, x, IncludeSingularSolutions -> True]
Passo 6
Plot[Table[(E^x/E^x + E^c), {c, -10, 10}]//Evaluate, {x, -20, 20}, PlotRange -> All]
Saída
-Graphics-

Funções usadas

Receitas relacionadas

Todas as receitas · Referência de funções · Usar isto de um cliente MCP