Tutorial 6 passi, eseguiti in ordine in una sola sessione. Ogni passo è stato eseguito sul motore e l'output qui sotto è ciò che ha prodotto.
DSolve[y'[x] ^ 2 - y'[x] * x + y[x] == 0, y[x], x]DSolve[Derivative[1][y][x]^2 - x*Derivative[1][y][x] + y[x] == 0, y[x], x]DSolve[y'[x] ^ 2 - y'[x] * x + y[x] == 0, y, x, IncludeSingularSolutions -> True]DSolve[Derivative[1][y][x]^2 - x*Derivative[1][y][x] + y[x] == 0, y, x, IncludeSingularSolutions -> True]Plot[Table[x c - c^2, {c, -10, 10}]//Evaluate, {x, -50, 50}, PlotRange -> All]-Graphics-DSolve[y'[x] == y[x] (1 - y[x]), y[x], x]{{y[x] -> C[1]/E^Integrate[-1 + y[x], x]}}DSolve[y'[x] == y[x] (1 - y[x]), y, x, IncludeSingularSolutions -> True]DSolve[Derivative[1][y][x] == (1 - y[x])*y[x], y, x, IncludeSingularSolutions -> True]Plot[Table[(E^x/E^x + E^c), {c, -10, 10}]//Evaluate, {x, -20, 20}, PlotRange -> All]-Graphics-Tutte le ricette · Guida delle funzioni · Usa questo da un client MCP