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:
Slope of the Secant Line Formula
Next article icon

Slope of the Secant Line Formula

Last Updated : 09 Aug, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report

Understanding the Slope of the Secant Line Formula

The slope of the secant line between two points on a curve is a fundamental concept in calculus. The secant line is a straight line connecting two distinct points on the graph of a function. The slope of this line provides an average rate of change of the function between those two points.

A secant line is a straight line that connects two points on the curve of a function f(x). A secant line, also known as a secant, is basically a line that passes through two points on a curve. It tends to a tangent line when one of the two points is brought towards the other one. It is used to evaluate the equation of tangent line to a curve at a point only and only if it exists for a value (a, f(a)). 

Slope of the Secant Line Formula

The slope of a line is defined as the ratio of change in y coordinate to the change in x coordinate. If there are two points (x1, y1) and (x2, y2) connected by a secant line on a curve y = f(x) then the slope is equal to the ratio of differences between the y-coordinates to that of the x-coordinates. The slope value is represented by the symbol m.

m = (y2 - y1)/(x2 - x1)

If the secant line is passing through two points (a, f(a)) and (b, f(b)) for a function f(x), then the slope is given by the formula:

m = (f(b) - f(a))/(b - a)

Sample Problems

Problem 1. Calculate the slope of a secant line that joins the two points (4, 11) and (2, 5).

Solution:

We have, (x1, y1) = (4, 11) and (x2, y2) = (2, 5)

Using the formula, we have

m = (y2 - y1)/(x2 - x1)

= (5 - 11)/(2 - 4)

= -6/(-2)

= 3

Problem 2. The slope of a secant line that joins the two points (x, 3) and (1, 6) is 7. Find the value of x.

Solution:

We have, (x1, y1) = (x, 3), (x2, y2) = (1, 6) and m = 7

Using the formula, we have

m = (y2 - y1)/(x2 - x1)

=> 7 = (6 - 3)/(1 - x)

=> 7 = 3/(1 - x)

=> 7 - 7x = 3

=> 7x = 4

=> x = 4/7

Problem 3. The slope of a secant line that joins the two points (5, 4) and (3, y) is 4. Find the value of y.

Solution:

We have, (x1, y1) = (5, 4), (x2, y2) = (3, y) and m = 4

Using the formula, we have

m = (y2 - y1)/(x2 - x1)

=> 4 = (y - 4)/(3 - 5)

=> 4 = (y - 4)/(-2)

=> -8 = y - 4

=> y = -4

Problem 4. Calculate the slope of a secant line for the function f(x) = x2 that joins the two points (3, f(3)) and (5, f(5)).

Solution:

We have, f(x) = x2

Calculate the value of f(3) and f(5).

f(3) = 32 = 9

f(5) = 52 = 25

Using the formula, we have

m = (f(b) - f(a))/(b - a)

= (f(5) - f(3))/ (5 - 3)

= (25 - 9)/2

= 16/2

= 8

Problem 5. Calculate the slope of a secant line for the function f(x) = 4 - 3x3 that joins the two points (1, f(1)) and (2, f(2)).

Solution:

We have, f(x) = 4 - 3x3

Calculate the value of f(1) and f(2).

f(3) = 4 - 3(1)3 = 4 - 3 = 1

f(5) = 4 - 3(2)3 = 4 - 24 = -20

Using the formula, we have

m = (f(b) - f(a))/(b - a)

= (f(2) - f(1))/ (2 - 1)

= -20 - 1

= -21

Problem 6. The slope of a secant line that joins the two points (x, 7) and (9, 2) is 5. Find the value of x.

Solution:

We have, (x1, y1) = (x, 7), (x2, y2) = (9, 2) and m = 5.

Using the formula, we have

m = (y2 - y1)/(x2 - x1)

=> 5 = (2 - 7)/(9 - x)

=> 5 = -5/(9 - x)

=> 45 - 5x = -5

=> 5x = 50

=> x = 10

Problem 7. The slope of a secant line that joins the two points (1, 5) and (8, y) is 9. Find the value of y.

Solution:

We have, (x1, y1) = (1, 5), (x2, y2) = (8, y) and m = 9

Using the formula, we have

m = (y2 - y1)/(x2 - x1)

=> 9 = (y - 5)/(8 - 1)

=> 9 = (y - 5)/7

=> y - 5 = 63

=> y = 6

Practice Problems

Find the slope of the secant line for the function f(x)=x2 between x=1 and x=3.

Determine the slope of the secant line for f(x)=2x+5 between x=−2 and x=4.

Calculate the slope of the secant line for f(x)=√x between x=4 and x=9.

Find the slope of the secant line for f(x)=x3 between x=1 and x=2.

Determine the slope of the secant line for f(x)=1/x between x=2 and x=5.

Calculate the slope of the secant line for f(x)=sin⁡(x) between x=0 and x=π/2​.

Find the slope of the secant line for f(x)=cos⁡(x) between x=π/4​ and x=π/2​.

Determine the slope of the secant line for f(x)=exf(x)=ex between x=0 and x=1.

Calculate the slope of the secant line for f(x)=ln⁡(x) between x=1 and x=2.

Find the slope of the secant line for f(x)=x2−4x+4 between x=2 and x=5.

Related Articles

  • Application of Derivatives
  • How to Find the Slope of a Tangent Line?

Next Article
Slope of the Secant Line Formula

J

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

Similar Reads

    Point Slope Form Formula of a Line
    In geometry, there are several forms to represent the equation of a straight line on the two-dimensional coordinate plane. There can be infinite lines with a given slope, but when we specify that the line passes through a given point then we get a unique straight line. Different forms of equations o
    6 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
    Slope of a Line
    Slope of a Line is the measure of the steepness of a line, a surface, or a curve, whichever is the point of consideration. The slope of a Line is a fundamental concept in the stream of calculus or coordinate geometry, or we can say the slope of a line is fundamental to the complete mathematics subje
    12 min read
    Slope Intercept Form
    The slope-intercept formula is one of the formulas used to find the equation of a line. The slope-intercept formula of a line with slope m and y-intercept b is, y = mx + b. Here (x, y) is any point on the line. It represents a straight line that cuts both axes. Slope intercept form of the equation i
    9 min read
    Standard Form of a Straight Line
    There are several forms available to represent the equation of a straight line on the 2-dimensional coordinate plane, out of several forms three major forms are point-slope form, slope-intercept form, and general or standard form. The general or standard form is a linear equation where the degree of
    11 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