🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 135 (from laksa063)

2. Crawled Status Check

Query:
Response:

3. Robots.txt Check

Query:
Response:

4. Spam/Ban Check

Query:
Response:

5. Seen Status Check

ℹ️ Skipped - page is already crawled

📄
INDEXABLE
CRAWLED
27 days ago
🤖
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH0.9 months ago
History dropPASSisNull(history_drop_reason)No drop reason
Spam/banPASSfh_dont_index != 1 AND ml_spam_score = 0ml_spam_score=0
CanonicalPASSmeta_canonical IS NULL OR = '' OR = src_unparsedNot set

Page Details

PropertyValue
URLhttps://testbook.com/maths/exponential-smoothing
Last Crawled2026-03-09 23:47:18 (27 days ago)
First Indexed2023-04-29 09:05:41 (2 years ago)
HTTP Status Code200
Meta TitleExponential Smoothing: Learn Formula, Method, and Solved Examples
Meta DescriptionLearn about Exponential Smoothing in this article, its formula, its methods like Single, Double and Triple Exponential Smoothing, uses, and solved examples
Meta Canonicalnull
Boilerpipe Text
Exponential smoothing is a way of smoothing out the data by removing much of the noise from the data to give a better forecast. It was proposed in the late 1950s (Brown, 1959; Holt, 1957; Winters, 1960), and has some of the most successful forecasting methods in statistics . Forecasts produced using exponential smoothing methods are weighted averages of past observations, with weights decaying exponentially on the observations which get older. In this article we will discuss Exponential Smoothing in detail under types of statistics . Exponential Smoothing Exponential smoothing is a powerful technique used to forecast univariate time series data. It operates on the fundamental principle that a prediction is formed by combining past observations or lags, giving more weight to recent data while gradually diminishing the importance of older observations. This weight allocation follows an exponential decay pattern, enabling the model to adapt dynamically to changes in the underlying patterns of the data. By assigning exponentially decreasing weights to historical data points, exponential smoothing captures both short-term fluctuations and long-term trends, allowing for accurate and flexible forecasting. This method is particularly beneficial when dealing with time series data that exhibits seasonality, trends, or irregular patterns. One of the strengths of exponential smoothing is its simplicity and interpretability. The model parameters, such as the smoothing factor or the initial values, can be easily understood and adjusted to suit the characteristics of the data. Moreover, exponential smoothing provides a balance between responsiveness to recent changes and stability, making it a valuable tool for generating reliable forecasts. There are different types of Exponential Smoothing such as listed below. Simple Moving Average (SMA), Exponential Smoothing (SES), Autoregressive Integrated Moving Average (ARIMA), Neural Network (NN), Croston Exponential Smoothing Formula We normally use Single Exponential Smoothing. The formula is mentioned below. s t = α x t + ( 1 − α ) s t − 1 = s t − 1 + α ( x t − s t − 1 ) Where, s t = smoothed statistic, s t − 1 = previous smoothed statistic, α = smoothing factor of data which is 0 < α < 1 t = time period Exponential Smoothing Hyperparameters Hyperparameters are parameters that need to be specified before applying a statistical model. In the context of exponential smoothing, there are two main hyperparameters to consider: the smoothing factor (α) and the initial smoothed value. Smoothing Factor (α) : The smoothing factor, denoted as α (alpha), is a hyperparameter that determines the weight given to the most recent observations. It lies between 0 and 1. A smaller α gives more weight to older data, while a larger α emphasizes recent data. The choice of α depends on the characteristics of the data and the desired level of responsiveness to recent changes. For example, let's consider monthly sales data for a product. If the sales data is stable with minimal fluctuations, a larger α (e.g., 0.9) may be suitable as it gives more weight to recent observations and quickly captures any changes in the trend. On the other hand, if the sales data is volatile or exhibits seasonal patterns, a smaller α (e.g., 0.1) might be preferable to smooth out the variations and provide a more stable forecast. Initial Smoothed Value: The initial smoothed value is another hyperparameter that needs to be determined. It represents the smoothed value for the first observation in the data set. The choice of the initial smoothed value can have an impact on the subsequent smoothed values and forecasts. There are different approaches to setting the initial smoothed value. One option is to use the first observation itself as the initial smoothed value. Alternatively, you can calculate the average of a few initial observations to obtain a more stable starting point. For example, if we have monthly sales data, the initial smoothed value can be set as the first observed sales value. This assumes that the initial value is a reasonable representation of the underlying trend. Seasonal Smoothing Factor (β): If the data exhibits seasonality, where patterns repeat over fixed intervals, a seasonal smoothing factor (β) can be introduced. This hyperparameter determines the weight given to the seasonal component of the data. It is used in models such as Holt-Winters' exponential smoothing. Trend Smoothing Factor (γ): When there is a noticeable trend in the data, a trend smoothing factor (γ) can be incorporated. This hyperparameter controls the weight assigned to the trend component. Models like Holt-Winters' exponential smoothing with trend use γ to capture and forecast trends in the data. Seasonal Period (m): For data with seasonality, the seasonal period (m) represents the length of the repeating pattern or cycle. It helps in determining the appropriate length of the seasonal components and adjusting the forecasts accordingly. The choice of m is crucial to ensure accurate modelling and forecasting. Seasonal Damping Factor (φ): In some cases, the amplitude of the seasonal variations may decrease over time. The seasonal damping factor (φ) can be introduced to account for this decay in the seasonal pattern. It helps to adjust the seasonal component of the model accordingly. Window Size or Lookback Period: In certain scenarios, a window size or lookback period can be defined to limit the number of historical observations considered in the smoothing process. This hyperparameter allows for more emphasis on recent data while reducing the influence of older observations. It can be particularly useful when the data exhibits non-stationarity or when there are significant changes in the underlying patterns. These additional hyperparameters offer more flexibility and control when configuring exponential smoothing or related time series models. They allow for the incorporation of specific characteristics of the data, such as seasonality and trends, resulting in more accurate forecasts. Exponential Smoothing Method There are three types of Exponential Smoothing method as mentioned below. Single Exponential Smoothing If the data which is observed has no trend and no seasonal pattern, then we use the single exponential smoothing method to forecast the time series. This method uses weighted moving averages with exponentially decreasing weights. The single exponential smoothing formula is given by, s t = α x t + ( 1 − α ) s t − 1 = s t − 1 + α ( x t − s t − 1 ) Where, s t = smoothed statistic, s t − 1 = previous smoothed statistic, α = smoothing factor of data which is 0 < α < 1 t = time period Double Exponential Smoothing It is also known as Holt’s trend corrected or second-order exponential smoothing. This method is used to forecast the time series when the data has a linear trend with no seasonal pattern. We use the double exponential smoothing to introduce a term considering the possibility of a series indicating some form of trend. This slope component is itself formed through exponential smoothing. The formula for Double Exponential Smoothing is mentioned below. Where, s t = α x t + ( 1 − α ) s t − 1 = s t − 1 + α ( x t − s t − 1 ) β t = β ( s t − s t − 1 ) + ( 1 − β ) b t − 1 s t − 1 = previous smoothed statistic, α = smoothing factor of data which is 0 < α < 1 t = time period b t = best estimate of trend at time t β trend smoothing factor which is 0 < β < 1 Triple Exponential Smoothing In this method, exponential smoothing is used three times. It is mainly used to forecast the time series when the data has both linear trend and seasonal patterns. It is also known as Holt-Winters exponential smoothing. The formula for Triple Exponential Smoothing is mentioned below. S t = α y t I t − L + ( 1 − α ) ( S t − 1 + b t − 1 ) b t = γ ( S t – S t − 1 ) + ( 1 – γ ) b t − 1 I t = β y t S t + ( 1 – β ) I t − L F t + m = ( S t + m b t ) I t − L + m Where, y is the observation S is the smoothed observation B is the trend factor I is the seasonal index F is the forecast at m periods ahead T is an index denoting a time period Learn about Negation of a Statement How to Configure Exponential Smoothing Exponential smoothing is a technique used in time series analysis to forecast future values based on historical data. It is particularly useful when the data shows a trend or seasonality. Here's a step-by-step guide on how to configure exponential smoothing: Step 1: Gather the historical data. Collect the relevant data points over a specific time period. For example, let's consider monthly sales data for a product for the past year. Step 2: Choose the smoothing factor. The smoothing factor, denoted as α (alpha), determines the weight given to the most recent observations. It lies between 0 and 1. A smaller α gives more weight to older data, while a larger α emphasizes recent data. The choice of α depends on the characteristics of the data and the desired level of responsiveness to recent changes. Step 3: Calculate the initial smoothed value. To begin, we need an initial smoothed value. This can be the first observation in the data set or the average of a few initial values. For example, let's assume the initial smoothed value is the first observed sales value. Step 4: Calculate the smoothed values. Starting from the second observation, we calculate the smoothed value using the formula: Smoothed Value(t) = α * Observation(t) + (1 - α) * Smoothed Value(t-1) Here, Observation(t) represents the actual value at time t, and Smoothed Value(t-1) is the smoothed value from the previous time period. Step 5: Repeat the process for subsequent observations. Continue calculating the smoothed values for each observation until you reach the end of the data set. Step 6: Use the smoothed values for forecasting. Once you have the smoothed values, you can use them to forecast future values based on the underlying trend and seasonality patterns. Example: Let's say we have the following monthly sales data for a product: January: 100 units February: 120 units March: 115 units April: 130 units May: 135 units Assuming an initial smoothed value of 100 units and a smoothing factor (α) of 0.3, we can calculate the smoothed values as follows: February: Smoothed Value(2) = 0.3 * 120 + 0.7 * 100 = 108 March: Smoothed Value(3) = 0.3 * 115 + 0.7 * 108 = 109.95 April: Smoothed Value(4) = 0.3 * 130 + 0.7 * 109.95 = 117.9855 May: Smoothed Value(5) = 0.3 * 135 + 0.7 * 117.9855 = 121.19085 These smoothed values can be used to forecast sales for future months. Exponential Smoothing in Python Python code for single, double, and triple exponential smoothing. These techniques are commonly used in time series forecasting. Here's an example of how to implement them: Single Exponential Smoothing (SES): import pandas as pd from statsmodels.tsa.holtwinters import SimpleExpSmoothing # Example data data = pd.Series([10, 12, 15, 13, 11, 14, 16]) # Apply single exponential smoothing model = SimpleExpSmoothing(data) fitted_model = model.fit() forecast = fitted_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted_model.fittedvalues) print("Forecast:", forecast) Double Exponential Smoothing (Holt's Method): import pandas as pd from statsmodels.tsa.holtwinters import ExponentialSmoothing # Example data data = pd.Series([10, 12, 15, 13, 11, 14, 16]) # Apply double exponential smoothing (Holt's method) model = ExponentialSmoothing(data, trend='add') fitted_model = model.fit() forecast = fitted_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted_model.fittedvalues) print("Forecast:", forecast) Triple Exponential Smoothing (Holt-Winters' Method): import pandas as pd from statsmodels.tsa.holtwinters import ExponentialSmoothing # Example data data = pd.Series([10, 12, 15, 13, 11, 14, 16]) # Apply triple exponential smoothing (Holt-Winters' method) model = ExponentialSmoothing(data, trend='add', seasonal='add', seasonal_periods=4) fitted_model = model.fit() forecast = fitted_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted_model.fittedvalues) print("Forecast:", forecast) Make sure to install the statsmodels library if you haven't already (pip install statsmodels). In the code snippets above, we use the statsmodels.tsa.holtwinters module to implement the exponential smoothing methods. We define the data as a pandas Series and pass it to the corresponding model class (SimpleExpSmoothing, ExponentialSmoothing) along with any additional parameters (e.g., trend, seasonal) for double and triple exponential smoothing. We then fit the model, obtain the fitted values (smoothed data), and make future forecasts using the predict method. Uses of Exponential Smoothing Exponential Smoothing is widely used in forecasting applications at different levels such as strategic, tactical and operational. Strategic Level: It is deployed for planning on investment and growth and also for the impact of innovations. Tactical Level: It is implemented for deriving expenditure, inventory concern and customer satisfaction. Operational Level: It is used to make targets, affirmation with standards, and predicting qualities. Exponential Smoothing Solved Examples Problem 1: Find the exponential smoothing forecasts for periods 2-10 using the following data, where α = 0.10 . Assume s 1 = d 1 Week Demand 1 820 2 775 3 680 4 655 5 750 6 802 7 798 8 689 9 775 10 ? Solution: We know the formula for exponential smoothing is given by, s t = s t − 1 + α ( x t − s t − 1 ) Where, s t = forecast value for coming time period, s t − 1 = Forecast value in 1 past time period, α = smoothing factor of data which is 0 < α < 1 t = time period x t = Actual occurrence in the 1 past time period, Now we calculate the following table , Week Demand( x t ) / a l p h a = 0.10 1 820 820 2 775 820 3 680 815 4 655 801.5 5 750 787 6 802 783 7 798 785 8 689 786.3 9 775 776.6 10 ? 776.4 The detailed calculation is given below.. s t = s t − 1 + α ( x t − s t − 1 ) ⇒ s 2 = s 2 − 1 + 0.10 ( x 1 − s 2 − 1 ) = 820 Similarly we get, s 10 = 776.4 , which is the required answer. Testbook is a platform where you can learn new concepts from the very basics and achieve good marks in your exams. You can also prepare for different competitive exams with the help of different mock tests available on this platform Download the TestBook App to access all such features instantly.
Markdown
- [English](https://testbook.com/maths/exponential-smoothing) - [Get Started](https://testbook.com/login?tile=signup&referrerType=CustomChildPage&referrer=customChildPage-exponential-smoothing "Sign Up") - [Exams](https://testbook.com/exams) - [SuperCoaching](https://testbook.com/super-coaching) - [Live Classes FREE](https://testbook.com/free-live-classes) - [Test Series](https://testbook.com/online-test-series) - [Previous Year Papers](https://testbook.com/previous-year-papers) - [Books](https://link.testbook.com/e/books) - [Pass]() [Pass](https://testbook.com/pass) [Pass Pro](https://testbook.com/pass-pro) [Pass Elite](https://testbook.com/pass-elite) - [Pass](https://testbook.com/pass) - [Pass Pro](https://testbook.com/pass-pro) - [Pass Elite](https://testbook.com/pass-elite) - [Rank Predictor](https://testbook.com/rank-predictor) - [IAS Preparation](https://testbook.com/ias-preparation) - [More]() [Free Live Classes](https://testbook.com/free-live-classes) [Free Live Tests & Quizzes](https://testbook.com/free-live-tests-and-quizzes) [Free Quizzes](https://testbook.com/free-online-quizzes) [Previous Year Papers](https://testbook.com/previous-year-papers) [Doubts](https://testbook.com/doubts) [Practice](https://testbook.com/practice-questions) [Refer and Earn](https://testbook.com/referrals) [All Exams](https://testbook.com/exams) [Our Selections](https://testbook.com/success-stories) [Careers](https://testbook.com/careers) [IAS Preparation](https://testbook.com/ias-preparation) [Current Affairs](https://testbook.com/current-affairs) [Global Careers](https://globalcareers.testbook.com/) - [Practice](https://testbook.com/practice-questions) - [GK & Current Affairs](https://testbook.com/current-affairs/current-affairs-quiz) - [Blog](https://testbook.com/blog/) - [Refer & Earn](https://testbook.com/referrals) [Our Selections](https://testbook.com/success-stories) [Global Careers](https://globalcareers.testbook.com/) [Home](https://testbook.com/maths/exponential-smoothing) [Maths](https://testbook.com/maths/maths) Exponential Smoothing ![Exponential Smoothing: Formula, Method, and Solved Examples](https://testbook.com/maths/cdn.testbook.com/resources/productionimages/unnamed_All_1676970969.png) # Exponential Smoothing: Formula, Method, and Solved Examples [Download as PDF](https://testbook.com/login?redirect_url=https%3A%2F%2Ftestbook.com%2Fmaths%2Fexponential-smoothing&referrer=customChildPage-exponential-smoothing&referrerType=CustomChildPage&referrerPagePath=undefined) ![Exponential Smoothing: Formula, Method, and Solved Examples Exam Preparation](https://testbook.com/maths/assets/img/banner-bg/bottom-banner-preparation.svg) Overview Test Series Exponential smoothing is a way of smoothing out the data by removing much of the noise from the data to give a better forecast. It was proposed in the late 1950s (Brown, 1959; Holt, 1957; Winters, 1960), and has some of the most successful forecasting methods in [statistics](https://testbook.com/maths/statistics). Forecasts produced using exponential smoothing methods are weighted averages of past observations, with weights decaying exponentially on the observations which get older. In this article we will discuss Exponential Smoothing in detail under [types of statistics](https://testbook.com/maths/types-of-statistics). ## Exponential Smoothing Exponential smoothing is a powerful technique used to forecast univariate time series data. It operates on the fundamental principle that a prediction is formed by combining past observations or lags, giving more weight to recent data while gradually diminishing the importance of older observations. This weight allocation follows an [exponential decay](https://testbook.com/maths/exponential-decay) pattern, enabling the model to adapt dynamically to changes in the underlying patterns of the data. By assigning exponentially decreasing weights to historical data points, exponential smoothing captures both short-term fluctuations and long-term trends, allowing for [accurate](https://testbook.com/learn/maths-accuracy/) and flexible forecasting. This method is particularly beneficial when dealing with time series data that exhibits seasonality, trends, or irregular patterns. One of the strengths of exponential smoothing is its simplicity and interpretability. The model parameters, such as the smoothing factor or the initial values, can be easily understood and adjusted to suit the characteristics of the data. Moreover, exponential smoothing provides a balance between responsiveness to recent changes and stability, making it a valuable tool for generating reliable forecasts. There are different types of Exponential Smoothing such as listed below. - Simple Moving Average (SMA), - Exponential Smoothing (SES), - Autoregressive Integrated Moving Average (ARIMA), - Neural Network (NN), - Croston [![](https://blogmedia.testbook.com/blog/wp-content/uploads/2026/03/640x400-8-7de615ae.jpg)](https://testbook.com/ugc-net-coaching) [UGC NET/SET Course Online by SuperTeachers: Complete Study Material, Live Classes & MoreGet UGC NET/SET SuperCoaching @ just₹26999₹10499![wallet](https://testbook.com/assets/img/coaching/wallet-2.svg) Your Total Savings ₹16500](https://testbook.com/ugc-net-coaching) [Explore SuperCoaching](https://testbook.com/ugc-net-coaching) Want to know more about this Super Coaching ? Download Brochure ## People also like Prev Next ![Goal Card Image](https://cdn.testbook.com/1772872732164-640X400%20%285%29.png/1772872733.png) Nirnay IAS 2027 - Prarambh (प्रारम्भ) Batch - 2 (Hinglish) ₹110000 (13% OFF) ₹95999 (Valid for 24 Months) [Explore this Supercoaching](https://testbook.com/upsc-cse-coaching) ![Goal Card Image](https://blogmedia.testbook.com/blog/wp-content/uploads/2025/12/640x400-22-1db4e738.jpg) Assistant Professor / Lectureship (UGC) ₹35999 (71% OFF) ₹10499 (Valid for 6 Months) [Explore this Supercoaching](https://testbook.com/assistant-professor-lectureship-ugc-coaching) ![Goal Card Image](https://testbook.com/blog/wp-content/uploads/2026/02/1920x1080-f78f5c57.png) AE & JE - Civil ₹10901 (57% OFF) ₹4769 (Valid for 6 Months + Civil PYP Book) [Explore this Supercoaching](https://testbook.com/ae-je-civil-coaching) ## Exponential Smoothing Formula We normally use Single Exponential Smoothing. The formula is mentioned below. st\=αxt\+(1−α)st−1\=st−1\+α(xt−st−1) s t \= α x t \+ ( 1 − α ) s t − 1 \= s t − 1 \+ α ( x t − s t − 1 ) Where, st\= s t \= smoothed statistic, st−1\= s t − 1 \= previous smoothed statistic, α\= α \= smoothing factor of data which is 0\<α\<1 0 \< α \< 1 t\= t \= time period [![](https://cdn.testbook.com/static/assets/assets/img/media/signup_desktop.webp)](https://testbk.co/1fgwm) [![Pass pro banner mobile](https://cdn.testbook.com/static/assets/assets/img/media/result_blocker_3x.webp)](https://testbk.co/1g48a) ## Exponential Smoothing Hyperparameters Hyperparameters are parameters that need to be specified before applying a [statistical](https://testbook.com/learn/maths-statistics/) model. In the context of exponential smoothing, there are two main hyperparameters to consider: the smoothing factor (α) and the initial smoothed value. **Smoothing Factor (α)**: The smoothing factor, denoted as α (alpha), is a hyperparameter that determines the weight given to the most recent observations. It lies between 0 and 1. A smaller α gives more weight to older data, while a larger α emphasizes recent data. The choice of α depends on the characteristics of the data and the desired level of responsiveness to recent changes. For example, let's consider monthly sales data for a product. If the sales data is stable with minimal fluctuations, a larger α (e.g., 0.9) may be suitable as it gives more weight to recent observations and quickly captures any changes in the trend. On the other hand, if the sales data is volatile or exhibits seasonal patterns, a smaller α (e.g., 0.1) might be preferable to smooth out the variations and provide a more stable forecast. **Initial Smoothed Value:** The initial smoothed value is another hyperparameter that needs to be determined. It represents the smoothed value for the first observation in the data set. The choice of the initial smoothed value can have an impact on the subsequent smoothed values and forecasts. There are different approaches to setting the initial smoothed value. One option is to use the first observation itself as the initial smoothed value. Alternatively, you can calculate the average of a few initial observations to obtain a more stable starting point. For example, if we have monthly sales data, the initial smoothed value can be set as the first observed sales value. This assumes that the initial value is a reasonable representation of the underlying trend. **Seasonal Smoothing Factor (β):** If the data exhibits seasonality, where patterns repeat over fixed intervals, a seasonal smoothing factor (β) can be introduced. This hyperparameter determines the weight given to the seasonal component of the data. It is used in models such as Holt-Winters' exponential smoothing. **Trend Smoothing Factor (γ):** When there is a noticeable trend in the data, a trend smoothing factor (γ) can be incorporated. This hyperparameter controls the weight assigned to the trend component. Models like Holt-Winters' exponential smoothing with trend use γ to capture and forecast trends in the data. **Seasonal Period (m):** For data with seasonality, the seasonal period (m) represents the length of the repeating pattern or cycle. It helps in determining the appropriate length of the seasonal components and adjusting the forecasts accordingly. The choice of m is crucial to ensure accurate modelling and forecasting. **Seasonal Damping Factor (φ):** In some cases, the amplitude of the seasonal variations may decrease over time. The seasonal damping factor (φ) can be introduced to account for this decay in the seasonal pattern. It helps to adjust the seasonal component of the model accordingly. **Window Size or Lookback Period:** In certain scenarios, a window size or lookback period can be defined to limit the number of historical observations considered in the smoothing process. This hyperparameter allows for more emphasis on recent data while reducing the influence of older observations. It can be particularly useful when the data exhibits non-stationarity or when there are significant changes in the underlying patterns. These additional hyperparameters offer more flexibility and control when configuring exponential smoothing or related time series models. They allow for the incorporation of specific characteristics of the data, such as seasonality and trends, resulting in more accurate forecasts. Test Series ![card-icon](https://cdn.testbook.com/resources/production/test_series/Physics_All_1618301495.png) 150\.2k Users NCERT XI-XII Physics Foundation Pack Mock Test 323 Total Tests \| 3 Free Tests English,Hindi - 3 Live Test - 163 Class XI Chapter Tests - 157 Class XII Chapter Tests [View Test Series](https://testbook.com/defence-ncert-physics/test-series) ![card-icon](https://cdn.testbook.com/resources/productionimages/JEE%20Mains%20NTA_All_1610038983.png) 100\.8k Users Physics for Medical Exams Mock Test 74 Total Tests \| 2 Free Tests English - 74 Previous Year Chapter Test [View Test Series](https://testbook.com/neet-physics/test-series) ![card-icon](https://cdn.testbook.com/resources/production/test_series/Quantitative%20apptitude_All_1620047258.png) 70\.5k Users NCERT XI-XII Math Foundation Pack Mock Test 117 Total Tests \| 2 Free Tests English,Hindi - 3 AIM IIT 🎯 - 49 Class XI - 65 Class XII [View Test Series](https://testbook.com/defence-ncert-maths/test-series) ## Exponential Smoothing Method There are three types of Exponential Smoothing method as mentioned below. ### Single Exponential Smoothing If the data which is observed has no trend and no seasonal pattern, then we use the single exponential smoothing method to forecast the time series. This method uses weighted moving averages with exponentially decreasing weights. The single exponential smoothing formula is given by, st\=αxt\+(1−α)st−1\=st−1\+α(xt−st−1) s t \= α x t \+ ( 1 − α ) s t − 1 \= s t − 1 \+ α ( x t − s t − 1 ) Where, st\= s t \= smoothed statistic, st−1\= s t − 1 \= previous smoothed statistic, α\= α \= smoothing factor of data which is 0\<α\<1 0 \< α \< 1 t\= t \= time period ### Double Exponential Smoothing It is also known as Holt’s trend corrected or second-order exponential smoothing. This method is used to forecast the time series when the data has a linear trend with no seasonal pattern. We use the double exponential smoothing to introduce a term considering the possibility of a series indicating some form of trend. This slope component is itself formed through exponential smoothing. The formula for Double Exponential Smoothing is mentioned below. Where, st\=αxt\+(1−α)st−1\=st−1\+α(xt−st−1) s t \= α x t \+ ( 1 − α ) s t − 1 \= s t − 1 \+ α ( x t − s t − 1 ) βt\=β(st−st−1)\+(1−β)bt−1 β t \= β ( s t − s t − 1 ) \+ ( 1 − β ) b t − 1 st−1\= s t − 1 \= previous smoothed statistic, α\= α \= smoothing factor of data which is 0\<α\<1 0 \< α \< 1 t\= t \= time period bt\= b t \= best estimate of trend at time *t* β β trend smoothing factor which is 0\<β\<1 0 \< β \< 1 ### Triple Exponential Smoothing In this method, exponential smoothing is used three times. It is mainly used to forecast the time series when the data has both linear trend and seasonal patterns. It is also known as Holt-Winters exponential smoothing. The formula for Triple Exponential Smoothing is mentioned below. St\=αytIt−L\+(1−α)(St−1\+bt−1) S t \= α y t I t − L \+ ( 1 − α ) ( S t − 1 \+ b t − 1 ) bt\=γ(St–St−1)\+(1–γ)bt−1 b t \= γ ( S t – S t − 1 ) \+ ( 1 – γ ) b t − 1 It\=βytSt\+(1–β)It−L I t \= β y t S t \+ ( 1 – β ) I t − L Ft\+m\=(St\+mbt)It−L\+m F t \+ m \= ( S t \+ m b t ) I t − L \+ m Where, y is the observation S is the smoothed observation B is the trend factor I is the seasonal index F is the forecast at *m* periods ahead T is an index denoting a time period Learn about [Negation of a Statement](https://testbook.com/maths/negation-of-a-statement) ## How to Configure Exponential Smoothing Exponential smoothing is a technique used in time series analysis to forecast future values based on historical data. It is particularly useful when the data shows a trend or seasonality. Here's a step-by-step guide on how to configure exponential smoothing: Step 1: Gather the historical data. Collect the relevant data points over a specific time period. For example, let's consider monthly sales data for a product for the past year. Step 2: Choose the smoothing factor. The smoothing factor, denoted as α (alpha), determines the weight given to the most recent observations. It lies between 0 and 1. A smaller α gives more weight to older data, while a larger α emphasizes recent data. The choice of α depends on the characteristics of the data and the desired level of responsiveness to recent changes. Step 3: Calculate the initial smoothed value. To begin, we need an initial smoothed value. This can be the first observation in the data set or the average of a few initial values. For example, let's assume the initial smoothed value is the first observed sales value. Step 4: Calculate the smoothed values. Starting from the second observation, we calculate the smoothed value using the formula: Smoothed Value(t) = α \* Observation(t) + (1 - α) \* Smoothed Value(t-1) Here, Observation(t) represents the actual value at time t, and Smoothed Value(t-1) is the smoothed value from the previous time period. Step 5: Repeat the process for subsequent observations. Continue calculating the smoothed values for each observation until you reach the end of the data set. Step 6: Use the smoothed values for forecasting. Once you have the smoothed values, you can use them to forecast future values based on the underlying trend and seasonality patterns. Example: Let's say we have the following monthly sales data for a product: January: 100 units February: 120 units March: 115 units April: 130 units May: 135 units Assuming an initial smoothed value of 100 units and a smoothing factor (α) of 0.3, we can calculate the smoothed values as follows: February: Smoothed Value(2) = 0.3 \* 120 + 0.7 \* 100 = 108 March: Smoothed Value(3) = 0.3 \* 115 + 0.7 \* 108 = 109.95 April: Smoothed Value(4) = 0.3 \* 130 + 0.7 \* 109.95 = 117.9855 May: Smoothed Value(5) = 0.3 \* 135 + 0.7 \* 117.9855 = 121.19085 These smoothed values can be used to forecast sales for future months. ## Exponential Smoothing in Python Python code for single, double, and triple exponential smoothing. These techniques are commonly used in time series forecasting. Here's an example of how to implement them: Single Exponential Smoothing (SES): import pandas as pd from statsmodels.tsa.holtwinters import SimpleExpSmoothing \# Example data data = pd.Series(\[10, 12, 15, 13, 11, 14, 16\]) \# Apply single exponential smoothing model = SimpleExpSmoothing(data) fitted\_model = model.fit() forecast = fitted\_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted\_model.fittedvalues) print("Forecast:", forecast) Double Exponential Smoothing (Holt's Method): import pandas as pd from statsmodels.tsa.holtwinters import ExponentialSmoothing \# Example data data = pd.Series(\[10, 12, 15, 13, 11, 14, 16\]) \# Apply double exponential smoothing (Holt's method) model = ExponentialSmoothing(data, trend='add') fitted\_model = model.fit() forecast = fitted\_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted\_model.fittedvalues) print("Forecast:", forecast) Triple Exponential Smoothing (Holt-Winters' Method): import pandas as pd from statsmodels.tsa.holtwinters import ExponentialSmoothing \# Example data data = pd.Series(\[10, 12, 15, 13, 11, 14, 16\]) \# Apply triple exponential smoothing (Holt-Winters' method) model = ExponentialSmoothing(data, trend='add', seasonal='add', seasonal\_periods=4) fitted\_model = model.fit() forecast = fitted\_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted\_model.fittedvalues) print("Forecast:", forecast) Make sure to install the statsmodels library if you haven't already (pip install statsmodels). In the code snippets above, we use the statsmodels.tsa.holtwinters module to implement the exponential smoothing methods. We define the data as a pandas Series and pass it to the corresponding model class (SimpleExpSmoothing, ExponentialSmoothing) along with any additional parameters (e.g., trend, seasonal) for double and triple exponential smoothing. We then fit the model, obtain the fitted values (smoothed data), and make future forecasts using the predict method. ## Uses of Exponential Smoothing Exponential Smoothing is widely used in forecasting applications at different levels such as strategic, tactical and operational. - Strategic Level: It is deployed for planning on investment and growth and also for the impact of innovations. - Tactical Level: It is implemented for deriving expenditure, inventory concern and customer satisfaction. - Operational Level: It is used to make targets, affirmation with standards, and predicting qualities. ## Exponential Smoothing Solved Examples **Problem 1:**Find the exponential smoothing forecasts for periods 2-10 using the following data, whereα\=0\.10 α \= 0\.10. Assume s1\=d1 s 1 \= d 1 | | | |---|---| | **Week** | **Demand** | | 1 | 820 | | 2 | 775 | | 3 | 680 | | 4 | 655 | | 5 | 750 | | 6 | 802 | | 7 | 798 | | 8 | 689 | | 9 | 775 | | 10 | ? | **Solution:** We know the formula for exponential smoothing is given by, st\=st−1\+α(xt−st−1) s t \= s t − 1 \+ α ( x t − s t − 1 ) Where, st\= s t \= forecast value for coming time period, st−1\= s t − 1 \= Forecast value in 1 past time period, α\= α \= smoothing factor of data which is 0\<α\<1 0 \< α \< 1 t\= t \= time period xt\= x t \= Actual occurrence in the 1 past time period, Now we calculate the following table , | | | | |---|---|---| | **Week** | **Demand(xt x t)** | **/alpha\=0\.10 / a l p h a \= 0\.10** | | 1 | 820 | 820 | | 2 | 775 | 820 | | 3 | 680 | 815 | | 4 | 655 | 801\.5 | | 5 | 750 | 787 | | 6 | 802 | 783 | | 7 | 798 | 785 | | 8 | 689 | 786\.3 | | 9 | 775 | 776\.6 | | 10 | ? | 776\.4 | The detailed calculation is given below.. st\=st−1\+α(xt−st−1)⇒s2\=s2−1\+0\.10(x1−s2−1)\=820 s t \= s t − 1 \+ α ( x t − s t − 1 ) ⇒ s 2 \= s 2 − 1 \+ 0\.10 ( x 1 − s 2 − 1 ) \= 820 Similarly we get, s10\=776\.4 s 10 \= 776\.4, which is the required answer. [Testbook](https://testbook.com/) is a platform where you can learn new concepts from the very basics and achieve good marks in your exams. You can also prepare for different competitive exams with the help of different mock tests available on this platform Download the [TestBook App](https://link.testbook.com/5BfIEjq6Vyb) to access all such features instantly. | | | |---|---| | **If you are checking Exponential smoothing article, also check the related maths articles in the table below:** | | | [Fundamental principles of counting](https://testbook.com/maths/fundamental-principles-of-counting) | [Perimeter of equilateral triangle](https://testbook.com/maths/perimeter-of-equilateral-triangle) | | [Product rule](https://testbook.com/maths/product-rule) | [Radical](https://testbook.com/maths/radical) | | [Face value](https://testbook.com/maths/face-value) | [Horizontal line](https://testbook.com/maths/horizontal-line) | More Articles for Maths - [Directly Proportional](https://testbook.com/maths/directly-proportional) - [Percentages](https://testbook.com/maths/percentages) - [Percentage Increase Decrease](https://testbook.com/maths/percentage-increase-decrease) - [Loss Percentage Formula](https://testbook.com/maths/loss-percentage-formula) - [Interest](https://testbook.com/maths/interest) - [Control Charts](https://testbook.com/maths/control-charts) - [3D Pie Chart](https://testbook.com/maths/3d-pie-chart) - [Sampling Error](https://testbook.com/maths/sampling-error) - [Average Cost](https://testbook.com/maths/average-cost) - [Profit Formula](https://testbook.com/maths/profit-formula) ## Exponential Smoothing FAQs ### What is the exponential smoothing formula? The simplest form of an exponential smoothing formula is given by, st\=αxt\+(1−α)st−1\=st−1\+α(xt−st−1) s t \= α x t \+ ( 1 − α ) s t − 1 \= s t − 1 \+ α ( x t − s t − 1 ) ### How is exponential smoothing used in forecasting? Exponential smoothing forecasting methods are similar in that a prediction is a weighted sum of past observations, but the model explicitly uses an exponentially decreasing weight for past observations. Specifically, past observations are weighted with a geometrically decreasing ratio. ### What is the difference between moving average and exponential smoothing? Moving Averages the past observations are weighted equally whereas exponential Smoothing assigns exponentially decreasing weights as the observation gets older. ### Is exponential smoothing a regression? No, Exponential smoothing is method used for prediction whereas regression is used to fit data. ### Which is the best method of business forecasting? A straight-line forecasting method is one of the easiest to implement, requiring only basic math and providing reasonable estimates for what businesses can anticipate in future financial scenarios. Straight-line forecasting is commonly used when a business is assuming revenue growth in the future. ### What is alpha in exponential smoothing? α α is the smoothing parameter that defines the weighting and should be greater than 0 and less than 1. [Report An Error](https://docs.google.com/forms/d/e/1FAIpQLScQq-lUmFGqdXTyJ0EhM-cgQd6SiMauQoS9UMGWUdDKX0lJqQ/viewform?usp=pp_url&entry.1289850337=https://testbook.com/maths/exponential-smoothing) [![promotional banner](https://cdn.testbook.com/1772734657370-Side%20Banner.jpeg/1772734659.jpeg)](https://testbk.co/1fcr3) Important Links [Overview](https://testbook.com/maths) [30 in words](https://testbook.com/maths/30-in-words)[50 in words](https://testbook.com/maths/50-in-words)[70 in words](https://testbook.com/maths/70-in-words)[40 in words](https://testbook.com/maths/40-in-words)[Midpoint Formula](https://testbook.com/maths/midpoint-formula)[Square Root](https://testbook.com/maths/square-root)[45000 in Words](https://testbook.com/maths/45000-in-words)[Cube Root](https://testbook.com/maths/cube-root)[1999 in roman numerals](https://testbook.com/maths/1999-in-roman-numerals)[13 in roman numerals](https://testbook.com/maths/13-in-roman-numerals)[200 in roman numerals](https://testbook.com/maths/200-in-roman-numerals)[70 in roman numerals](https://testbook.com/maths/70-in-roman-numerals)[Factors of 27](https://testbook.com/maths/factors-of-27)[Factors of 16](https://testbook.com/maths/factors-of-16)[Factors of 120](https://testbook.com/maths/factors-of-120)[Square Root and Cube Root](https://testbook.com/maths/square-root-and-cube-root)[Squares and Square roots](https://testbook.com/maths/squares-and-square-roots)[Types of Function Graphs](https://testbook.com/maths/functions-and-their-graphs)[Right Triangle Congruence Theorem](https://testbook.com/maths/right-triangle-congruence)[80 in Words](https://testbook.com/maths/80-in-words) [![promotional banner](https://cdn.testbook.com/1772734653913-Desktop%20Banner.jpeg/1772734659.jpeg)](https://testbk.co/1f9vn) ![close](https://testbook.com/angular/assets/img/white-cross.png) Access 375+ Exams & Central Exams with Super Pass for 2 Days @ ₹1 Only\! - Live Classes - Free Pass Pro Max - PYP + Mock Test + More Benefits [Start Trial](https://testbk.co/1g48c) ![Testbook Logo](https://cdn.testbook.com/1746182301514-Testbook%20Logo.png/1746182303.png) Track your progress, boost your prep, and stay ahead Download the testbook app and unlock advanced analytics. ![QR Code](https://cdn.testbook.com/1747291146855-Frame%201261155643.png/1747291148.png) Scan this QR code to Get the Testbook App [✕]() General Knowledge [Static GK](https://testbook.com/static-gk)[Telangana GK](https://testbook.com/telangana-gk)[Andhra Pradesh GK](https://testbook.com/andhra-pradesh-gk) [UP GK](https://testbook.com/up-gk)[Kerala GK](https://testbook.com/kerala-gk) [Bihar GK](https://testbook.com/bihar-gk)[Gujarat GK](https://testbook.com/gujarat-gk) [Haryana GK](https://testbook.com/haryana-gk)[Tamil Nadu GK](https://testbook.com/tamil-nadu-gk) State PSC Prep [MPSC Preparation](https://testbook.com/maths/mpsc-preparation) [MPPSC Preparation](https://testbook.com/maths/mppsc-preparation) [RPSC Preparation](https://testbook.com/maths/rpsc-preparation) [TSPSC Preparation](https://testbook.com/maths/tspsc-preparation) Important Exams [SSC CGL](https://testbook.com/ssc-cgl-exam)[SSC GD Constable](https://testbook.com/ssc-gd-constable)[RRB ALP](https://testbook.com/rrb-alp)[RPF SI](https://testbook.com/rpf-si)[APPSC Group 1](https://testbook.com/appsc-group-1)[HPSC HCS](https://testbook.com/haryana-civil-services)[MPPSC Exam](https://testbook.com/mppsc-state-service)[UPPCS Exam](https://testbook.com/uppcs)[MPSC State Service](https://testbook.com/mpsc-state-service)[CUET UG](https://testbook.com/cuet)[FCI](https://testbook.com/fci)[FCI Watchman](https://testbook.com/fci-watchman)[NIELIT Scientist B](https://testbook.com/nielit-scientist-b)[CBSE Assistant Secretary](https://testbook.com/cbse-assistant-secretary)[JEE Main](https://testbook.com/jee-main)[TS EAMCET](https://testbook.com/ts-eamcet-exam)[IIT JAM](https://testbook.com/iit-jam)[BMC JE](https://testbook.com/bmc-je)[MP Vyapam Sub Engineer](https://testbook.com/mp-vyapam-sub-engineer)[RSMSSB Junior Engineer](https://testbook.com/rsmssb-junior-engineer)[CAT](https://testbook.com/cat-exam)[TISSNET](https://testbook.com/tissnet-exam) [SSC CHSL](https://testbook.com/ssc-chsl)[SSC CPO](https://testbook.com/ssc-cpo)[RRB NTPC](https://testbook.com/rrb-ntpc)[RRB Technician Grade-1](https://testbook.com/rrb-technician-grade-1)[BPSC Exam](https://testbook.com/bpsc-exam)[JKPSC KAS](https://testbook.com/jkpsc-kas)[OPSC OAS](https://testbook.com/opsc-oas)[WBCS Exam](https://testbook.com/wbcs)[TSPSC Group 1](https://testbook.com/tspsc-group-1)[AIIMS CRE](https://testbook.com/aiims-cre)[CBSE Junior Assistant](https://testbook.com/cbse-junior-assistant)[FCI Assistant Grade 3](https://testbook.com/fci-grade-3)[CSIR NPL Technician](https://testbook.com/csir-npl-technician)[CBSE Junior Assistant](https://testbook.com/cbse-junior-assistant)[JEE Advance](https://testbook.com/jee-advanced)[VITEEE](https://testbook.com/viteee)[NCHMCT JEE](https://testbook.com/nchmct-jee-exam)[BPSC AE](https://testbook.com/bpsc-ae)[MPPSC AE](https://testbook.com/mppsc-ae)[TSGENCO AE](https://testbook.com/tsgenco-ae)[CMAT](https://testbook.com/cmat-exam)[ATMA](https://testbook.com/atma-exam) [SSC CPO](https://testbook.com/ssc-cpo)[SSC Stenographer](https://testbook.com/ssc-stenographer)[RRB Technician](https://testbook.com/rrb-technician)[RRB JE](https://testbook.com/rrb-je)[CGPSC](https://testbook.com/cgpsc)[Kerala PSC KAS](https://testbook.com/kerala-psc-kas)[RPSC RAS](https://testbook.com/rpsc-ras)[HPPSC HPAS](https://testbook.com/hppsc-hpas)[UKPSC Combined Upper Subordinate Services](https://testbook.com/ukpsc-combined-upper-subordinate-service)[CWC Junior Superintendent](https://testbook.com/cwc-junior-superintendent)[FCI Stenographer](https://testbook.com/fci-stenographer)[FSSAI Personal Assistant](https://testbook.com/fssai-personal-assistant)[AAI Junior Assistant](https://testbook.com/aai-junior-assistant)[CUET PG](https://testbook.com/cuet-pg)[JEECUP](https://testbook.com/up-polytechnic-jeecup)[WBJEE](https://testbook.com/wb-jee)[AAI ATC](https://testbook.com/aai-je-atc)[ISRO Scientist](https://testbook.com/isro-scientist)[Mahatransco Technician](https://testbook.com/mahatransco-technician)[UPPSC AE](https://testbook.com/uppsc-ae)[MAH MBA CET](https://testbook.com/mah-cet-mba)[NMAT](https://testbook.com/nmat-exam) [SSC MTS](https://testbook.com/ssc-mts)[RRB Group D](https://testbook.com/rrb-group-d)[RPF Constable](https://testbook.com/rpf-constable)[SSC JE](https://testbook.com/ssc-je)[GPSC Class 1 2](https://testbook.com/gpsc-class-1-2)[KPSC KAS](https://testbook.com/kpsc-kas)[TNPSC Group 1](https://testbook.com/tnpsc-group-1)[MPPSC Forest Services](https://testbook.com/mppsc-forest-service)[UKPSC Lower PCS](https://testbook.com/ukpsc-lower-pcs)[FCI Manager](https://testbook.com/fci-manager)[FCI Typist](https://testbook.com/fci-typist)[CSIR Junior Secretariat Assistant](https://testbook.com/csir-junior-secretariat-assistant)[EPFO Personal Assistant](https://testbook.com/epfo-personal-assistant)[NEET](https://testbook.com/neet)[MHT CET](https://testbook.com/mht-cet)[AP EAMCET](https://testbook.com/ap-eapcet)[BHEL Engineer Trainee](https://testbook.com/bhel-engineer-trainee)[Mahatransco AE](https://testbook.com/mahatransco-ae)[PGCIL Diploma Trainee](https://testbook.com/pgcil-diploma-trainee)[UPSC IES](https://testbook.com/upsc-ies)[TANCET](https://testbook.com/tancet) Previous Year Papers [SSC Selection Post Previous Year Papers](https://testbook.com/ssc-selection-post/previous-year-papers)[SSC GD Constable Previous Year Papers](https://testbook.com/ssc-gd-constable/previous-year-papers)[RRB Group D Previous Year Papers](https://testbook.com/rrb-group-d/previous-year-papers)[RPF Constable Previous Year Papers](https://testbook.com/rpf-constable/previous-year-papers)[SSC JE Previous Year Papers](https://testbook.com/ssc-je/previous-year-papers)[CGPSC Previous Year Papers](https://testbook.com/cgpsc/previous-year-papers)[AIIMS CRE Previous Year Papers](https://testbook.com/aiims-cre/previous-year-papers)[EPFO Personal Assistant Previous Year Papers](https://testbook.com/epfo-personal-assistant/previous-year-papers)[FCI Manager Previous Year Papers](https://testbook.com/fci-manager/previous-year-papers)[JKPSC KAS Previous Year Papers](https://testbook.com/jkpsc-kas/previous-year-papers)[OPSC OAS Previous Year Papers](https://testbook.com/opsc-oas/previous-year-papers)[UPPCS Previous Year Papers](https://testbook.com/uppcs/previous-year-papers)[NEET Previous Year Papers](https://testbook.com/neet/previous-year-papers)[MHT CET Previous Year Papers](https://testbook.com/mah-cet-mba/previous-year-papers)[TANCET Previous Year Papers](https://testbook.com/tancet/previous-year-papers)[AAI ATC Previous Year Papers](https://testbook.com/aai-je-atc/previous-year-papers)[MP Vyapam Sub Engineer Previous Year Papers](https://testbook.com/mp-vyapam-sub-engineer/previous-year-papers)[RSMSSB Junior Engineer Previous Year Papers](https://testbook.com/rsmssb-junior-engineer/previous-year-papers) [SSC CGL Previous Year Papers](https://testbook.com/ssc-cgl-exam/previous-year-papers)[SSC MTS Previous Year Papers](https://testbook.com/ssc-mts/previous-year-papers)[RRB ALP Previous Year Papers](https://testbook.com/rrb-alp/previous-year-papers)[RPF SI Previous Year Papers](https://testbook.com/rpf-si/previous-year-papers)[APPSC Group 1 Previous Year Papers](https://testbook.com/appsc-group-1/previous-year-papers)[GPSC Class 1 2 Previous Year Papers](https://testbook.com/gpsc-class-1-2/previous-year-papers)[CBSE Assistant Secretary Previous Year Papers](https://testbook.com/cbse-assistant-secretary/previous-year-papers)[FCI Previous Year Papers](https://testbook.com/fci/previous-year-papers)[FCI Watchman Previous Year Papers](https://testbook.com/fci-watchman/previous-year-papers)[Kerala PSC KAS Previous Year Papers](https://testbook.com/kerala-psc-kas/previous-year-papers)[RPSC RAS Previous Year Papers](https://testbook.com/rpsc-ras/previous-year-papers)[WBCS Previous Year Papers](https://testbook.com/wbcs/previous-year-papers)[JEE Main Previous Year Papers](https://testbook.com/jee-main/previous-year-papers)[CAT Previous Year Papers](https://testbook.com/cat-exam/previous-year-papers)[CTET Previous Year Papers](https://testbook.com/ctet/previous-year-papers)[BPSC AE Previous Year Papers](https://testbook.com/bpsc-ae/previous-year-papers)[MPPSC AE Previous Year Papers](https://testbook.com/mppsc-ae/previous-year-papers)[UPPSC AE Previous Year Papers](https://testbook.com/uppsc-ae/previous-year-papers) [SSC CHSL Previous Year Papers](https://testbook.com/ssc-chsl/previous-year-papers)[SSC CPO Previous Year Papers](https://testbook.com/ssc-cpo/previous-year-papers)[RRB NTPC Previous Year Papers](https://testbook.com/rrb-ntpc/previous-year-papers)[RRB Technician Grade-1 Previous Year Papers](https://testbook.com/rrb-technician-grade-1/previous-year-papers)[BPSC Previous Year Papers](https://testbook.com/bpsc-exam/previous-year-papers)[HPSC HCS Previous Year Papers](https://testbook.com/haryana-civil-services/previous-year-papers)[CBSE Junior Assistant Previous Year Papers](https://testbook.com/cbse-junior-assistant/previous-year-papers)[FCI Grade 3 Previous Year Papers](https://testbook.com/fci-grade-3/previous-year-papers)[FSSAI Personal Assistant Previous Year Papers](https://testbook.com/fssai-personal-assistant/previous-year-papers)[KPSC KAS Previous Year Papers](https://testbook.com/kpsc-kas/previous-year-papers)[TNPSC Group 1 Previous Year Papers](https://testbook.com/tnpsc-group-1/previous-year-papers)[CUET Previous Year Papers](https://testbook.com/cuet/previous-year-papers)[JEE Advance Previous Year Papers](https://testbook.com/jee-advanced/previous-year-papers)[CMAT Previous Year Papers](https://testbook.com/cmat-exam/previous-year-papers)[REET Previous Year Papers](https://testbook.com/reet/previous-year-papers)[ISRO Scientist Previous Year Papers](https://testbook.com/isro-scientist/previous-year-papers)[PGCIL Diploma Trainee Previous Year Papers](https://testbook.com/pgcil-diploma-trainee/previous-year-papers)[UPSC IES Previous Year Papers](https://testbook.com/upsc-ies/previous-year-papers) [SSC CPO Previous Year Papers](https://testbook.com/ssc-cpo/previous-year-papers)[SSC Stenographer Previous Year Papers](https://testbook.com/ssc-stenographer/previous-year-papers)[RRB Technician Previous Year Papers](https://testbook.com/rrb-technician/previous-year-papers)[RRB JE Previous Year Papers](https://testbook.com/rrb-je/previous-year-papers)[MPSC Prevoius Year Papers](https://testbook.com/mpsc-state-service/previous-year-papers)[AAI Junior Assistant Previous Year Papers](https://testbook.com/aai-junior-assistant/previous-year-papers)[CSIR Junior Secretariat Assistant Previous Year Papers](https://testbook.com/csir-junior-secretariat-assistant/previous-year-papers)[FCI Je Previous Year Papers](https://testbook.com/fci-je/previous-year-papers)[NIELIT Scientist B Previous Year Papers](https://testbook.com/nielit-scientist-b/previous-year-papers)[MPPSC Exam Previous Year Papers](https://testbook.com/mppsc-state-service/previous-year-papers)[TSPSC Group 1 Previous Year Papers](https://testbook.com/tspsc-group-1/previous-year-papers)[CUET PG Previous Year Papers](https://testbook.com/cuet-pg/previous-year-papers)[JEECUP Previous Year Papers](https://testbook.com/up-polytechnic-jeecup/previous-year-papers)[MAH MBA CET Previous Year Papers](https://testbook.com/mah-cet-mba/previous-year-papers)[BHEL Engineer Trainee Previous Year Papers](https://testbook.com/bhel-engineer-trainee/previous-year-papers)[Mahatransco AE Previous Year Papers](https://testbook.com/mahatransco-ae/previous-year-papers)[TSGENCO AE Previous Year Papers](https://testbook.com/tsgenco-ae/previous-year-papers) Syllabus [SSC CGL Syllabus](https://testbook.com/ssc-cgl-exam/syllabus)[SSC MTS Syllabus](https://testbook.com/ssc-mts/syllabus-exam-pattern)[RRB NTPC Syllabus](https://testbook.com/rrb-ntpc/syllabus)[SSC JE Syllabus](https://testbook.com/ssc-je/syllabus)[JEE Main Syllabus](https://testbook.com/jee-main/syllabus)[NIFT Syllabus](https://testbook.com/nift-exam/syllabus)[AAI Junior Assistant Syllabus](https://testbook.com/aai-junior-assistant/syllabus-exam-pattern)[CSIR Junior Secretariat Assistant Syllabus](https://testbook.com/csir-junior-secretariat-assistant/syllabus-exam-pattern)[FCI Syllabus](https://testbook.com/fci/syllabus)[FCI Stenographer Syllabus](https://testbook.com/fci-stenographer/syllabus-exam-pattern)[NIELIT Scientist B Syllabus](https://testbook.com/nielit-scientist-b/syllabus-exam-pattern)[AAI ATC Syllabus](https://testbook.com/aai-je-atc/syllabus-exam-pattern)[BPSC AE Syllabus](https://testbook.com/bpsc-ae/syllabus-exam-pattern)[RSMSSB Junior Engineer Syllabus](https://testbook.com/rsmssb-junior-engineer/syllabus-exam-pattern)[CUET Accountancy Book Keeping Syllabus](https://testbook.com/cuet/accountancy-book-keeping-syllabus)[CUET Ba Syllabus](https://testbook.com/cuet/ba-syllabus-exam-pattern)[CUET Business Economics Syllabus](https://testbook.com/cuet/business-economics-syllabus)[CUET Computer Science Syllabus](https://testbook.com/cuet/computer-science-syllabus)[CUET Environmental Studies Syllabus](https://testbook.com/cuet/environmental-studies-syllabus)[CUET Commerce Syllabus](https://testbook.com/cuet/commerce-syllabus)[CUET Hindi Syllabus](https://testbook.com/cuet/hindi-syllabus-exam-pattern)[CUET Malayalam Syllabus](https://testbook.com/cuet/malayalam-syllabus-exam-pattern)[CUET Physical Education Syllabus](https://testbook.com/cuet/physical-education-syllabus)[CUET Sanskrit Syllabus](https://testbook.com/cuet/sanskrit-syllabus)[BPSC Exam Syllabus](https://testbook.com/bpsc-exam/syllabus-exam-pattern)[JKPSC KAS Syllabus](https://testbook.com/jkpsc-kas/syllabus-exam-pattern)[OPSC OAS Syllabus](https://testbook.com/opsc-oas/syllabus-exam-pattern)[WBCS Exam Syllabus](https://testbook.com/wbcs/syllabus-exam-pattern)[TSPSC Group 1 Syllabus](https://testbook.com/tspsc-group-1/syllabus-exam-pattern)[BPSC Exam Syllabus](https://testbook.com/bpsc-exam/syllabus-exam-pattern) [SSC CHSL Syllabus](https://testbook.com/ssc-chsl/syllabus)[SSC Stenographer Syllabus](https://testbook.com/ssc-stenographer/syllabus-exam-pattern)[RRB Technician Syllabus](https://testbook.com/rrb-technician/syllabus-exam-pattern)[RRB JE Syllabus](https://testbook.com/rrb-je/syllabus)[JEE Advanced Syllabus](https://testbook.com/jee-advanced/syllabus)[WB JEE Syllabus](https://testbook.com/wb-jee/syllabus-exam-pattern)[AIIMS CRE Syllabus](https://testbook.com/aiims-cre/syllabus-exam-pattern)[CSIR Npl Technician Syllabus](https://testbook.com/csir-npl-technician/syllabus-exam-pattern)[FCI Grade 3 Syllabus](https://testbook.com/fci-grade-3/syllabus-exam-pattern)[FCI Typist Syllabus](https://testbook.com/fci-typist/syllabus-exam-pattern)[CUET Maths Syllabus](https://testbook.com/cuet/mathematics-syllabus)[BHEL Engineer Trainee Syllabus](https://testbook.com/bhel-engineer-trainee/salary-job-profile)[MP Vyapam Sub Engineer Syllabus](https://testbook.com/mp-vyapam-sub-engineer/syllabus-exam-pattern)[TSGENCO AE Syllabus](https://testbook.com/tsgenco-ae/syllabus-exam-pattern)[CUET Agriculture Syllabus](https://testbook.com/cuet/agriculture-syllabus)[CUET BCA Syllabus](https://testbook.com/cuet/bca-syllabus-exam-pattern)[CUET Business Studies Syllabus](https://testbook.com/cuet/business-studies-syllabus)[CUET Engineering Graphics Syllabus](https://testbook.com/cuet/engineering-graphics-syllabus)[CUET Fine Arts Syllabus](https://testbook.com/cuet/fine-arts-syllabus)[CUET Geography Syllabus](https://testbook.com/cuet/geography-syllabus)[CUET History Syllabus](https://testbook.com/cuet/history-syllabus)[CUET Marathi Syllabus](https://testbook.com/cuet/marathi-syllabus-exam-pattern)[CUET Political Science Syllabus](https://testbook.com/cuet/political-science-syllabus)[CUET Sociology Syllabus](https://testbook.com/cuet/sociology-syllabus)[CGPSC Syllabus](https://testbook.com/cgpsc/syllabus)[Kerala PSC KAS Syllabus](https://testbook.com/kerala-psc-kas/syllabus-exam-pattern)[RPSC RAS Syllabus](https://testbook.com/rpsc-ras/syllabus)[HPPSC HPAS Syllabus](https://testbook.com/hppsc-hpas/syllabus-exam-pattern)[UKPSC Upper PCS Syllabus](https://testbook.com/ukpsc-combined-upper-subordinate-service/syllabus-exam-pattern)[CGPSC Syllabus](https://testbook.com/cgpsc/syllabus) [SSC CPO Syllabus](https://testbook.com/ssc-cpo/syllabus)[RRB Group D Syllabus](https://testbook.com/rrb-group-d/syllabus)[RPF Constable Syllabus](https://testbook.com/rpf-constable/syllabus-exam-pattern)[CUET Syllabus](https://testbook.com/cuet/exam-syllabus)[JEECUP Syllabus](https://testbook.com/up-polytechnic-jeecup/syllabus-exam-pattern)[GUJCET Syllabus](https://testbook.com/gujcet/syllabus)[CBSE Assistant Secretary Syllabus](https://testbook.com/cbse-assistant-secretary/syllabus-exam-pattern)[CWC Junior Superintendent Syllabus](https://testbook.com/cwc-junior-superintendent/syllabus-exam-pattern)[FCI Je Syllabus](https://testbook.com/fci-je/syllabus-exam-pattern)[FCI Watchman Syllabus](https://testbook.com/fci-watchman/syllabus-exam-pattern)[CUET Physics Syllabus](https://testbook.com/cuet/physics-syllabus)[Mahagenco Technician Syllabus](https://testbook.com/mahagenco-technician/syllabus-exam-pattern)[MPPSC AE Syllabus](https://testbook.com/mppsc-ae/syllabus-exam-pattern)[UPPSC AE Syllabus](https://testbook.com/uppsc-ae/syllabus)[CUET Anthropology Syllabus](https://testbook.com/cuet/anthropology-syllabus)[CUET Bengali Syllabus](https://testbook.com/cuet/bengali-syllabus-exam-pattern)[CUET Chemistry Syllabus](https://testbook.com/cuet/chemistry-syllabus)[CUET English Syllabus](https://testbook.com/cuet/english-syllabus-exam-pattern)[CUET French Syllabus](https://testbook.com/cuet/french-syllabus-exam-pattern)[CUET German Syllabus](https://testbook.com/cuet/german-syllabus-exam-pattern)[CUET Home Science Syllabus](https://testbook.com/cuet/home-science-syllabus)[CUET Mass Media Syllabus](https://testbook.com/cuet/mass-media-syllabus)[CUET Psychology Syllabus](https://testbook.com/cuet/psychology-syllabus)[CUET Teaching Aptitude Syllabus](https://testbook.com/cuet/teaching-aptitude-syllabus)[GPSC Class 1 2 Syllabus](https://testbook.com/gpsc-class-1-2/syllabus-exam-pattern)[KPSC KAS Syllabus](https://testbook.com/kpsc-kas/syllabus-exam-pattern)[TNPSC Group 1 Syllabus](https://testbook.com/tnpsc-group-1/syllabus-exam-pattern)[MPPSC Forest Services Syllabus](https://testbook.com/mppsc-forest-service/syllabus-exam-pattern)[UKPSC Lower PCS Syllabus](https://testbook.com/ukpsc-lower-pcs/syllabus-exam-pattern) [SSC GD Constable Syllabus](https://testbook.com/ssc-gd-constable/syllabus-exam-pattern)[RRB ALP Syllabus](https://testbook.com/rrb-alp/syllabus-exam-pattern)[RPF SI Syllabus](https://testbook.com/rpf-si/syllabus-exam-pattern)[NEET Syllabus](https://testbook.com/neet/syllabus)[MHT CET Syllabus](https://testbook.com/mht-cet/syllabus)[CUET Commerce Syllabus](https://testbook.com/cuet/commerce-syllabus)[CBSE Junior Assistant Syllabus](https://testbook.com/cbse-junior-assistant/syllabus-exam-pattern)[EPFO Personal Assistant Syllabus](https://testbook.com/epfo-personal-assistant/syllabus-exam-pattern)[FCI Manager Syllabus](https://testbook.com/fci-manager/syllabus-exam-pattern)[FSSAI Personal Assistant Syllabus](https://testbook.com/fssai-personal-assistant/syllabus-exam-pattern)[CUET Biology Syllabus](https://testbook.com/cuet/biology-syllabus)[BMC JE Syllabus](https://testbook.com/bmc-je/syllabus-exam-pattern)[PGCIL Diploma Trainee Syllabus](https://testbook.com/pgcil-diploma-trainee/syllabus-exam-pattern)[UPSC IES Syllabus](https://testbook.com/upsc-ies/syllabus)[CUET Assamese Syllabus](https://testbook.com/cuet/assamese-syllabus-exam-pattern)[CUET Bsc Syllabus](https://testbook.com/cuet/bsc-syllabus-exam-pattern)[CUET Commerce Syllabus](https://testbook.com/cuet/commerce-syllabus)[CUET Entrepreneurship Syllabus](https://testbook.com/cuet/entrepreneurship-syllabus)[CUET General Test Syllabus](https://testbook.com/cuet/general-test-syllabus)[CUET Gujarati Syllabus](https://testbook.com/cuet/gujarati-syllabus-exam-pattern)[CUET Legal Studies Syllabus](https://testbook.com/cuet/legal-studies-syllabus)[CUET Odia Syllabus](https://testbook.com/cuet/odia-syllabus-exam-pattern)[CUET Punjabi Syllabus](https://testbook.com/cuet/punjabi-syllabus-exam-pattern)[APPSC Group 1 Syllabus](https://testbook.com/appsc-group-1/syllabus-exam-pattern)[HPSC HCS Syllabus](https://testbook.com/haryana-civil-services/syllabus-exam-pattern)[MPPSC Exam Syllabus](https://testbook.com/mppsc-state-service/syllabus-exam-pattern)[UPPCS Exam Syllabus](https://testbook.com/uppcs/syllabus-exam-pattern)[MPSC Rajyaseva Syllabus](https://testbook.com/mpsc-state-service/syllabus-exam-pattern)[APPSC Group 1 Syllabus](https://testbook.com/appsc-group-1/syllabus-exam-pattern) Board Exams [Haryana Board](https://testbook.com/hbse-class-12th)[Gujarat Board](https://testbook.com/gseb-class-12)[Maharashtra Board](https://testbook.com/maharashtra-hsc-exam)[Telangana Board](https://testbook.com/ts-intermediate) [AP Board](https://testbook.com/ap-inter-2nd-year)[ICSE](https://testbook.com/isc-class-12)[Madhya Pradesh Board](https://testbook.com/mp-board-12th)[Uttar Pradesh Board](https://testbook.com/up-board-class-12) [Bihar Board](https://testbook.com/bihar-board-12th)[Jharkhand Board](https://testbook.com/jac-class-12)[Punjab Board](https://testbook.com/pseb-class-12)[West Bengal Board](https://testbook.com/wbchse-class-12) [CBSE](https://testbook.com/cbse-class-12)[Karnataka Board](https://testbook.com/karnataka-2nd-puc)[Rajasthan Board](https://testbook.com/rbse-class-12) Coaching [SSC CGL Coaching](https://testbook.com/ssc-cgl-coaching)[SSC GD Constable Coaching](https://testbook.com/ssc-gd-coaching)[RRB ALP Coaching](https://testbook.com/rrb-alp-coaching)[RPF SI Coaching](https://testbook.com/rpf-constable-and-si-coaching) [SSC CHSL Coaching](https://testbook.com/ssc-chsl-coaching)[SSC CPO Coaching](https://testbook.com/ssc-cpo-coaching)[RRB NTPC Coaching](https://testbook.com/rrb-ntpc1-coaching)[SSC JE Coaching](https://testbook.com/ssc-je-civil-2025-coaching) [SSC CPO Coaching](https://testbook.com/ssc-cpo-coaching)[SSC Stenographer Coaching](https://testbook.com/ssc-stenographer-coaching)[RRB Technician Grade 1 Coaching](https://testbook.com/rrb-technician-grade-1-signal-coaching)[RRB JE Coaching](https://testbook.com/rrb-je-civil-engineering-coaching) [SSC MTS Coaching](https://testbook.com/ssc-mts-coaching)[RRB Group D Coaching](https://testbook.com/rrb-groupd-coaching)[RPF Constable Coaching](https://testbook.com/rpf-constable-and-si-coaching) Eligibility [SSC CGL Eligibility](https://testbook.com/ssc-cgl-exam/eligibility-criteria)[SSC GD Constable Eligibility](https://testbook.com/ssc-gd-constable/eligibility-criteria)[RRB ALP Eligibility](https://testbook.com/rrb-alp/eligibility-criteria)[RPF SI Eligibility](https://testbook.com/rpf-si/eligibility-criteria)[BPSC Exam Eligibility](https://testbook.com/bpsc-exam/eligibility-criteria)[JKPSC KAS Eligibility](https://testbook.com/jkpsc-kas/eligibility-criteria)[OPSC OAS Eligibility](https://testbook.com/opsc-oas/eligibility-criteria)[WBCS Exam Eligibility](https://testbook.com/wbcs/eligibility-criteria)[TSPSC Group 1 Eligibility](https://testbook.com/tspsc-group-1/eligibility-criteria)[AIIMS CRE Eligibility](https://testbook.com/aiims-cre/eligibility-criteria)[CBSE Junior Assistant Eligibility](https://testbook.com/cbse-junior-assistant/eligibility-criteria)[FCI Assistant Grade 3 Eligibility](https://testbook.com/fci-grade-3/eligibility-criteria)[EPFO Personal Assistant Eligibility](https://testbook.com/epfo-personal-assistant/eligibility-criteria)[NEET Eligibility](https://testbook.com/neet/eligibility-criteria)[MHT CET Eligibility](https://testbook.com/mht-cet/eligibility-criteria)[NCHMCT JEE Eligibility](https://testbook.com/nchmct-jee-exam/eligibility-criteria)[BPSC AE Eligibility](https://testbook.com/bpsc-ae/eligibility-criteria)[MPPSC AE Eligibility](https://testbook.com/mppsc-ae/eligibility-criteria)[TSGENCO AE Eligibility](https://testbook.com/tsgenco-ae/eligibility-criteria)[CMAT Eligibility](https://testbook.com/cmat-exam/eligibility-criteria)[ATMA Eligibility](https://testbook.com/atma-exam/eligibility-criteria) [SSC CHSL Eligibility](https://testbook.com/ssc-chsl/eligibility-criteria)[SSC CPO Eligibility](https://testbook.com/ssc-cpo/eligibility-criteria)[RRB NTPC Eligibility](https://testbook.com/rrb-ntpc/eligibility-criteria)[RRB JE Eligibility](https://testbook.com/rrb-je/eligibility-criteria)[CGPSC Eligibility](https://testbook.com/cgpsc/eligibility-criteria)[Kerala PSC KAS Eligibility](https://testbook.com/kerala-psc-kas/eligibility-criteria)[RPSC RAS Eligibility](https://testbook.com/rpsc-ras/eligibility-criteria)[HPPSC HPAS Eligibility](https://testbook.com/hppsc-hpas/eligibility-criteria)[UKPSC Combined Upper Subordinate Services Eligibility](https://testbook.com/ukpsc-combined-upper-subordinate-service/eligibility-criteria)[CWC Junior Superintendent Eligibility](https://testbook.com/cwc-junior-superintendent/eligibility-criteria)[FCI Stenographer Eligibility](https://testbook.com/fci-stenographer/eligibility-criteria)[NIELIT Scientist B Eligibility](https://testbook.com/nielit-scientist-b/eligibility-criteria)[CBSE Assistant Secretary Eligibility](https://testbook.com/cbse-assistant-secretary/eligibility)[JEE Main Eligibility](https://testbook.com/jee-main/eligibility-criteria)[WBJEE Eligibility](https://testbook.com/wb-jee/eligibility-criteria)[AAI ATC Eligibility](https://testbook.com/aai-je-atc/eligibility-criteria)[ISRO Scientist Eligibility](https://testbook.com/isro-scientist/eligibility-criteria)[Mahatransco Technician Eligibility](https://testbook.com/mahatransco-technician/eligibility-criteria)[UPPSC AE Eligibility](https://testbook.com/uppsc-ae/eligibility-criteria)[MAH MBA CET Eligibility](https://testbook.com/mah-cet-mba/eligibility-criteria)[NMAT Eligibility](https://testbook.com/nmat-exam/eligibility-criteria) [SSC CPO Eligibility](https://testbook.com/ssc-cpo/eligibility-criteria)[SSC Stenographer Eligibility](https://testbook.com/ssc-stenographer/eligibility-criteria)[RRB Technician Eligibility](https://testbook.com/rrb-technician/eligibility-criteria)[SSC JE Eligibility](https://testbook.com/ssc-je/eligibility-criteria)[GPSC Class 1 2 Eligibility](https://testbook.com/gpsc-class-1-2/eligibility-criteria)[KPSC KAS Eligibility](https://testbook.com/kpsc-kas/eligibility-criteria)[TNPSC Group 1 Eligibility](https://testbook.com/tnpsc-group-1/eligibility-criteria)[MPPSC Forest Services Eligibility](https://testbook.com/mppsc-forest-service/eligibility-criteria)[UKPSC Lower PCS Eligibility](https://testbook.com/ukpsc-lower-pcs/eligibility-criteria)[FCI Manager Eligibility](https://testbook.com/fci-manager/eligibility-criteria)[FCI Typist Eligibility](https://testbook.com/fci-typist/eligibility-criteria)[CSIR NPL Technician Eligibility](https://testbook.com/csir-npl-technician/eligibility-criteria)[CBSE Junior Assistant Eligibility](https://testbook.com/cbse-junior-assistant/eligibility-criteria)[JEE Advance Eligibility](https://testbook.com/jee-advanced/eligibility-criteria)[AP EAMCET Eligibility](https://testbook.com/ap-eapcet/eligibility-criteria)[BHEL Engineer Trainee Eligibility](https://testbook.com/bhel-engineer-trainee/eligibility-criteria)[Mahatransco AE Eligibility](https://testbook.com/mahatransco-ae/eligibility-criteria)[PGCIL Diploma Trainee Eligibility](https://testbook.com/pgcil-diploma-trainee/eligibility-criteria)[UPSC IES Eligibility](https://testbook.com/upsc-ies/eligibility-criteria)[TANCET Eligibility](https://testbook.com/tancet/eligibility-criteria) [SSC MTS Eligibility](https://testbook.com/ssc-mts/eligibility-criteria)[RRB Group D Eligibility](https://testbook.com/rrb-group-d/eligibility-criteria)[RPF Constable Eligibility](https://testbook.com/rpf-constable/eligibility-criteria)[APPSC Group 1 Eligibility](https://testbook.com/appsc-group-1/eligibility-criteria)[HPSC HCS Eligibility](https://testbook.com/haryana-civil-services/eligibility-criteria)[MPPSC Exam Eligibility](https://testbook.com/mppsc-state-service/eligibility-criteria)[UPPCS Exam Eligibility](https://testbook.com/uppcs/eligibility-criteria)[MPSC State Service Eligibility](https://testbook.com/mpsc-state-service/eligibility-criteria)[CUET UG Eligibility](https://testbook.com/cuet/eligibility-criteria)[FCI Eligibility](https://testbook.com/fci/eligibility-criteria)[FCI Watchman Eligibility](https://testbook.com/fci-watchman/eligibility-criteria)[AAI Junior Assistant Eligibility](https://testbook.com/aai-junior-assistant/eligibility-criteria)[CUET PG Eligibility](https://testbook.com/cuet-pg/eligibility-criteria)[JEECUP Eligibility](https://testbook.com/up-polytechnic-jeecup/eligibility-criteria)[IIT JAM Eligibility](https://testbook.com/iit-jam/eligibility-criteria)[BMC JE Eligibility](https://testbook.com/bmc-je/eligibility)[MP Vyapam Sub Engineer Eligibility](https://testbook.com/mp-vyapam-sub-engineer/eligibility-criteria)[RSMSSB Junior Engineer Eligibility](https://testbook.com/rsmssb-junior-engineer/eligibility-criteria)[CAT Eligibility](https://testbook.com/cat-exam/eligibility-criteria)[TISSNET Eligibility](https://testbook.com/tissnet-exam/eligibility-criteria) Cut Off [SSC CGL Cut Off](https://testbook.com/ssc-cgl-exam/cut-off)[SSC GD Constable Cut Off](https://testbook.com/ssc-gd-constable/cut-off)[RRB ALP Cut Off](https://testbook.com/rrb-alp/cut-off)[RPF SI Cut Off](https://testbook.com/rpf-si/cut-off)[APPSC Group 1 Cut Off](https://testbook.com/appsc-group-1/cut-off)[HPSC HCS Cut Off](https://testbook.com/haryana-civil-services/cut-off)[MPPSC Exam Cut Off](https://testbook.com/mppsc-state-service/cut-off)[UPPCS Exam Cut Off](https://testbook.com/uppcs/cut-off)[MPSC State Service Cut Off](https://testbook.com/mpsc-state-service/cut-off)[CUET UG Cut Off](https://testbook.com/cuet/cut-off)[FCI Cut Off](https://testbook.com/fci/cut-off)[FCI Watchman Cut Off](https://testbook.com/fci-watchman/cut-off)[CSIR NPL Technician Cut Off](https://testbook.com/csir-npl-technician/cut-off)[CBSE Junior Assistant Cut Off](https://testbook.com/cbse-junior-assistant/cut-off)[JEE Advance Cut Off](https://testbook.com/jee-advanced/cutoff)[VITEEE Cut Off](https://testbook.com/viteee/cutoff)[NCHMCT JEE Cut Off](https://testbook.com/nchmct-jee-exam/cut-off)[SEBI Grade A Cut Off](https://testbook.com/sebi-grade-a/cut-off)[BPSC AE Cut Off](https://testbook.com/bpsc-ae/cut-off)[MPPSC AE Cut Off](https://testbook.com/mppsc-ae/cut-off)[TSGENCO AE Cut Off](https://testbook.com/tsgenco-ae/cut-off)[CMAT Cut Off](https://testbook.com/cmat-exam/cut-off)[ATMA Cut Off](https://testbook.com/atma-exam/cut-off) [SSC CHSL Cut Off](https://testbook.com/ssc-chsl/cut-off)[SSC CPO Cut Off](https://testbook.com/ssc-cpo/cut-off)[RRB NTPC Cut Off](https://testbook.com/rrb-ntpc/cut-off)[RRB Technician Grade-1 Cut Off](https://testbook.com/rrb-technician-grade-1/cut-off)[BPSC Exam Cut Off](https://testbook.com/bpsc-exam/cut-off)[JKPSC KAS Cut Off](https://testbook.com/jkpsc-kas/cut-off)[OPSC OAS Cut Off](https://testbook.com/opsc-oas/cut-off)[WBCS Exam Cut Off](https://testbook.com/wbcs/cut-off)[TSPSC Group 1 Cut Off](https://testbook.com/tspsc-group-1/cut-off)[AIIMS CRE Cut Off](https://testbook.com/aiims-cre/cut-off)[CBSE Junior Assistant Cut Off](https://testbook.com/cbse-junior-assistant/cut-off)[FCI Assistant Grade 3 Cut Off](https://testbook.com/fci-grade-3/cut-off)[AAI Junior Assistant Cut Off](https://testbook.com/aai-junior-assistant/cut-off)[CUET PG Cut Off](https://testbook.com/cuet-pg/cut-off)[JEECUP Cut Off](https://testbook.com/up-polytechnic-jeecup/cut-off)[WBJEE Cut Off](https://testbook.com/wb-jee/cut-off)[LIC AAO Cut Off](https://testbook.com/lic-aao/cut-off)[AAI ATC Cut Off](https://testbook.com/aai-je-atc/cut-off)[ISRO Scientist Cut Off](https://testbook.com/isro-scientist/cut-off)[Mahatransco Technician Cut Off](https://testbook.com/mahatransco-technician/cut-off)[UPPSC AE Cut Off](https://testbook.com/uppsc-ae/cut-off)[MAH MBA CET Cut Off](https://testbook.com/mah-cet-mba/cut-off)[NMAT Cut Off](https://testbook.com/nmat-exam/cut-off) [SSC CPO Cut Off](https://testbook.com/ssc-cpo/cut-off)[SSC Stenographer Cut Off](https://testbook.com/ssc-stenographer/cut-off)[RRB Technician Cut Off](https://testbook.com/rrb-technician/cutoff)[RRB JE Cut Off](https://testbook.com/rrb-je/cut-off)[CGPSC Cut Off](https://testbook.com/cgpsc/cut-off)[Kerala PSC KAS Cut Off](https://testbook.com/kerala-psc-kas/cut-off)[RPSC RAS Cut Off](https://testbook.com/rpsc-ras/cut-off)[HPPSC HPAS Cut Off](https://testbook.com/hppsc-hpas/cut-off)[UKPSC Combined Upper Subordinate Services Cut Off](https://testbook.com/ukpsc-combined-upper-subordinate-service/cut-off)[CWC Junior Superintendent Cut Off](https://testbook.com/cwc-junior-superintendent/cut-off)[FCI Stenographer Cut Off](https://testbook.com/fci-stenographer/cut-off)[CSIR Junior Secretariat Assistant Cut Off](https://testbook.com/csir-junior-secretariat-assistant/cut-off)[EPFO Personal Assistant Cut Off](https://testbook.com/epfo-personal-assistant/cut-off)[NEET Cut Off](https://testbook.com/neet/cut-offs)[MHT CET Cut Off](https://testbook.com/mht-cet/cut-off)[AP EAMCET Cut Off](https://testbook.com/ap-eapcet/cut-off)[LIC Assistant Cut Off](https://testbook.com/lic-assistant/cut-off)[BHEL Engineer Trainee Cut Off](https://testbook.com/bhel-engineer-trainee/cut-off)[Mahatransco AE Cut Off](https://testbook.com/mahatransco-ae/cut-off)[PGCIL Diploma Trainee Cut Off](https://testbook.com/pgcil-diploma-trainee/cut-off)[UPSC IES Cut Off](https://testbook.com/upsc-ies/cut-off)[TANCET Cut Off](https://testbook.com/tancet/cut-off) [SSC MTS Cut Off](https://testbook.com/ssc-mts/cut-off)[RRB Group D Cut Off](https://testbook.com/rrb-group-d/cut-off)[RPF Constable Cut Off](https://testbook.com/rpf-constable/cut-off)[SSC JE Cut Off](https://testbook.com/ssc-je/cut-off)[GPSC Class 1 2 Cut Off](https://testbook.com/gpsc-class-1-2/cut-off)[KPSC KAS Cut Off](https://testbook.com/kpsc-kas/cut-off)[TNPSC Group 1 Cut Off](https://testbook.com/tnpsc-group-1/cut-off)[MPPSC Forest Services Cut Off](https://testbook.com/mppsc-forest-service/cut-off)[UKPSC Lower PCS Cut Off](https://testbook.com/ukpsc-lower-pcs/cut-off)[FCI Manager Cut Off](https://testbook.com/fci-manager/cut-off)[FCI Typist Cut Off](https://testbook.com/fci-typist/cut-off)[NIELIT Scientist B Cut Off](https://testbook.com/nielit-scientist-b/cut-off)[CBSE Assistant Secretary Cut Off](https://testbook.com/cbse-assistant-secretary/cut-off)[JEE Main Cut Off](https://testbook.com/jee-main/cutoff)[TS EAMCET Cut Off](https://testbook.com/ts-eamcet-exam/cut-off)[IIT JAM Cut Off](https://testbook.com/iit-jam/cut-off)[NABARD Development Assistant Cut Off](https://testbook.com/nabard-development-assistant/cut-off)[BMC JE Cut Off](https://testbook.com/bmc-je/cut-off)[MP Vyapam Sub Engineer Cut Off](https://testbook.com/mp-vyapam-sub-engineer/cut-off)[RSMSSB Junior Engineer Cut Off](https://testbook.com/rsmssb-junior-engineer/cut-off)[CAT Cut Off](https://testbook.com/cat-exam/cut-off)[TISSNET Cut Off](https://testbook.com/tissnet-exam/cut-off) Test Series [SSC CGL Mock Test](https://testbook.com/ssc-cgl-exam/test-series)[SSC GD Constable Mock Test](https://testbook.com/ssc-gd-constable/test-series)[RRB ALP Mock Test](https://testbook.com/rrb-alp/test-series)[RPF SI Mock Test](https://testbook.com/rpf-si/test-series)[SSC CGL Maths Mock Test](https://testbook.com/ssc-maths-previous-year-questions/test-series)[RRB GK Mock Test](https://testbook.com/rrb-gk-previous-year-questions/test-series)[NEET Test Series](https://testbook.com/neet/test-series)[UKPSC Upper PCS Test Series](https://testbook.com/ukpsc-combined-upper-subordinate-service/test-series)[MPSC Rajyaseva Test Series](https://testbook.com/mpsc-state-service/test-series)[TSPSC GK Test Series](https://testbook.com/tspsc-general-studies/test-series) [SSC CHSL Mock Test](https://testbook.com/ssc-chsl/test-series)[SSC CPO Mock Test](https://testbook.com/ssc-cpo/test-series)[RRB NTPC Mock Test](https://testbook.com/rrb-ntpc/test-series)[RRB JE Mock Test](https://testbook.com/rrb-je/test-series)[SSC Reasoning Mock Test](https://testbook.com/ssc-reasoning-previous-year-questions/test-series)[RRB Maths Mock Test](https://testbook.com/rrb-maths-previous-year-questions/test-series)[BPSC Test Series](https://testbook.com/bpsc-exam/test-series)[WBCS Test Series](https://testbook.com/wbcs/test-series)[APPSC GK Test Series](https://testbook.com/appsc-general-studies/test-series) [SSC CPO Mock Test](https://testbook.com/ssc-cpo/test-series)[SSC Stenographer Mock Test](https://testbook.com/ssc-stenographer/test-series)[RRB Technician Mock Test](https://testbook.com/rrb-technician/test-series)[SSC JE Mock Test](https://testbook.com/ssc-je-ce/test-series)[SSC CGL GK Mock Test](https://testbook.com/ssc-gk-previous-year-questions/test-series)[CUET Mock Test](https://testbook.com/cuet/test-series)[UPPCS Test Series](https://testbook.com/uppcs/test-series)[TNPSC GK Test Series](https://testbook.com/tnpsc-general-studies/test-series)[APPSC Group 1 Test Series](https://testbook.com/appsc-group-1/test-series) [SSC MTS Mock Test](https://testbook.com/ssc-mts/test-series)[RRB Group D Mock Test](https://testbook.com/rrb-group-d/test-series)[RPF Constable Mock Test](https://testbook.com/rpf-constable/test-series)[SSC CGL English Mock Test](https://testbook.com/ssc-english-previous-year-questions/test-series)[RRB Reasoning Practice Sets](https://testbook.com/rrb-reasoning-previous-year-questions/test-series)[JEE Advance Test Series](https://testbook.com/jee-advanced/test-series)[Kerala PSC Test Series](https://testbook.com/kerala-psc-kas/test-series)[UP GK Test Series](https://testbook.com/up-gk-previous/test-series)[Punjab PCS Mock Test](https://testbook.com/punjab-civil-service-exam/test-series) Super Coaching [UPSC CSE Coaching](https://testbook.com/upsc-cse-coaching)[Railway Coaching Marathi](https://testbook.com/railway-exams-marathi-coaching)[Railway Coaching 2025](https://testbook.com/railway-coaching)[GATE CSE Coaching 2025](https://testbook.com/gate-cse-coaching) [BPSC Coaching](https://testbook.com/bpsc-coaching)[SSC Coaching 2025](https://testbook.com/ssc-coaching)[GATE Civil Coaching 2025](https://testbook.com/gate-civil-coaching)[GATE ECE Coaching 2025](https://testbook.com/gate-ece-coaching) [AAI ATC Coaching](https://testbook.com/aai-atc-coaching)[CUET Coaching 2025](https://testbook.com/cuet-ug-coaching)[Bank Exams Coaching 2025](https://testbook.com/bank-exams-coaching)[SSC GD Coaching 2025](https://testbook.com/ssc-gd-coaching) [MPSC Coaching](https://testbook.com/mpsc-2025-coaching)[GATE Electrical Coaching 2025](https://testbook.com/gate-electrical-coaching)[CDS CAPF AFCAT Coaching 2025](https://testbook.com/cds-capf-afcat-coaching)[SSC CHSL Coaching 2025](https://testbook.com/ssc-chsl-coaching) Testbook Edu Solutions Pvt. Ltd. D- 1, Vyapar Marg, Noida Sector 3, Noida, Uttar Pradesh, India - 201301 [support@testbook.com](mailto:support@testbook.com) Toll Free:[1800 203 0577](tel:18002030577) Office Hours: 10 AM to 7 PM (all 7 days) Company [About us](https://testbook.com/about-us) [Careers We are hiring](https://testbook.com/careers) [Teach Online on Testbook](https://testbook.com/teach)[Media](https://testbook.com/news)[Sitemap](https://testbook.com/sitemap) Products [Test Series](https://testbook.com/online-test-series)[Live Tests and Quizzes](https://testbook.com/free-live-tests-and-quizzes)[Testbook Pass](https://testbook.com/pass)[Online Videos](https://testbook.com/free-live-classes)[Practice](https://testbook.com/practice-questions)[Live Classes](https://testbook.com/free-live-classes)[Blog](https://testbook.com/blog/)[Refer & Earn](https://testbook.com/referrals)[Books](https://testbook.com/promos/mock-test-book.html) [Exam Calendar](https://testbook.com/government-exam-calendar) [GK & CA](https://testbook.com/current-affairs/current-affairs-quiz) [Teacher Training Program](https://testbook.com/teachers-training-program)[Doubts](https://testbook.com/doubts)[Hire from SkillAcademy](https://testbook.com/promos/skillacademy-hire-from-us.html) Our App [![app-store](https://testbook.com/angular/assets/img/template-img/appstore.svg)](https://link.testbook.com/iosAppStore)[![play-store](https://testbook.com/angular/assets/img/template-img/playstore.svg)](https://testbook.app.link/4D2CxmX4r6) Follow us on Copyright © 2014-2024 Testbook Edu Solutions Pvt. Ltd.: All rights reserved [User Policy](https://testbook.com/acceptable-use-policy)[Terms](https://testbook.com/terms-of-service)[Privacy](https://testbook.com/privacy-policy) ![WhatsApp](https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg) ![WhatsApp](https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg) Got any Queries?Quickly chat with our Experts on WhatsApp\! ![SuperPass Logo](https://cdn.testbook.com/1746599497462-ProMaxLogo.png/1746599498.png)Access Live Classes, Mocks, PYP & Notes for 375+ Exams\! Start ₹1 Trial ×
Readable Markdown
Exponential smoothing is a way of smoothing out the data by removing much of the noise from the data to give a better forecast. It was proposed in the late 1950s (Brown, 1959; Holt, 1957; Winters, 1960), and has some of the most successful forecasting methods in [statistics](https://testbook.com/maths/statistics). Forecasts produced using exponential smoothing methods are weighted averages of past observations, with weights decaying exponentially on the observations which get older. In this article we will discuss Exponential Smoothing in detail under [types of statistics](https://testbook.com/maths/types-of-statistics). ## Exponential Smoothing Exponential smoothing is a powerful technique used to forecast univariate time series data. It operates on the fundamental principle that a prediction is formed by combining past observations or lags, giving more weight to recent data while gradually diminishing the importance of older observations. This weight allocation follows an [exponential decay](https://testbook.com/maths/exponential-decay) pattern, enabling the model to adapt dynamically to changes in the underlying patterns of the data. By assigning exponentially decreasing weights to historical data points, exponential smoothing captures both short-term fluctuations and long-term trends, allowing for [accurate](https://testbook.com/learn/maths-accuracy/) and flexible forecasting. This method is particularly beneficial when dealing with time series data that exhibits seasonality, trends, or irregular patterns. One of the strengths of exponential smoothing is its simplicity and interpretability. The model parameters, such as the smoothing factor or the initial values, can be easily understood and adjusted to suit the characteristics of the data. Moreover, exponential smoothing provides a balance between responsiveness to recent changes and stability, making it a valuable tool for generating reliable forecasts. There are different types of Exponential Smoothing such as listed below. - Simple Moving Average (SMA), - Exponential Smoothing (SES), - Autoregressive Integrated Moving Average (ARIMA), - Neural Network (NN), - Croston ## Exponential Smoothing Formula We normally use Single Exponential Smoothing. The formula is mentioned below. s t \= α x t \+ ( 1 − α ) s t − 1 \= s t − 1 \+ α ( x t − s t − 1 ) Where, s t \= smoothed statistic, s t − 1 \= previous smoothed statistic, α \= smoothing factor of data which is 0 \< α \< 1 t \= time period ## Exponential Smoothing Hyperparameters Hyperparameters are parameters that need to be specified before applying a [statistical](https://testbook.com/learn/maths-statistics/) model. In the context of exponential smoothing, there are two main hyperparameters to consider: the smoothing factor (α) and the initial smoothed value. **Smoothing Factor (α)**: The smoothing factor, denoted as α (alpha), is a hyperparameter that determines the weight given to the most recent observations. It lies between 0 and 1. A smaller α gives more weight to older data, while a larger α emphasizes recent data. The choice of α depends on the characteristics of the data and the desired level of responsiveness to recent changes. For example, let's consider monthly sales data for a product. If the sales data is stable with minimal fluctuations, a larger α (e.g., 0.9) may be suitable as it gives more weight to recent observations and quickly captures any changes in the trend. On the other hand, if the sales data is volatile or exhibits seasonal patterns, a smaller α (e.g., 0.1) might be preferable to smooth out the variations and provide a more stable forecast. **Initial Smoothed Value:** The initial smoothed value is another hyperparameter that needs to be determined. It represents the smoothed value for the first observation in the data set. The choice of the initial smoothed value can have an impact on the subsequent smoothed values and forecasts. There are different approaches to setting the initial smoothed value. One option is to use the first observation itself as the initial smoothed value. Alternatively, you can calculate the average of a few initial observations to obtain a more stable starting point. For example, if we have monthly sales data, the initial smoothed value can be set as the first observed sales value. This assumes that the initial value is a reasonable representation of the underlying trend. **Seasonal Smoothing Factor (β):** If the data exhibits seasonality, where patterns repeat over fixed intervals, a seasonal smoothing factor (β) can be introduced. This hyperparameter determines the weight given to the seasonal component of the data. It is used in models such as Holt-Winters' exponential smoothing. **Trend Smoothing Factor (γ):** When there is a noticeable trend in the data, a trend smoothing factor (γ) can be incorporated. This hyperparameter controls the weight assigned to the trend component. Models like Holt-Winters' exponential smoothing with trend use γ to capture and forecast trends in the data. **Seasonal Period (m):** For data with seasonality, the seasonal period (m) represents the length of the repeating pattern or cycle. It helps in determining the appropriate length of the seasonal components and adjusting the forecasts accordingly. The choice of m is crucial to ensure accurate modelling and forecasting. **Seasonal Damping Factor (φ):** In some cases, the amplitude of the seasonal variations may decrease over time. The seasonal damping factor (φ) can be introduced to account for this decay in the seasonal pattern. It helps to adjust the seasonal component of the model accordingly. **Window Size or Lookback Period:** In certain scenarios, a window size or lookback period can be defined to limit the number of historical observations considered in the smoothing process. This hyperparameter allows for more emphasis on recent data while reducing the influence of older observations. It can be particularly useful when the data exhibits non-stationarity or when there are significant changes in the underlying patterns. These additional hyperparameters offer more flexibility and control when configuring exponential smoothing or related time series models. They allow for the incorporation of specific characteristics of the data, such as seasonality and trends, resulting in more accurate forecasts. ## Exponential Smoothing Method There are three types of Exponential Smoothing method as mentioned below. ### Single Exponential Smoothing If the data which is observed has no trend and no seasonal pattern, then we use the single exponential smoothing method to forecast the time series. This method uses weighted moving averages with exponentially decreasing weights. The single exponential smoothing formula is given by, s t \= α x t \+ ( 1 − α ) s t − 1 \= s t − 1 \+ α ( x t − s t − 1 ) Where, s t \= smoothed statistic, s t − 1 \= previous smoothed statistic, α \= smoothing factor of data which is 0 \< α \< 1 t \= time period ### Double Exponential Smoothing It is also known as Holt’s trend corrected or second-order exponential smoothing. This method is used to forecast the time series when the data has a linear trend with no seasonal pattern. We use the double exponential smoothing to introduce a term considering the possibility of a series indicating some form of trend. This slope component is itself formed through exponential smoothing. The formula for Double Exponential Smoothing is mentioned below. Where, s t \= α x t \+ ( 1 − α ) s t − 1 \= s t − 1 \+ α ( x t − s t − 1 ) β t \= β ( s t − s t − 1 ) \+ ( 1 − β ) b t − 1 s t − 1 \= previous smoothed statistic, α \= smoothing factor of data which is 0 \< α \< 1 t \= time period b t \= best estimate of trend at time *t* β trend smoothing factor which is 0 \< β \< 1 ### Triple Exponential Smoothing In this method, exponential smoothing is used three times. It is mainly used to forecast the time series when the data has both linear trend and seasonal patterns. It is also known as Holt-Winters exponential smoothing. The formula for Triple Exponential Smoothing is mentioned below. S t \= α y t I t − L \+ ( 1 − α ) ( S t − 1 \+ b t − 1 ) b t \= γ ( S t – S t − 1 ) \+ ( 1 – γ ) b t − 1 I t \= β y t S t \+ ( 1 – β ) I t − L F t \+ m \= ( S t \+ m b t ) I t − L \+ m Where, y is the observation S is the smoothed observation B is the trend factor I is the seasonal index F is the forecast at *m* periods ahead T is an index denoting a time period Learn about [Negation of a Statement](https://testbook.com/maths/negation-of-a-statement) ## How to Configure Exponential Smoothing Exponential smoothing is a technique used in time series analysis to forecast future values based on historical data. It is particularly useful when the data shows a trend or seasonality. Here's a step-by-step guide on how to configure exponential smoothing: Step 1: Gather the historical data. Collect the relevant data points over a specific time period. For example, let's consider monthly sales data for a product for the past year. Step 2: Choose the smoothing factor. The smoothing factor, denoted as α (alpha), determines the weight given to the most recent observations. It lies between 0 and 1. A smaller α gives more weight to older data, while a larger α emphasizes recent data. The choice of α depends on the characteristics of the data and the desired level of responsiveness to recent changes. Step 3: Calculate the initial smoothed value. To begin, we need an initial smoothed value. This can be the first observation in the data set or the average of a few initial values. For example, let's assume the initial smoothed value is the first observed sales value. Step 4: Calculate the smoothed values. Starting from the second observation, we calculate the smoothed value using the formula: Smoothed Value(t) = α \* Observation(t) + (1 - α) \* Smoothed Value(t-1) Here, Observation(t) represents the actual value at time t, and Smoothed Value(t-1) is the smoothed value from the previous time period. Step 5: Repeat the process for subsequent observations. Continue calculating the smoothed values for each observation until you reach the end of the data set. Step 6: Use the smoothed values for forecasting. Once you have the smoothed values, you can use them to forecast future values based on the underlying trend and seasonality patterns. Example: Let's say we have the following monthly sales data for a product: January: 100 units February: 120 units March: 115 units April: 130 units May: 135 units Assuming an initial smoothed value of 100 units and a smoothing factor (α) of 0.3, we can calculate the smoothed values as follows: February: Smoothed Value(2) = 0.3 \* 120 + 0.7 \* 100 = 108 March: Smoothed Value(3) = 0.3 \* 115 + 0.7 \* 108 = 109.95 April: Smoothed Value(4) = 0.3 \* 130 + 0.7 \* 109.95 = 117.9855 May: Smoothed Value(5) = 0.3 \* 135 + 0.7 \* 117.9855 = 121.19085 These smoothed values can be used to forecast sales for future months. ## Exponential Smoothing in Python Python code for single, double, and triple exponential smoothing. These techniques are commonly used in time series forecasting. Here's an example of how to implement them: Single Exponential Smoothing (SES): import pandas as pd from statsmodels.tsa.holtwinters import SimpleExpSmoothing \# Example data data = pd.Series(\[10, 12, 15, 13, 11, 14, 16\]) \# Apply single exponential smoothing model = SimpleExpSmoothing(data) fitted\_model = model.fit() forecast = fitted\_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted\_model.fittedvalues) print("Forecast:", forecast) Double Exponential Smoothing (Holt's Method): import pandas as pd from statsmodels.tsa.holtwinters import ExponentialSmoothing \# Example data data = pd.Series(\[10, 12, 15, 13, 11, 14, 16\]) \# Apply double exponential smoothing (Holt's method) model = ExponentialSmoothing(data, trend='add') fitted\_model = model.fit() forecast = fitted\_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted\_model.fittedvalues) print("Forecast:", forecast) Triple Exponential Smoothing (Holt-Winters' Method): import pandas as pd from statsmodels.tsa.holtwinters import ExponentialSmoothing \# Example data data = pd.Series(\[10, 12, 15, 13, 11, 14, 16\]) \# Apply triple exponential smoothing (Holt-Winters' method) model = ExponentialSmoothing(data, trend='add', seasonal='add', seasonal\_periods=4) fitted\_model = model.fit() forecast = fitted\_model.predict(start=len(data), end=len(data)+2) print("Smoothed data:", fitted\_model.fittedvalues) print("Forecast:", forecast) Make sure to install the statsmodels library if you haven't already (pip install statsmodels). In the code snippets above, we use the statsmodels.tsa.holtwinters module to implement the exponential smoothing methods. We define the data as a pandas Series and pass it to the corresponding model class (SimpleExpSmoothing, ExponentialSmoothing) along with any additional parameters (e.g., trend, seasonal) for double and triple exponential smoothing. We then fit the model, obtain the fitted values (smoothed data), and make future forecasts using the predict method. ## Uses of Exponential Smoothing Exponential Smoothing is widely used in forecasting applications at different levels such as strategic, tactical and operational. - Strategic Level: It is deployed for planning on investment and growth and also for the impact of innovations. - Tactical Level: It is implemented for deriving expenditure, inventory concern and customer satisfaction. - Operational Level: It is used to make targets, affirmation with standards, and predicting qualities. ## Exponential Smoothing Solved Examples **Problem 1:**Find the exponential smoothing forecasts for periods 2-10 using the following data, whereα \= 0\.10. Assume s 1 \= d 1 | | | |---|---| | **Week** | **Demand** | | 1 | 820 | | 2 | 775 | | 3 | 680 | | 4 | 655 | | 5 | 750 | | 6 | 802 | | 7 | 798 | | 8 | 689 | | 9 | 775 | | 10 | ? | **Solution:** We know the formula for exponential smoothing is given by, s t \= s t − 1 \+ α ( x t − s t − 1 ) Where, s t \= forecast value for coming time period, s t − 1 \= Forecast value in 1 past time period, α \= smoothing factor of data which is 0 \< α \< 1 t \= time period x t \= Actual occurrence in the 1 past time period, Now we calculate the following table , | | | | |---|---|---| | **Week** | **Demand(x t)** | **/ a l p h a \= 0\.10** | | 1 | 820 | 820 | | 2 | 775 | 820 | | 3 | 680 | 815 | | 4 | 655 | 801\.5 | | 5 | 750 | 787 | | 6 | 802 | 783 | | 7 | 798 | 785 | | 8 | 689 | 786\.3 | | 9 | 775 | 776\.6 | | 10 | ? | 776\.4 | The detailed calculation is given below.. s t \= s t − 1 \+ α ( x t − s t − 1 ) ⇒ s 2 \= s 2 − 1 \+ 0\.10 ( x 1 − s 2 − 1 ) \= 820 Similarly we get, s 10 \= 776\.4, which is the required answer. [Testbook](https://testbook.com/) is a platform where you can learn new concepts from the very basics and achieve good marks in your exams. You can also prepare for different competitive exams with the help of different mock tests available on this platform Download the [TestBook App](https://link.testbook.com/5BfIEjq6Vyb) to access all such features instantly.
Shard135 (laksa)
Root Hash12665880941046989535
Unparsed URLcom,testbook!/maths/exponential-smoothing s443