Python | Sympy Plane.are_concurrent() method Last Updated : 28 Apr, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report In Simpy, the function Plane.are_concurrent() is used to check whether the given sequence of planes are concurrent or not. Two or more Planes are concurrent if their intersections are a common line. Syntax: Plane.are_concurrent() Parameters: planes: sequence of planes Returns: True: if they are concurrent, else False Example #1: Python3 1== # import sympy, Point3D and Plane from sympy import Point3D, Plane # using Plane() p1 = Plane(Point3D(5, 0, 0), normal_vector =(1, -1, 1)) p2 = Plane(Point3D(0, -2, 0), normal_vector =(3, 1, 1)) # using are_concurrent() areConcurrent = Plane.are_concurrent(p1, p2) print(areConcurrent) Output: True Example #2: Python3 1== # import sympy, Point3D and Plane from sympy import Point3D, Plane # using Plane() p1 = Plane(Point3D(5, 0, 0), normal_vector =(1, -1, 1)) p2 = Plane(Point3D(0, -2, 0), normal_vector =(3, 1, 1)) p3 = Plane(Point3D(0, -1, 0), normal_vector =(5, -1, 9)) # using are_concurrent() areConcurrent = Plane.are_concurrent(p1, p2, p3) print(areConcurrent) Output: False Comment More infoAdvertise with us Next Article Python | Sympy Line.are_concurrent method R ravikishor Follow Improve Article Tags : Python SymPy Python SymPy-Geometry Practice Tags : python Similar Reads Python | Sympy Line.are_concurrent method In Sympy, the function are_concurrent() is used to check whether the given linear entities(lines) are concurrent or not. Two or more linear entities are concurrent if they all intersect at a single point. Syntax: Line.are_concurrent(lines) Parameters: lines: a sequence of linear entities. Returns: T 1 min read Python | Sympy Plane.is_coplanar() method In Simpy, the function Plane.is_coplanar() is used to check whether the given planes are coplanar or not. Syntax: Plane.is_coplanar(p) Parameter: p: a Plane Returns: True: if planes are coplanar, else False Example #1: Python3 1== # import sympy, Point3D and Plane from sympy import Point3D, Plane o 1 min read Python | Sympy Plane.equation() method In Simpy, the function Plane.equation() is used to make equation of a given Plane. Syntax : Plane.equation(x, y, z) Parameters : x : optional y : optional z : optional Returns : Equation of Plane Example #1: Python3 # import sympy, Point3D and Plane from sympy import Point3D, Plane # using Plane() p 1 min read Python â Sympy Polygon.is_convex() Method In Sympy, the function Polygon.is_convex() is used to check whether the given polygon is convex or not. A polygon is said to be convex if all its interior angles are less than 180 degrees and there are no intersections between the sides. Syntax: Polygon.is_convex() Returns: True: True if this polygo 1 min read Python | Sympy encloses_point() method In sympy, the function encloses_point() is used to check whether the given point is encolsed by given ellipse or not. Syntax: Ellipse.encloses_point(point) Return: True:if point is enclosed by ellipse, otherwise False. Example #1: Python3 1== # import sympy and geometry module from sympy import * fr 1 min read Python | Sympy Line.parallel_line method In Sympy, the function parallel_line() is used to create a new Line parallel to the given linear entity which passes through the given point p. Syntax: Line.parallel_line(p) Parameters: p: Point Returns: Line Example #1: Python3 # import sympy and Point, Line from sympy import Point, Line p1, p2, p3 1 min read Like