How to plot this direction field in Maple.

397 Views Asked by At

$y^{\prime}=ay+b$ where $a,b$ are positive numbers.

I know how to plot this if I have exact values for both $a$ and $b$, but how to see the difference as either/both $a$ and $b$ change?

I understand the problem mathematically, but how to show this with maple.

1

There are 1 best solutions below

2
On BEST ANSWER
restart:    
Explore(
     DEtools[dfieldplot](diff(y(x),x) = a*y(x)+b, y(x), x= -2..2, y= -2..2),
     parameters= [a= 0.0..2.0, b= 0.0..2.0]
);

Then use your mouse to control the sliders for $a$ and $b$.