Saturday, July 25, 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

4 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6972 POSTS0 COMMENTS