Python计算(sympy解数学方程)
解方程
solve(f, *symbols, **flags)
函数说明:
f: 转化成右端等于0 形式的表达式
symbols: 未知数
代码示例
# -*- coding: utf-8 -*-# @File: sympy_demo.py
# @Date: 2018-08-15
# @Author: Peng Shiyufrom sympy import solve
from sympy.abc import x, y# 一元一次方程
# 3x=9
print(solve(x * 3 - 9, x))
# [3]# 一元二次方程
# x^2=9
print(solve(x ** 2 - 9, x))
# [-3, 3]# 二元一次方程组
"""
x + y = 5
x - y = 1
"""
print(solve([x + y - 5, x - y - 1], [x, y]))
# {x: 3, y: 2}
符号说明: 加号 +
减号 -
除号 /
乘号 *
指数 **
对数 log()
e的指数次幂 exp()
【Python计算(sympy解数学方程)】参考
使用 Python 解数学方程
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)
- 使用协程爬取网页,计算网页数据大小
- Python(pathlib模块)
- python青少年编程比赛_第十一届蓝桥杯大赛青少年创意编程组比赛细则
- Python数据分析(一)(Matplotlib使用)