Simplify Your Workflow: Search MiniWebtool.
Add Extension
Related Tools
3D Distance Calculator3D Surface PlotterAdjacency Matrix CalculatorComplex Number CalculatorEigenvalue and Eigenvector CalculatorFirst-Order ODE SolverFunction GrapherGroup Theory Order CalculatorInteractive Unit Circle VisualizerL-System Fractal Generator
Home Page > Math > Calculus > Direction Field / Slope Field Plotter

Direction Field / Slope Field Plotter

Plot the slope field of any first-order ODE y' = f(x, y) over a custom x-y region. Click the canvas to spawn new solution curves, watch particles flow along the field, and see equilibrium nullclines โ€” rendered as a pure SVG you can save or share.

Direction Field / Slope Field Plotter
y' =
Use x and y, operators + - * / ^, and functions sin, cos, tan, exp, ln, log, sqrt, abs. Constants pi and e are available.
min
max
min
max
Each initial condition spawns one RK4 solution curve. After plotting, you can also click the canvas to add more.

Embed Direction Field / Slope Field Plotter Widget

About Direction Field / Slope Field Plotter

The Direction Field / Slope Field Plotter visualizes the geometry of any first-order ordinary differential equation y' = f(x, y) without solving it analytically. At every point on a customizable grid it draws a small tangent segment whose slope equals f(x, y), revealing entire families of solution curves at a glance. An interactive SVG canvas lets you click to spawn RK4-integrated solution curves, animate particles flowing along the field, and export the result as a publication-ready image.

What Is a Direction Field?

Given a first-order ODE y' = f(x, y), a direction field (also called a slope field) is a grid of short line segments placed at regularly spaced points (xi, yj). Each segment has slope f(xi, yj), which is the tangent slope of any solution curve passing through that point. Because solutions must stay tangent to the field everywhere they go, the overall picture shows you the qualitative behavior of the ODE โ€” attractors, repellers, equilibrium lines, oscillations โ€” before you ever write down an explicit formula.

y' = dy/dx = f(x, y) โ†’ draw segment at (x, y) with slope f(x, y)

The technique was popularized in the early 20th century as part of the qualitative theory of differential equations, and it is now a standard pedagogical tool in every introductory ODE course.

Why This Plotter Is Different

Feature This tool Typical online plotter
Click-to-trace curves Tap anywhere to drop a new RK4 solution starting there Fixed set of curves; must re-submit a form
Flow animation Particles flow along the field in real time Static image only
Slope-magnitude coloring Log-scaled gradient reveals nullclines and stiff regions Single color throughout
Vector export Save-as SVG for infinite-zoom graphics Raster PNG only
Hover readout Shows (x, y) and slope under the cursor No live feedback

How Solution Curves Are Computed

For each initial condition (xโ‚€, yโ‚€) you supply, the tool integrates the ODE using the classical fourth-order Runge-Kutta (RK4) method. RK4 samples the slope four times per step โ€” once at the beginning, twice in the middle, and once at the end โ€” and combines them in a weighted average:

kโ‚ = f(x, y) kโ‚‚ = f(x + h/2, y + hยทkโ‚/2) kโ‚ƒ = f(x + h/2, y + hยทkโ‚‚/2) kโ‚„ = f(x + h, y + hยทkโ‚ƒ) yn+1 = yn + (h/6)(kโ‚ + 2kโ‚‚ + 2kโ‚ƒ + kโ‚„)

RK4 has local truncation error O(h5) and global error O(h4), so it converges to the true solution four times faster than Euler's method as the step size shrinks. The plotter integrates both forward and backward from (xโ‚€, yโ‚€), so the curve extends to both sides of the initial point and fills the entire visible region.

Reading the Plot

Equilibrium lines and nullclines

Wherever the segments become horizontal, you are on a nullcline โ€” the curve where f(x, y) = 0. In an autonomous ODE y' = g(y), constant nullclines are equilibrium solutions; the coloring makes them easy to spot as blue horizontal bands.

Stable vs unstable equilibria

At a stable equilibrium, neighbouring solutions curl back toward it: arrows above point down, arrows below point up. At an unstable equilibrium the opposite happens. For y' = y(1 โˆ’ y), y = 1 is stable and y = 0 is unstable โ€” you can see this instantly in the logistic preset.

