Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Number System and Arithmetic
  • Algebra
  • Set Theory
  • Probability
  • Statistics
  • Geometry
  • Calculus
  • Logarithms
  • Mensuration
  • Matrices
  • Trigonometry
  • Mathematics
Open In App
Next Article:
Standard Error
Next article icon

Standard Error

Last Updated : 23 Jan, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Standard Error is the measure of the variability of a sample statistic used to estimate the variability of a population. Standard Error is important in dealing with sample statistics, such as sample mean, sample proportion, etc. Sample Error Formula is used to determine the accuracy of a sample that reflects a population. The standard error formula is the discrepancy between the sample mean and the population mean.

In this article, we will learn about, Standard Error, Standard Error Formula, Standard Error of Mean, Standard Error of Estimate, related Examples, and Error in detail.

What is Standard Error?

The term "sample" in statistics refers to a specific set of information that is generated. The data we obtained on the height of some people in a locality, for example, maybe the sample. A population is a collection of people from which we draw a sample. There are several ways to define a population, and we must always be clear about what constitutes a population. This collection necessitates a large number of calculations.

Standard error represents how well a given sample represents the population. The Standard Error indicates how well the sample mean predicts the real population mean.

Standard Error(SE) Formula

The SE formula is used to determine the reliability of a sampling that represents a population. The sample mean that differs from the provided population and is expressed as:

SE = S/√(n)

where,

  • S is Standard Deviation of Data
  • n is Number of Observations

Standard Error of Mean (SEM)

Standard Error of Mean(SEM) is also known by the name Standard Deviation of Mean, is the standard deviation of the measure of sample mean of the population. Standard Error is used when we have to find the population mean from the sample of data and we take two samples to get two different mean in that case we use Standard Error Mean.

Standard Error Mean formula is the ratio of standard deviation to the root of sample size,

SEM = S/√(n)

where,

  • S is Standard Deviation
  • n is Number of Observations

Standard Error of Estimate (SEE)

Standard Error Estimate is use to find the accuracy of prediction of any event. Its abbreviation is SEE. Standard Error Estimate (SEE) is also called the Sum of Sqaures Error. SEE is the square root of average squared deviation.

Standard Error of Estimate(SEE) formula is discussed below,

SEE = √[Σ(xi - μ)/(n - 2)]

where,

  • xi is values of Data
  • μ is Mean Value of Data
  • n is Sample Size


How to Calculate Standard Error?

Various steps to calculate the standard error are added below,

Step 1: Find the number of measurement(n) and find the sample mean(μ).

Step 2: Find the variation of sample values from the mean value.

Step 3: Find the square of the deviation and find their sum. Σ(xi – μ)²

Step 4: Divide the sum from step 3 by (n-1).

Step 5: Take the square root of the number, i.e. standard deviation (σ).

Step 6: Divide the standard deviation by the square root of measurement(n).

Read More,

  • Standard Deviation Formula
  • Mode
  • Mean Deviation
  • Statistics Formulas

Standard Error Solved Examples

Example 1: Find the standard error for the sample data: 1, 2, 3, 4, 5.

Solution:

Mean of Given Data = (1+2+3+4+5)/5

μ = 15/5

μ = 3

Standard Deviation = √((1 - 3)2 + (2 - 3)2 + (3 - 3)2 + (4 - 3)2 + (5 - 3)2)/(5 - 1)

σ = √((4 + 1 + 0 + 1 + 4)/4)

σ = √(10/4)

σ = 1.5

SE = 1.5/√5

SE = 0.67

Example 2: Find the standard error for the sample data: 2, 3, 4, 5, 6.

Solution:

Mean of Given Data = (2+3+4+5+6)/5

μ = 20/5

μ = 4

Standard Deviation(σ) = √((2 - 4)2 + (3 - 4)2 + (4 - 4)2 + (5 - 4)2 + (6 - 4)2)/(5 - 1)

σ = √((4 + 1 + 0 + 1 + 4)/4)

σ = √(10/4)

σ = 1.58

SE = 1.58/√5

SE = 0.706

Example 3: Find the standard error for the sample data: 10, 20, 30, 40, 45.

Solution:

Mean of the given data = (10+20+30+40+45)/5

μ = 145/5

μ = 29

Standard Deviation(σ) = √((10 - 29)2 + (20 - 29)2 + (30 - 29)2 + (40 - 29)2 + (45 - 29)2)/(5 - 1)

σ = √(820/4)

σ = 14.317

SE = 14.317/√6

SE = 5.84

Example 4: Find the standard error for the sample data: 2, 6, 9, 5.

Solution:

Mean of Given Data = (2+6+9+5)/4

μ = 5.5

Standard Deviation = √((2 - 5.5)2 + (6 - 5.5)2 + (9 - 5.5)2 + (5 - 5.5)2)/(4 - 1)

σ = √(25/3)

σ = 2.88

SE = 2.8/√5.5

SE = 1.19

Example 5: Find the standard error for the sample data: 5, 8, 10, 12.

Solution:

Mean of Given Data(μ) = (5+8+10+12)/4

μ = 8.75

Standard Deviation = √((5 - 8.75)2 + (8 - 8.75)2 + (10 - 8.75)2 + (12 - 8.75)2)/(4 - 1)

σ = √(26.75/3)

σ = 2.98

SE = 2.98/√8.75

SE = 1.0074


Next Article
Standard Error

P

parmaramolaksingh1955
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Maths MAQ
  • Math-Statistics
  • Maths-Formulas

Similar Reads

    Standard Normal Distribution
    Standard normal distribution, also known as the z-distribution, is a special type of normal distribution. In this distribution, the mean (average) is 0 and the standard deviation (a measure of spread) is 1. This creates a bell-shaped curve that is symmetrical around the mean.In this article we have
    8 min read
    What is Internet Standard?
    Internet standards are fundamental to the global internet, which given the complex and diverse nature of the systems and technologies on the internet attempts to prove how these systems can interact. These are standardization patterns that are provided by the Internet Engineering Task Force (IETF),
    5 min read
    ANSI C - C89 Standard
    The C programming language, developed in the early 1970s by Dennis Ritchie at Bell Labs, quickly gained popularity due to its efficiency, portability, and flexibility. However, C variations and extensions by different compiler vendors led to compatibility issues. To address this, the American Nation
    5 min read
    Standard Form of Quadratic Equation
    The standard Form of the Quadratic Equation is ax2 + bx + c = 0, where a, b, and c are constants and x is a variable. Standard Form is a common way of representing any notation or equation. Quadratic equations can also be represented in other forms, such as,Vertex Form: a(x - h)2 + k = 0Intercept Fo
    9 min read
    What is the standard form of 18?
    Exponents and powers are used to show very large numbers or very small numbers in a simplified manner. For example, if we have to show 2 × 2 × 2 × 2 in a simple way, then we can write it as 24, where 2 is the base and 4 is the exponent. The whole expression 24 is said to be power. Power is a value o
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences