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:
Divisibility Rule of 9
Next article icon

Divisibility Rule of 9

Last Updated : 25 Oct, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Divisibility rules help us quickly determine if a number can be divided evenly by another without performing long division. One useful rule is the divisibility rule for 9.

Divisibility-Rule-of-9

More Examples of Divisibility by 9 Check

729 : Sum the digits = 7 + 2 + 9 = 18 which is divisible by 9. So, 729 is divisible by 9.

5463 : Sum the digits = 5 + 4 + 6 + 3 = 18 which is divisible by 9. So, 5463 is divisible by 9.

Proof of the Divisibility by 9 Rule

Please note that a number would be divisible by 9 if the remainder is 0 when divided by 9.

The main reason for the rule's working is, that when we divide any power of 10 with 9, we always get the remainder as 1. For example 100, 101, 102, 103, ... all give remainder as 1 when divided by 9.

For any number say 5463, we can re-write it as
5 x 103 + 4 x 102 + 6 x 101 + 3
When we find remainder with the above expression, we can notice that all powers of 10 would give remainder 1, so the remainder is going to be same as remainder we get from 5 + 4 + 6 + 3 which is sum of digits of 9. So the remainder of a number when divided by 9 is same as the remainder when its digit sum is divided.

What is the Remainder when Divided by 9?

As we can see from the proof, the above rule can be used to find remainder also. When we divide a large number by 9, the remainder is same when sum of its digits is divided by 9. For example, the remainder 12121 when divided by 9 is same as the remainder of (! + 2 + 1 + 2 + 1) when divided by 9 which is 7

Verification with Table of 9

The following are the numbers in table of 9 and their sum of digits. We can clearly see that all digit sums are multiples of 9.

9 : 9
18 : 1 + 8
27 : 2 + 7
36 : 3 + 6
45 : 4 + 5
54 : 5 + 4
63 : 6 + 3
72 : 7 + 2
81 : 8 + 1
90 : 9 + 0

Other Divisibility Rules:

  • Divisibility by 5
  • Divisibility Rule of 8
  • Divisibility Rule of 3
  • Divisibility Rule of 11
  • Divisibility Rule of 13

Solved Examples on Divisibility by 9

Example 1: Is 9738 divisible by 9?

Solution:

Given number is 9738
To check divisibility by 9 we will sum individual digit of given numbers
Add the digits: 9 + 7 + 3 + 8 = 27
Check the sum: 27 is divisible by 9

So, 9738 is divisible by 9.

Example 2: Check if 2765 divisible by 9?

Solution:

Given number is 2765
To check divisibility by 9 we will sum individual digit of given numbers
Add the digits: 2 + 7 + 6 + 5 = 20
Check the sum: 20 not is divisible by 9

So, 2765 is not divisible by 9.

Example 3: Find the smallest 2 digit number divisible by 9?

Solution:

The smallest 2-digit number is 10
When we divide 10 by 9 then remainder 1 left
If we subtract 9 from remainder then 8 left
Now, we have to add 8 to 10 to get the smallest 2-digit number which is completely divisible by 9
When we add = 10 + 8 = 18

Now smallest 2-digit divisible by 9 is 18.

Example 4: How many numbers between 400 and 500 are divisible by 9?

Solution:

First, find the smallest number divisible by 9 that is greater than or equal to 400
Smallest number between 400 and 500 that is divisible by 9 is 405
Now, find the largest number divisible by 9 that is less than or equal to 500
Largest number between 400 and 500 that is divisible by 9 is 495

Now total numbers between 405 and 495 ,
Using nth term formula of A.P. where first term is 405, common difference is 9 and nth term is 495
495 = 405 + (n − 1) × 9
⇒ 495 = 405 + 9n − 9
⇒ 495 =396 + 9n
⇒ 495 − 396 = 9n
⇒ 99 = 9n
⇒ n = 99 / 9 = 11.

Therefore, there are 11 numbers between 400 and 500 that are divisible by 9.

Practice Questions on Divisibility by 9

Problem 1: Is the number 486 divisible by 9?

Problem 2: Determine if 729 is divisible by 9.

Problem 3: Check if 1,125 is divisible by 9.

Problem 4: Is the number 3,618 divisible by 9?

Problem 5: Determine if 5,832 is divisible by 9.

Problem 6: Check if 14,553 is divisible by 9.

Problem 7: Is the number 27,891 divisible by 9?

Problem 8: Determine if 45,018 is divisible by 9.

Problem 9: Check if 67,527 is divisible by 9.

Problem 10: Is the number 81,099 divisible by 9?

Also Read: Practice Questions on Divisibility Rules

Conclusion

In conclusion, the rule of divisibility by 9 is a simple yet powerful tool that helps quickly determine if a number can be divided evenly by 9 without remainder. By simply adding the digits of a number and checking if the resulting sum is divisible by 9, we can easily verify the divisibility of any number.


Next Article
Divisibility Rule of 9

R

rekhamiseswt
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Number System

Similar Reads

    Divisibility Rule of 19
    The divisibility rule for 19 states that a number is divisible by 19 if the following condition is met:Divisibility by 19: To determine if a number is divisible by 19, Step 1:Double the last digit.Step 2: Add this doubled value to the remaining parts of the number.Step 3: Check if the result is divi
    3 min read
    Divisibility Rule of 29
    Divisibility rules are simple shortcuts that help determine if one number is divisible by another without performing full division. The divisibility rule for 29 helps us quickly determine if a number is divisible by 29 without needing to perform long division.Divisibility Rule of 29:Take the number'
    4 min read
    Divisibility Rule of 3
    Divisibility rule of 3 is a simple mathematical guideline used to determine whether a given integer is divisible by 3 without performing the actual division operation.The divisibility rule of 3 states that a number is divisible by 3 if the sum of the digits of the number is divisible by 3. By using
    7 min read
    Divisibility Rule of 5
    The divisibility rule is a simple rule to determine whether a number can be divided by a certain number without leaving a remainder. The Divisibility Rule of 5 simplifies the process of determining whether a number can be divided by 5 without leaving a remainder. This rule states that if the last di
    8 min read
    Divisibility Rule of 4
    The divisibility rule of 4 is a simple mathematical rule or test that is used to determine whether a given integer is divisible by 4 or not without performing the actual division. It saves time by checking the divisibility of a number by 4 without doing the actual division.This rule states that eith
    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