Wednesday, January 21, 2026
HomeLanguagesPython | Sympy Segment.perpendicular_bisector() method

Python | Sympy Segment.perpendicular_bisector() method

In Sympy, the function perpendicular_bisector() is used to find the perpendicular bisector of the given segment. If no point is specified or the point specified is not on the bisector then the bisector is returned as a Line. Otherwise, a Segment is returned that joins the point specified and the intersection of the bisector and the segment.

Syntax: Segment.perpendicular_bisector(p=None)

Parameters:
 p: Point

Returns:
 bisector: Line or Segment

Example #1:




# import sympy and Point, Segment
from sympy import Point, Segment
  
p1, p2, p3 = Point(0, 0), Point(6, 6), Point(5, 1)
s1 = Segment(p1, p2)
  
# using perpendicular_bisector() method
perpendicularBisector = s1.perpendicular_bisector()
  
print(perpendicularBisector)


Output:

Line2D(Point2D(3, 3), Point2D(-3, 9))

Example #2:




# import sympy and Point, Segment
from sympy import Point, Segment
  
p1, p2, p3 = Point(0, 0), Point(6, 6), Point(5, 1)
s1 = Segment(p1, p2)
  
# using perpendicular_bisector() method
perpendicularBisector = s1.perpendicular_bisector(p3)
  
print(perpendicularBisector)


Output:

Segment2D(Point2D(5, 1), Point2D(3, 3))
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS