Simple Linear Regression models the linear relationship between:
- A predictor variable \(X\) (independent)
- A response variable \(Y\) (dependent)
It is one of the most foundational tools in statistics and machine learning
Sort of like fitting the best fitting line through a scatter plot of data points
Applications in Computer Science:
- Predicting execution time from input size
- Estimating memory usage from data volume
- Modeling latency vs. server load