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:
Tricks To solve AP, GP and HP Questions Quickly
Next article icon

Tricks To solve AP, GP and HP Questions Quickly

Last Updated : 08 Nov, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

The topic of progressions—Arithmetic Progression (AP), Geometric Progression (GP), and Harmonic Progression (HP)—plays a crucial role in various mathematical concepts and competitive exams. While these progressions may seem complex at first glance, mastering a few simple tricks and methods can make them much easier to understand and apply.

A progression is a sequence of numbers where the relationship between consecutive terms follows a specific pattern. AP, GP, and HP each have their unique rules and formulas that govern how their terms are related. These progressions are widely used in various fields, including algebra, calculus, and number theory, and are often tested in competitive exams to evaluate problem-solving skills.

In an arithmetic sequence, the difference between any term and the next term is constant. Specifically, a sequence a1, a2, ..., an is called an arithmetic sequence or arithmetic progression, if the difference between consecutive terms (d = an+1 - an) where d is a constant known as the common difference.

Example of Arithmetic Progression is as follows:

a, a+d, a+2d, a+3d, ...

Where,

  • a is the first term of the Arithmetic Sequence.
  • d is a common difference between any two consecutive terms of the Arithmetic Sequence.

Read More:

  • Arithmetic Progressions
  • Geometric Progressions
  • Harmonic Progressions
  • Progressions Aptitude Questions & Answers

Tricks and Formulas for Arithmetic Progression (AP)

1. Finding the nth Term Quickly

To find the nth term, simply plug the values of a​, n, and d into the formula:

an = a1 + (n − 1) × d

2. The Sum of n Terms Shortcut

  • Using the standard sum formula:

The sum of the first n terms in an AP can be calculated using:

Sn ​= n/2​ × (2a1 ​+ (n − 1) × d)

  • Alternatively, using the first and last term:

If the last term an is known, use:

Sn ​= n/2 × (a1 ​+ an​)

3. Condition for Three Numbers in AP

If A, B, and C are in arithmetic progression, then:

2B = A + C

4. Relation Between Terms:

  • a1 ​+ an ​= a2 ​+ an−1​
  • 2an = an+ k +an−k

5. Total Number of Terms:

The total number of terms can be calculated as:

(a1 + an)/d +1

where

  • ai is the first term.
  • an is the last term.
  • d is the common difference.

Geometric Progression (GP) is a sequence of numbers where each term after the first is found by multiplying the previous term by a constant called the common ratio.

The general form of GP is as follows:

a, ar, ar2, ar3,…

Where:

  • a is the first term,
  • r is the common ratio.

Tricks and Formulas for Geometric Progression (GP)

1. Common Ratio

Tn​ and Tn-1​ are consecutive terms of the GP.

r = Tn/ Tn-1

2. Finding the nth Term Quickly

To find the nth term, simply plug the values of a​, n, and r into the formula:

Tn = arn-1

3. The sum of n Terms

For (r > 1):

Sn​ is the sum of the first n terms for r > 1.

Sn = a[(rn – 1)/(r – 1)]

 For (r < 1):

Sn is the sum of the first n terms, for r < 1.

Sn = a[(1 – rn)/(1 – r)]

4. Relationship between Terms:

The product of the first and the last term equals the product of the second and the second-last term, and so on:

a1​⋅an ​= a2​⋅an − 1 ​= ak​⋅an−k + 1​

5. Product of First and Last Terms:

For terms a1​, a2​, and an​ in a GP,

We have the relationship:

b2 = ac

6. Geometric Mean (GM):

The geometric mean (GM) of terms a1, a2, … ,an​ in a GP is given by

GM = \sqrt[n]{a1 * a2 * ... * an}

A Harmonic Progression (HP), or Harmonic Sequence, is a sequence of real numbers derived by taking the reciprocals of the terms in an Arithmetic Progression (excluding 0). In this sequence, each term is the Harmonic Mean of its two neighboring terms.

Example of Harmonic Progression is as follows:

1/a, 1/(a + d), 1/(a + 2d), 1/(a + 3d), ...

Where

  • “a” represents the initial term of the Harmonic Progression (H.P.)
  • “d” stands for the common difference between successive terms,
  • “n” denotes the total number of terms in the Harmonic Progression (H.P.)

Tricks and Formulas for Harmonic Progression (HP)

1. Finding the nth Term Quickly

The nth term of a Harmonic Progression (HP) is given by the reciprocal of the corresponding term in the Arithmetic Progression (AP). So, the n-th term of HP can be written as:

an = 1/(a + (n − 1)d)

2. The sum of n Terms for Harmonic Progression

To find the Sum of n terms in a Harmonic Progression (Sn) for the sequence 1/a, 1/a + d, 1/a + 2d, . . ., 1/a + (n−1)d, the formula is:

S_n \approx \frac{1}{d} \cdot \ln\left(\frac{2a + (2n - 1)d}{2a - d}\right)

where,

  • “a” denotes the first term of the Harmonic Progression (H.P.)
  • “d” represents the common difference in the Harmonic Progression (H.P.)
  • “ln” stands for the natural logarithm.

Note: This formula only gives the approximate required value.

3. Harmonic Mean

The Harmonic Mean of two numbers a and b is defined as:

Harmonic Mean = 2ab/(a + b)


Next Article
Tricks To solve AP, GP and HP Questions Quickly

S

surajb1g23
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Geometric Progression
  • harmonic progression
  • Maths
  • placement
  • Arithmetic Progressions

Similar Reads

    Progressions (AP,GP, HP) | Set-2
    Question 1: Find the 1st term of the AP whose 7th and 11th terms are respectively 37 and 57. Solution :We know nth term of AP is [a + (n-1)d] So, 7th term = a + 6d and 11th term = a + 10d Given a + 6d = 37 .........(1) a + 10d = 57..........(2) Subtract (1) form (2) 4d = 20 d = 5 put value of d in (
    4 min read
    Progression - Aptitude Questions and Answers
    Progression (or Sequences and Series) is are mathematical concepts that involve arranging numbers in a particular order based on a repeatable pattern. The topic of Progressions is frequently asked in various competitive exams like SSC, Bank PO, and other government job exams and is a crucial part of
    5 min read
    Practice Questions on Arithmetic Progression ( AP ) - Advanced
    An arithmetic progression (AP), also known as an arithmetic sequence, is a sequence of numbers in which the difference between consecutive terms is constant. This constant difference is called the "common difference."Important Formulas on Arithmetic ProgressionVarious formulas on arithmetic progress
    8 min read
    Trigonometry Practice Questions Medium
    Trigonometry can be challenging, particularly for class 10 and 11 students dealing with trigonometric ratios and identities. In this article, we have gathered a set of medium-difficulty questions that cover key trigonometric concepts and formulas.By solving these questions, ranging from easy to diff
    5 min read
    Geometry Aptitude Questions & Answers
    Question 1: In a circle with a radius of 10 cm, find the length of a chord that is 6 cm from the center.Solution:Let the radius r = 10cm and the distance from the center to the chord d = 6.Use the formula for the chord length:L = 2\sqrt{r^2 - d^2}L = 2\sqrt{10^2 - 6^2}= 2\sqrt{100 - 36}= 2√64= 2 × 8
    3 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