Standard Curve Fitting Tool

Generate standard curves for analytical methods. Fit regression models and predict unknown concentrations.

Linear Regression
Quadratic
Logarithmic

Standard Points

Enter known concentration and response values for your standards

Unknown Samples

Enter response values for unknown samples to calculate concentrations

Confidence Interval

Calculating Standard Curve...
Standard Curve Results

Understanding Standard Curves

A standard curve is a type of graph used in analytical chemistry to determine the concentration of a substance in an unknown sample by comparing it to a set of standard samples with known concentrations.

Key Insight: Standard curves are essential in quantitative analysis methods like spectroscopy, chromatography, and immunoassays. They establish the relationship between the measured response and the concentration of the analyte.

Algorithm Improvements

1

Enhanced Quadratic Regression: Now uses QR decomposition for improved numerical stability and accuracy, especially for ill-conditioned datasets.

2

Additional Statistical Metrics: Added adjusted R², standard errors, confidence intervals, and prediction intervals for comprehensive analysis.

3

Math.js Integration: Utilizes the math.js library for higher precision mathematical operations and matrix calculations.

New Statistical Metrics

  • Adjusted R²: Accounts for the number of predictors in the model, providing a more accurate measure of fit for multiple regression
  • Standard Error of Estimate: Measures the typical distance between observed values and the regression line
  • Confidence Intervals: Provides range estimates for regression coefficients and predicted values
  • Prediction Intervals: Estimates the range where future observations are likely to fall
  • F-statistic: Tests the overall significance of the regression model

Best Practices for Standard Curves

  • Use at least 5-6 standard points for reliable curve fitting
  • Ensure standards cover the expected concentration range of unknowns
  • Include a blank (zero concentration) standard
  • Prepare standards in the same matrix as the samples
  • Run standards and samples under identical conditions
  • Check for outliers and evaluate curve fit quality
  • Verify the curve with quality control samples

Practical Application: Standard curves are fundamental to quantitative analysis across many scientific disciplines. A well-constructed standard curve ensures accurate and precise concentration measurements, which is critical for research, diagnostic testing, and regulatory compliance.

Frequently Asked Questions

For a linear regression, a minimum of 3 points is mathematically required, but 5-6 points are recommended for reliable results. More points provide better estimation of the curve and allow for detection of outliers or non-linearity.

For most quantitative analytical methods, an R² value of 0.99 or higher is considered acceptable. For screening methods, values as low as 0.95 might be acceptable. The required R² depends on the application and the required precision.

Generally, no. Forcing the curve through zero can introduce bias unless you have strong theoretical reasons to believe the intercept should be zero. In practice, most methods have a small non-zero intercept due to background signal or matrix effects.

If linear regression doesn't provide a good fit, try quadratic or logarithmic models. You can also consider transforming the data (e.g., log transformation) or using weighted regression if variance increases with concentration. For immunoassays, a 4- or 5-parameter logistic model is often appropriate.

First, check if the outlier is due to a measurement error or preparation mistake. If possible, repeat the measurement. Use statistical tests like Grubbs' test to identify significant outliers. If an outlier is confirmed to be erroneous, it can be excluded from the curve fitting. However, be cautious not to exclude points simply because they don't fit your expected model.