Python | Sympy Plane.equation() method Last Updated : 28 Apr, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report 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() p1 = Plane(Point3D(1, 2, 3), Point3D(4, 5, 6), Point3D(0, 2, 0)) p2 = p1.equation() print(p2) Output: -9*x + 6*y + 3*z - 12 Example #2: Python3 # import sympy, Point3D and Plane from sympy import Point3D, Plane # using Plane() p3 = Plane(Point3D(1, 2, 3), normal_vector =(2, 2, 2)) p4 = p3.equation() print(p4) Output: 2*x + 2*y + 2*z - 12 Comment More infoAdvertise with us Next Article Python | Sympy equation() method R ravikishor Follow Improve Article Tags : Python SymPy Python SymPy-Geometry Practice Tags : python Similar Reads Python | Sympy equation() method In Simpy, the function equation() is used to make equation of a given circle. Syntax : equation(x='x', y='y') Parameters: x : str or Symbol, optional y : str or Symbol, optional Returns : SymPy expression Example #1: Python3 1== # import sympy, Point and Circle from sympy import Point, Circle # usin 1 min read Python | Sympy Ellipse.equation() method In sympy, the function Ellipse.equation() is used to make the equation of the given ellipse. Syntax: Ellipse.equation(x='x', y='y', _slope=None) Parameters: x : Label for the x-axis. Default value is âxâ. y : Label for the y-axis. Default value is âyâ. _slope : The slope of the major axis. Ignored w 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.are_concurrent() method 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 conc 1 min read Python â Sympy Polygon.intersection() Method In Sympy, the function Polygon.intersection() is used to get the intersection of a given polygon and the given geometry entity. The geometry entity can be a point, line, polygon, or other geometric figures. The intersection may be empty if the polygon and the given geometry entity are not intersecte 2 min read Python | sympy.Matrix() method With the help of sympy.Matrix() method, we can make, rearrange, extract the different rows and columns in a matrix which is created by sympy.Matrix() method. Syntax : sympy.Matrix() Return : Return a matrix.  Example #1 :In this example, we can see that by using sympy.Matrix() method, we can create 1 min read Like