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:
Addition of 4 digit Numbers
Next article icon

Addition of 4 digit Numbers

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

Numbers are the most important part of mathematics and our day-to-day life, without numbers we cannot do counting like counting the total number of things, date, time, money, etc. In mathematics, numbers are defined as an arithmetic value that is used to represent a quantity and further used in the calculation. Numbers can be even, odd, prime, composite, decimal, fraction, rational, irrational, natural, whole, real, complex, etc. Using numbers we can perform different types of arithmetic operations like addition, subtraction, multiplication, division, etc. In this article, we will learn how to add 4-digit numbers. 

Addition of 4-digit numbers

The four-digit numbers sum is as simple as the sum of two-digit numbers or three-digit and requires you only to learn with the sum of single-digit numbers and how to deal with carries.

Steps to add 4-digit numbers:

Step 1: Place the given 4-digit number below the another given 4-digit number and arrange them into columns according to their places like ones, tens, hundreds and thousands.

Step 2: Now start adding columns in a sequence starting from ones.

Step 3: When the sum of two digits in once's column is greater than 9 like 9 + 5 = 14, then put 4 in the result and pass 1 as a carry to the tens's column which will add with numbers present in that column. This carry concept is the same for all the columns.

Below is the pictorial example of how to add 4-digit numbers.

1. Addition of numbers that do not generate carry

Given four-digit numbers that are 2416 and 1222. Now we add them according to the above steps:

Step 1: Place the given 4-digit number that is 2416 below another 3-digit number 1222 and then arrange them into columns according to their places like once, tens, hundreds, and thousands.

 THTO
+

2

1

4

2

1

2

6

2

Step 2: Now we add the numbers column-wise. First, we add the number present in once's column(i.e. 6 + 2 = 8), then tens's column(i.e. 1 + 2 = 3), then hundreds's column(i.e. 4 + 2 = 6) and then thousands's column(i.e. 2 + 1 = 3). 

 THTO
+

2

1

4

2

1

2

6

2

 3638

So the final result of the addition is 3638.

2. Addition of numbers that generate carry

Given four-digit numbers that are 3554 and 2879. Now we add them according to the above steps:

Step 1: Arrange the numbers according to their places like once, tens, hundreds, and thousands.

 THTO

 

+

3

2

5

8

5

7

4

9

Step 2: Now we first add the number of once's column that is 4 + 9 = 13. Here the sum is greater than 9 so we write 3 in the result and raise1 as a carry for tens's column.

 THTO

 

+

3

2

5

8

5

7

4

9

    3

Step 3: Add the numbers of tens's column and the carry that is 5 + 7 + 1(carry) = 13. Similarly, we write 3 in the result and raise 1 as a carry for hundreds's columns. 

 THTO
(carry)  1 

 

+

3

2

5

8

5

7

4

9

   33

Step 4: Add the numbers of the hundreds's column and the carry that is 5 + 8+ 1(carry) = 14. Similarly, we write 4 in the result and raise 1 as a carry for thousands's columns. 

 THTO
(carry) 11 

 

+

3

2

5

8

5

7

4

9

  433

Step 5: Add the numbers of the thousands's column and the carry that is 3 + 2 + 1(carry) = 6. 

 THTO
(carry)111 

 

+

3

2

5

8

5

7

4

9

 6433

So the final result of the addition is 6433.

3. Addition of three 4-digit numbers

Given three 4-digit numbers are 471, 582, and 693. Now we calculate their sum step by step:

Step 1: Arrange the numbers according to their places like once, tens, hundreds, and thousands.

 THTO

+

4

3

2

5

3

4

3

5

4

4

2

8

Step 2: Now we first add the number of once's column that is 4 + 2 + 8 = 14. Here the sum is greater than 9 so we write 4 in the result and raise1 as a carry for tens's column.

 THTO

+

4

3

2

5

3

4

3

5

4

4

2

8

    4

Step 3: Add the numbers of tens's column and the carry that is 3 + 5 + 4 + 1(carry) = 13. Similarly, we write 3 in the result and raise 1 as a carry for hundreds's columns. 

 THTO
(carry)  1 

+

4

3

2

5

3

4

3

5

4

4

2

8

   34

Step 4: Add the numbers of hundreds's column and the carry that is 3 + 5 + 4 + 1(carry) = 13. Similarly, we write 3 in the result and raise 1 as a carry for thousands's columns. 

 THTO
(carry) 11 

+

4

3

2

5

3

4

3

5

4

4

2

8

  334

Step 5: Add the numbers of the thousands's column and the carry that is 4 + 3 + 2 + 1(carry) = 10. 

 THTO
(carry)111 

+

4

3

2

5

3

4

3

5

4

4

2

8

 10334

So the final result of the addition is 6433.

Sample Questions

Question 1: Find the sum of 3221, 1234, and 1111.

Solution:

Given 4-digit numbers are 3221, 1234, and 1111

 THTO
(carry)000 

+

3

1

1

2

2

1

2

3

1

1

4

1

 5566

So the result of the addition is 5566.

Question 2: Find the sum of 5421, 2345, and 1982.

Solution:

Given 4-digit numbers are 5421, 2345, and 1982.

 THTO
(carry)110 

+

5

2

1

4

3

9

2

4

8

1

5

2

 9648

So the result of the addition is 9648.

Question 3: Find the sum of 7871, 2321, and 1090.

Solution:

Given 4-digit numbers are 7871, 2321, and 1090.

 THTO
(carry)110 

 

 

+

7

2

1

8

3

0

7

2

9

1

1

0

 11281

So the result of the addition is 11281.

Question 4: Find the sum of 8328, 4322, and 1231.

Solution:

Given 4-digit numbers are 8328, 4322, and 1231

 THTO
(carry)001 

 

 

+

8

4

1

3

3

2

2

2

3

8

2

1

 13881

So the result of the addition is 13881.

Question 5: Find the sum of 889, 1231, and 1100.

Solution:

Given 4-digit numbers are 889, 1231, and 1100.

 THTO
(carry)111 

 

 

+

9

1

1

8

2

1

8

3

0

9

1

0

 12220

So the result of the addition is 12220.


Next Article
Addition of 4 digit Numbers

G

geeky01adarsh
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Maths-Formulas
  • Maths-Calculators

Similar Reads

    Addition of 3 digit Numbers
    Numbers are the most important part of mathematics and our day-to-day life, without numbers we cannot do counting like counting the total number of things, date, time, money, etc. In mathematics, numbers are defined as an arithmetic value that is used to represent a quantity and further used in the
    5 min read
    Addition of Integers
    Addition of integers is a fundamental arithmetic operation essential for various mathematical tasks and real-life applications. Addition of integers forms the basis for solving equations, managing finances, and analyzing data. Integers are whole numbers that can be negative, zero as well as positive
    6 min read
    Addition Table
    Addition is the arithmetic operation in mathematics that combines two or more numbers to find their total or sum. An addition table is a mathematical tool used to organize and display the results of adding pairs of numbers. It is a type of operation table, specifically designed for addition.It shows
    4 min read
    Addition Tricks
    Addition Tricks are are the techniques that helps to calculate sum in a very quick manner. It is fundamental to learn all the addition tricks in the mathematics to perform quick addition. In this article, we will learn addition tricks for performing sum of large numbers without use of pen and paper.
    7 min read
    Multiply by 1-digit numbers
    Multiplication is one of the fundamental arithmetic operations important for various aspects of mathematics and daily life. Understanding how to multiply by 1-digit numbers is a crucial step for students as it forms the basis for more complex multiplication, division, and other mathematical concepts
    5 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