Slope Calculators
0 calculators tagged with “Slope”
All Calculators
No calculators found for this topic.
Slope Formula
m = (y₂ − y₁) / (x₂ − x₁) = Δy / Δx = rise / run
- Positive slope (m > 0): line rises left to right
- Negative slope (m < 0): line falls left to right
- m = 0: horizontal line
- Undefined: vertical line
Slope-Intercept Form
y = mx + b — m = slope; b = y-intercept
Slope in Scientific Contexts
Standard Curve / Calibration
Slope = ΔA / ΔC — assay sensitivity. Higher slope = more sensitive (larger signal change per concentration unit). Unknown concentration = (Signal − intercept) / slope.
Beer-Lambert Law
A = εcl — at constant path length, slope of A vs. c = ε × l (molar absorptivity × path length).
Lineweaver-Burk Plot (Enzyme Kinetics)
1/v = (Km/Vmax) × (1/[S]) + 1/Vmax → slope = Km/Vmax.
Bacterial Growth
ln(N) vs. time: slope = r (intrinsic growth rate). g = ln(2)/r = 0.693/r.
Terrain
% grade = (rise/run) × 100. A 5% slope rises 5 m per 100 m horizontal.
Linear Regression Slope
Least squares: m = [nΣ(xy) − ΣxΣy] / [nΣ(x²) − (Σx)²]
In practice: Excel SLOPE(); R lm(); Python scipy.stats.linregress().
Glossary
Frequently Asked Questions
Slope (m) = (y₂ − y₁)/(x₂ − x₁) = rise/run. It measures the steepness and direction of a line. Positive: line rises left to right. Negative: falls. Zero: horizontal. Undefined: vertical. Example: through points (2, 5) and (6, 13): m = (13−5)/(6−2) = 8/4 = 2. The line rises 2 units in y for every 1 unit increase in x.
A standard curve plots signal vs. known concentrations. Slope = sensitivity: signal change per unit concentration. Higher slope = more sensitive assay. Unknown concentration = (measured signal − intercept) / slope. In ELISA, Bradford, and spectrophotometric assays, this linear relationship is used daily to back-calculate concentrations from absorbance or fluorescence readings.
When growth is plotted as ln(N) vs. time, slope = intrinsic growth rate r (per unit time). N(t) = N₀e^(rt) → ln(N) = ln(N₀) + rt — linear with slope r. Generation time g = ln(2)/r ≈ 0.693/r. Plotting on log₁₀ scale gives slope = log₁₀(2)/g = 0.301/g. Faster-growing cultures have steeper slopes.
The Lineweaver-Burk plot linearizes Michaelis-Menten kinetics: 1/v = (Km/Vmax)(1/[S]) + 1/Vmax. Slope = Km/Vmax; y-intercept = 1/Vmax; x-intercept = −1/Km. Competitive inhibitors increase slope (increase apparent Km) while Vmax unchanged; noncompetitive inhibitors increase y-intercept (decrease Vmax) while slope changes proportionally.