Steep regions and stiffness

Red segments mark places where |f(x, y)| is large, so solutions change rapidly there. If your plot is dominated by red, the equation is stiff in that region and any numerical integrator will need a small step size to stay accurate.

Input Formats Accepted

1. Differential equation

Anything that parses as a valid math expression using x and y. Common examples: y - x, x*y, sin(x) - y, exp(-x^2) + y, y*(1-y). The caret ^ is converted to ** automatically.

2. Domain

Four numbers for the x and y ranges. Square domains give the most readable plots; if one axis is much longer, the tangent segments will look distorted even though the slope values are correct.

3. Initial conditions

A semicolon- or newline-separated list of x, y pairs. Each pair becomes one RK4 solution curve. Up to 8 initial conditions are accepted; additional curves can be added interactively by clicking on the plot.

How to Use This Plotter

  1. Enter the right-hand side of y' = f(x, y) in the expression field, or pick one of the six preset examples to see classic behavior.
  2. Set the x and y range. Start with a square region centered near the interesting behavior, then zoom in by resubmitting with a tighter range.
  3. List initial conditions as x, y pairs separated by semicolons. You can also leave this blank and add curves after plotting.
  4. Click Plot Direction Field. The SVG renders instantly with slope segments, color-coded magnitude, and any solution curves you specified.
  5. Interact: click or tap anywhere on the canvas to add more solution curves, hover to read off (x, y, slope), press Animate flow to see particles stream along the field, or Save SVG to export.

Worked Example

Take the classic equation y' = y โˆ’ x. The nullcline is the line y = x, where the slope is zero. Above this line the slope is positive (arrows point up), and below it the slope is negative (arrows point down), so every solution curve is asymptotically pushed away from y = x in the vertical direction.

y' = y โˆ’ x โ†’ nullcline: y = x general solution: y = x + 1 + Cยทex

The plotter confirms this geometry visually: all trajectories except the particular solution y = x + 1 blow up exponentially, and the coloring turns the line y = x into a clear blue streak where slopes vanish.

Common Use Cases

Limitations

