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:
Square Root Property Formula
Next article icon

Square Root Property Formula

Last Updated : 25 Dec, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

When one integer is multiplied by another integer, the resulting number is referred to as a square number. A number's square root is that factor of a number that, when multiplied by itself, yields the original number. The square of a number a is denoted by a2 and its square root is represented by the symbol √a. For example, the square of the number 4 is 4 × 4 = 16. But the square root of 4 is √4 = 2. 

Square Root Property Formula

There are certain properties or characteristics that need to be followed while solving square root expressions. 

Property 1: If two square root values have to be multiplied individually, they can be multiplied inside a common square root for the purpose of simplification, i.e., √p ⋅ √q = √(pq).

Example:

  • √2 ⋅ √3 = √6
  • √5 ⋅ √3 = √15

Property 2: If the square root of a fraction has to be evaluated, then the square roots of its numerator and denominator may be evaluated separately and then divided by each other, i.e., √(p/q) = √p/√q.

Example:

  • √(13/5) = √13/√5
  • √(5/12) = √5/√12

Property 3: Any two values cannot be added/subtracted together in a single square root if they are in separate roots, i.e., √a ± √b ≠ √(a ± b).

Example:

  • √3 + √5 ≠ √8
  • √4 + √7 ≠ √11

Property 4: If a value present in the square root is a perfect square, then it must be taken out of the root to simplify the calculations in the expression, i.e., √c2p = c√p.

Example:

  • √22 ⋅ 5 = 2√5
  • √62 ⋅ 7 = 6√7

Sample Problems

Problem 1. Simplify the expression √12 ⋅ √7 + √15/√147.

Solution:

We have the expression, √12 ⋅ √7 + √15/√147

Using the square root properties we have,

√12 ⋅ √7 + √15/√98 = √(2 ⋅ 2 ⋅ 3) ⋅ √7 + √15/√(3 ⋅ 7 ⋅ 7)

= 2 ⋅ √21 + (1/7) √15/√3

= 2√21 + (1/7) √(15/3)

= 2√21 + √5/7

Problem 2. Simplify the expression √219/√3 + √153 ⋅ √49.

Solution:

We have the expression, √219/√3 + √153 ⋅ √49

Using the square root properties we have,

√219/√3 + √153 ⋅ √49 = √(219/3) + √(3 ⋅ 3 ⋅ 17) ⋅ √(7 ⋅ 7)

= √73 + 3√17 ⋅ 7

= √73 + 21√17

Problem 3. Simplify the expression √415/√10 + √36/√9.

Solution:

We have the expression, √415/√10 + √36/√9

Using the square root properties we have,

√415/√10 + √36/√9 = √415/√10 + √(36/9)

= √(5 ⋅  83)/√10 + √(36/9)

= √(5 ⋅  83)/√10 + √4

= √83/√2 + 2

Problem 4. Simplify the expression √432 + √125/√5.

Solution:

We have the expression, √432 + √125/√5

Using the square root properties we have,

√432 + √125/√5 = √432 + √(125/5)

= √(3 ⋅ 144) + √(125/5)

= 3√12 + √25

= 3√(2 ⋅ 2 ⋅ 3) + 5 

= 6√3 + 5

Problem 5. Simplify the expression (√81/√9) (√196/√14).

Solution:

We have the expression, (√81/√9) (√196/√14)

Using the square root properties we have,

(√81/√9) (√196/√14) = √(81/9) √(196/14)

= √9 (√14)

= 3 √14

Problem 6. Simplify the expression (√225/√15)/(√9/√3).

Solution:

We have the expression, (√225/√15)/(√9/√3)

Using the square root properties we have,

(√225/√15)/(√9/√3) = (√(225/15)/√(9/3)

= √15/√3

= √(15/3)

= √5

Problem 7. Simplify the expression (√361/√19) - (√216/√36) + (√18/√3).

Solution:

We have the expression, (√361/√19) - (√216/√36) + (√18/√3)

Using the square root properties we have,

(√361/√19) - (√216/√36) + (√18/√3) = √(361/19) - √(216/36) - √(18/3)

= √19 - √6 - √6

= √19 - 2√6


Next Article
Square Root Property Formula

J

jatinxcx
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Maths-Formulas

Similar Reads

    Square Root Formula
    Square root formula is a mathematical expression that calculates the square root of a number. For a non-negative real number xx, the square root y is a number such that y2 = x. A square root is an operation that is used in many formulas and different fields of mathematics. This article is about squa
    8 min read
    Root Mean Square Formula
    Root mean square is defined as the quadratic mean or a subset of the generalized mean with an exponent of 2. To put it another way, the square root of the entire sum of squares of each data value in an observation is calculated using the root mean square formula.It can be interpreted as a changing f
    6 min read
    Perfect Square Formula
    Perfect Square Formula: A polynomial or number which when multiplied by itself is called a perfect square. The perfect square is calculated by two algebraic expressions that include: (a + b)² = a² + 2ab + b² and (a - b)² = a² - 2ab + b². In this article, we have covered the perfect square definition
    7 min read
    Square Pyramid Formula
    A square pyramid is a three-dimensional geometric shape with a square base and four triangular faces that meet at a single point called the apex. Several formulas are associated with a square pyramid, including those for the surface area, volume, and slant height.In this article, we will learn about
    7 min read
    Secant Square x Formula
    Secant is one of the six fundamental identities in trigonometry, specifically a Pythagorean identity. There are various identities involving secant, one of which is the secant square x formula. This formula is expressed as: sec2 x = 1 + tan2 x This formula represents the relationship between the sec
    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