The tool handles first-order explicit ODEs only โ€” systems like dy/dx = f(x, y), dz/dx = g(x, y, z) require a phase-portrait tool. Implicit equations F(x, y, y') = 0 must be rewritten in the form y' = f(x, y) before plotting. Near singularities (points where f(x, y) is infinite or undefined), the grid is sparse and RK4 traces stop cleanly rather than extrapolating.

Frequently Asked Questions

What is a direction field (slope field)?

A direction field or slope field is a grid of short line segments placed at regularly spaced points in the x-y plane. At each point (x, y) the segment has slope equal to f(x, y), the right-hand side of a first-order ODE y' = f(x, y). Solution curves of the ODE must be tangent to the segments at every point, which lets you visualize entire families of solutions without solving the equation analytically.

How does the tool draw solution curves?

For every initial condition you provide, the tool integrates the ODE numerically using the classical fourth-order Runge-Kutta (RK4) method with a small step size. RK4 evaluates the slope four times per step and combines them with a weighted average to produce a trajectory that is accurate to O(h^4). The curve is traced both forward and backward from the starting point until it leaves the plot region or the slope becomes infinite.

What functions can I use in the expression?

You can use the arithmetic operators + - * / ^ together with the variables x and y, plus trigonometric functions (sin, cos, tan, asin, acos, atan), hyperbolic functions (sinh, cosh, tanh), exponential and logarithmic functions (exp, ln, log, log10), square root (sqrt), absolute value (abs), and the constants pi and e. Example valid expressions include y - x, x*y, sin(x)*cos(y), and exp(-x^2) + y.

What does the color mean?

When Color by |slope| is selected, each slope segment is colored by the magnitude of the slope at that point using a logarithmic scale. Blue indicates a small slope (nearly horizontal flow), and red indicates a large slope (nearly vertical flow). This reveals features such as equilibrium lines, stiff regions, and attractors at a glance.

What is a nullcline and why does it matter?

A nullcline is the set of points where f(x, y) = 0, so the slope field is horizontal along the nullcline. In an autonomous ODE, nullclines often contain equilibrium solutions; in non-autonomous equations they mark turning points of solutions. The tool highlights these regions with nearly horizontal blue segments when Color by slope is on.

Can I use this tool on mobile?

Yes. The layout adapts to small screens and the SVG plot uses touch events, so you can tap anywhere on the canvas to add a new solution curve. All computations are performed server-side so the tool works identically on phones, tablets, and desktops.

Further Reading

Reference this content, page, or tool as:

"Direction Field / Slope Field Plotter" at https://MiniWebtool.com/direction-field-slope-field-plotter/ from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: Apr 22, 2026

You can also try our AI Math Solver GPT to solve your math problems through natural language question and answer.

Calculus:

Top & Updated:

Random PickerRandom Name PickerInstagram User ID LookupImage ResizerLine CounterFPS ConverterRelative Standard Deviation CalculatorSort NumbersRemove SpacesFacebook User ID LookupMAC Address GeneratorBatting Average CalculatorWord to Phone Number ConverterERA CalculatorMAC Address LookupSlope and Grade CalculatorFeet and Inches to Cm ConverterSum CalculatorRandom Quote Generator๐Ÿ“ท OCR / Image to TextMercury Retrograde CalendarPercent Off Calculatorโฌ› Aspect Ratio CalculatorSun, Moon & Rising Sign Calculator ๐ŸŒž๐ŸŒ™โœจInvisible Text GeneratorSHA256 Hash GeneratorMerge VideosRandom Credit Card GeneratorRandom Truth or Dare GeneratorBroken Link CheckerAudio SplitterMaster Number CalculatorMP3 LooperRandom IMEI GeneratorNumber of Digits CalculatorCompound Growth CalculatorVertical Jump CalculatorRandom Superpower Generator๐Ÿ–ฑ๏ธ Click CounterOPS CalculatorBitwise CalculatorRandom Poker Hand GeneratorLog Base 10 CalculatorRandom Birthday GeneratorCm to Feet and Inches ConverterWord Ladder GeneratorFile Size ConverterRandom Activity GeneratorRoman Numerals ConverterPhone Number ExtractorSquare Root (โˆš) CalculatorSaturn Return CalculatorRandom Fake Address GeneratorYouTube Channel StatisticsOctal CalculatorRandom Movie PickerSalary Conversion CalculatorCaffeine Overdose CalculatorBattery Life CalculatorImage SplitterNumber to Word ConverterCompare Two StringsSun Position CalculatorText FormatterRandom Meal GeneratorIP Subnet CalculatorRandom Writing Prompt GeneratorOn Base Percentage CalculatorWeight Loss CalculatorAI Text HumanizerSlugging Percentage CalculatorHalfway Date CalculatorAdd Text to Image๐Ÿ“… Date CalculatorDecimal to BCD ConverterName RandomizerVideo to Image ExtractorStair CalculatorSHA512 Hash GeneratorBcrypt Hash Generator / CheckerTime Duration CalculatorRandom Loadout GeneratorBinary to Gray Code ConverterQuotient and Remainder CalculatorRemove AccentLong Division CalculatorVideo CompressorProportion CalculatorRemove Lines Containing...Cone Flat Pattern (Template) GeneratorMartingale Strategy CalculatorFirst n Digits of PiList of Prime NumbersPercent Growth Rate CalculatorWAR CalculatorBCD to Decimal ConverterGray Code to Binary ConverterRatio to Percentage CalculatorDistance Between Two Points CalculatorRandom Emoji GeneratorCM to Inches ConverterDay of the Year Calculator - What Day of the Year Is It Today?Bingo Card GeneratorRandom Group GeneratorConnect the Dots GeneratorAPI TesterYouTube Tag ExtractorArc Length CalculatorEmail ExtractorAcreage CalculatorBreak Line by CharactersLeap Years ListFlip VideoMD5 Hash GeneratorLunar Calendar ConverterSmall Text Generator โฝแถœแต’แต–สธ โฟ แต–แตƒหขแต—แต‰โพNumber ExtractorRandom User-Agent GeneratorAstrological Element Balance CalculatorWhat is my Lucky Number?๐ŸŽฐ Gacha Pity CalculatorDMS to Decimal Degrees ConverterWhat is my Zodiac Sign?Word Scramble GeneratorRandom Chord GeneratorAI Language DetectorIP Address to Hex ConverterBolt Torque CalculatorModulo CalculatorWHIP CalculatorLove Compatibility CalculatorSocial Media Username CheckerOutlier CalculatorLottery Number GeneratorVideo SplitterHebrew Calendar ConverterRandom Tournament Bracket GeneratorSourdough CalculatorAdd Prefix and Suffix to TextMolarity CalculatorDecibel (dB) CalculatorDay of Year CalendarImage CompressorAdjust Video SpeedRandom Object GeneratorPercentile CalculatorBinary to BCD ConverterRandom Number PickerURL ExtractorBeer Chill Time CalculatorMAC Address AnalyzerTrigonometric Equation Solver1099 Tax CalculatorHelium Balloon Lift CalculatorPER Calculator๐Ÿ”Š Tone GeneratorDestiny Number CalculatorAI ParaphraserRandom Math Problem GeneratorPVIFA CalculatorReverse VideoRandom Name GeneratorLED Resistor CalculatorRandom Chess Opening GeneratorRandom Time GeneratorText RepeatColor InverterList RandomizerEffect Size CalculatorRemove Audio from VideoHTML CompressorSum of Positive Integers CalculatorHypotenuse CalculatorMiter Angle CalculatorPercent to PPM ConverterPercentage Increase Calculator๐Ÿ” Plagiarism CheckerPVIF CalculatorHeight Percentile CalculatorReverse TextSort Text By Length๐Ÿ’ง Dew Point CalculatorName Number CalculatorRatio CalculatorYouTube Earnings EstimatorBoiling Point CalculatorRemove Leading Trailing SpacesSquare Numbers ListRandomize NumbersAmortization CalculatorMegapixel to Print Size Calculatorโš”๏ธ DPS CalculatorDecking CalculatorFirst n Digits of eImpermanent Loss CalculatorDirection Field / Slope Field PlotterEstimation CalculatorAI Punctuation AdderSort Lines AlphabeticallyHex to BCD ConverterBCD to Binary ConverterBCD to Hex ConverterMedian CalculatorStandard Error CalculatorAverage CalculatorActual Cash Value CalculatorScientific Notation to Decimal ConverterAngel Number CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderLbs to Kg ConverterHex to Decimal ConverterConvolution CalculatorRandom String GeneratorMarkup CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterTwitter/X Timestamp ConverterYouTube Watch Time CalculatorTwitch Earnings CalculatorYouTube Shorts Monetization CalculatorFacebook Ad Cost CalculatorSocial Media ROI CalculatorSocial Media Post Time OptimizerCTR CalculatorROAS CalculatorInfluencer ROI CalculatorForce CalculatorAcceleration CalculatorVelocity CalculatorMomentum CalculatorProjectile Motion CalculatorKinetic Energy CalculatorPotential Energy CalculatorWork and Power CalculatorDensity CalculatorPressure CalculatorIdeal Gas Law CalculatorFree Fall CalculatorTorque CalculatorHorsepower CalculatorDilution CalculatorChemical Equation BalancerStoichiometry CalculatorPercent Yield CalculatorEmpirical Formula CalculatorTitration CalculatorMole/Gram/Particle ConverterIrregular Polygon Area CalculatorFrustum CalculatorTorus Calculator3D Distance CalculatorGreat Circle Distance CalculatorCircumscribed Circle (Circumcircle) CalculatorInscribed Circle (Incircle) CalculatorAngle Bisector CalculatorTangent Line to Circle CalculatorHeron's Formula CalculatorCoordinate Geometry Distance CalculatorVolume of Revolution CalculatorSurface of Revolution CalculatorParametric Curve GrapherRiemann Sum CalculatorTrapezoidal Rule CalculatorSimpson's Rule CalculatorImproper Integral CalculatorL'Hรดpital's Rule CalculatorMaclaurin Series CalculatorPower Series CalculatorSeries Convergence Test CalculatorInfinite Series Sum CalculatorAverage Rate of Change CalculatorInstantaneous Rate of Change CalculatorRelated Rates SolverOptimization Calculator (Calculus)Gradient Calculator (Multivariable)Divergence CalculatorCurl CalculatorLine Integral CalculatorSurface Integral CalculatorJacobian Matrix CalculatorNewton's Method CalculatorRREF Calculator (Row Echelon Form)Matrix Inverse CalculatorMatrix Multiplication CalculatorDot Product CalculatorCross Product CalculatorVector Magnitude CalculatorUnit Vector CalculatorAngle Between Vectors CalculatorNull Space CalculatorColumn Space CalculatorCramer's Rule CalculatorMatrix Diagonalization CalculatorQR Decomposition CalculatorCholesky Decomposition CalculatorMatrix Power CalculatorCharacteristic Polynomial CalculatorBayes' Theorem CalculatorF-Test / F-Distribution CalculatorHypergeometric Distribution CalculatorNegative Binomial Distribution CalculatorGeometric Distribution CalculatorExponential Distribution CalculatorWeibull Distribution CalculatorBeta Distribution CalculatorSpearman Rank Correlation CalculatorFisher's Exact Test CalculatorContingency Table CalculatorOdds Ratio CalculatorBernoulli Equation CalculatorHeat Transfer CalculatorThermal Expansion CalculatorSpecific Heat Capacity CalculatorGear Ratio Calculator (Mechanical)Pulley System CalculatorHydraulic Cylinder Force CalculatorBelt Length CalculatorCloset Capsule CalculatorStorage Unit Size CalculatorMoving Box Quantity CalculatorGift Card Tip CalculatorGas vs Electric Cost ComparisonPrint Cost CalculatorHair Dye Mixing CalculatorLaundry Detergent Dosage CalculatorDishwasher Load OptimizerTile Grout CalculatorPaint Color Mixing CalculatorFlashcard Spaced Repetition SchedulerLearning Curve CalculatorCornell Notes GeneratorVocabulary Quiz GeneratorLanguage Learning Hours to Fluency CalculatorCollege Cost CalculatorScholarship ROI CalculatorAI Recipe Generator (From Ingredients)AI Gift Idea GeneratorAI Meal Plan GeneratorAI Workout Plan GeneratorAI Reading List GeneratorAI Travel Itinerary GeneratorAI Excuse Generator (Polite)AI Apology Letter WriterAI Unit Converter (Natural Language)AI Resume / CV AnalyzerAI Text Tone AnalyzerAI Data Visualizer (Paste CSV)AI Regex GeneratorAI SQL Query GeneratorPaycheck Calculator (Take-Home Pay)VA Loan CalculatorARM Mortgage CalculatorBiweekly Mortgage Payment CalculatorPMI CalculatorMortgage Points CalculatorBalloon Loan CalculatorInterest-Only Mortgage CalculatorConstruction Loan CalculatorLand Loan CalculatorBoat Loan CalculatorRV Loan CalculatorMotorcycle Loan CalculatorCar Affordability CalculatorOut-the-Door Price CalculatorRent Affordability CalculatorProrated Rent CalculatorRent Increase CalculatorMileage Reimbursement CalculatorPer Diem CalculatorInvoice GeneratorSalary Raise CalculatorSeverance Pay CalculatorHSA Calculator529 College Savings CalculatorI Bond CalculatorT-Bill CalculatorCD Ladder CalculatorCredit Utilization CalculatorLoan Comparison CalculatorGross-Up CalculatorSWP CalculatorRD CalculatorPPF CalculatorEPF CalculatorNPS CalculatorGratuity CalculatorHRA Exemption CalculatorUK Stamp Duty CalculatorZakat CalculatorTithe CalculatorBetting Odds ConverterPayPal Fee CalculatorStripe Fee CalculatorEtsy Fee CalculatoreBay Fee CalculatorAmazon FBA CalculatorShopify Profit CalculatorWholesale Price CalculatorCraft Pricing CalculatorDepreciation CalculatorEOQ CalculatorReorder Point CalculatorSafety Stock CalculatorFIFO / LIFO CalculatorContribution Margin CalculatorWorking Capital CalculatorCost Per Lead CalculatorEmail Marketing ROI CalculatorTip Pooling CalculatorWeek Number CalculatorAnniversary CalculatorHalf Birthday CalculatorSobriety CalculatorRetirement CountdownDate to Roman Numerals ConverterSunrise & Sunset CalculatorMoon Phase CalculatorNap CalculatorWorld ClockJulian Date ConverterISO 8601 Date FormatterChinese Gender PredictorImplantation CalculatorIVF Due Date CalculatorhCG Doubling Time CalculatorChild Height PredictorChild BMI Percentile CalculatorBaby Eye Color PredictorBaby Name Generator