悠闲数学娱乐论坛(第2版)'s Archiver

isee 发表于 2018-4-20 13:56

Mathematica 命令使用笔记

[i=s] 本帖最后由 isee 于 2018-6-12 22:20 编辑 [/i]

实在不想讨论含绝对值的不等式,Mathematica,结果发现解方程与解不等式的命令是不同的,记一下

Solve 解方程,方程组,条件最值

Reduce 解不等式,也能方程,可以含参数

isee 发表于 2018-4-25 22:56

[i=s] 本帖最后由 isee 于 2018-6-12 22:24 编辑 [/i]

Factor 分解因式

色k 发表于 2018-4-26 00:42

[b]回复 [url=http://kuing.orzweb.net/redirect.php?goto=findpost&pid=26342&ptid=5315]2#[/url] [i]isee[/i] [/b]

这个都要记录?这简直是最常用的

isee 发表于 2018-6-12 22:24

Log=ln
Series 幂级数(泰勒展开式)

kuing 发表于 2018-6-13 00:12

[b]回复 [url=http://kuing.orzweb.net/redirect.php?goto=findpost&pid=27112&ptid=5315]4#[/url] [i]isee[/i] [/b]

你不如去看 [url]http://reference.wolfram.com/language/[/url] ,然后把一些常用的记下来好了,你上面记的几个都在“符号与数值计算”部分里面

isee 发表于 2018-6-15 17:20

[b]回复 [url=http://kuing.orzweb.net/redirect.php?goto=findpost&pid=27115&ptid=5315]5#[/url] [i]kuing[/i] [/b]

thx

mathematica 真是太强大了,命令实在是太多,且个人用得极少,一般是解解方程,验证下对错,用时才研究吧。

放一放,先。

isee 发表于 2018-7-21 10:19

Mathematica 中的表达式原来是统一的
如 x+y 全命令是 Plus[x,y]

1+x+x y+z^2 全命令是Plus[1,x,Times[x,y],Power[z,2]]

isee 发表于 2019-6-21 20:48

[url=https://mathpretty.com/9812.html]参考此文[/url],求与圆有关的重叠部分面积

绘图

RegionPlot[{(x - 5)^2 + (y - 5)^2 <= 25, (x - 10)^2 + y^2 >= 100}, {x,
   0, 10}, {y, 0, 10}, PlotLegends -> "Expressions"]


Expressions,大致是写出具体表达式之意。




只画重叠部分

RegionPlot[{(x - 5)^2 + (y - 5)^2 <= 25 && (x - 10)^2 + y^2 >=
    100}, {x, 0, 10}, {y, 0, 10}]



算面积

Integrate[
Boole[{(x - 5)^2 + (y - 5)^2 <= 25 && (x - 10)^2 + y^2 >= 100}], {x,
  0, 10}, {y, 0, 10}]

精确值呢

isee 发表于 2019-6-28 19:12

[b]回复 [url=http://kuing.orzweb.net/redirect.php?goto=findpost&pid=32191&ptid=5315]8#[/url] [i]isee[/i] [/b]

如[url=http://kuing.orzweb.net/viewthread.php?tid=6271]这个求三角函数值[/url]

FullSimplify

FullSimplify[Sec[10 Degree]^2 + Sec[50 Degree]^2 + Sec[70 Degree]^2]




这个却用 FunctionExpand
FunctionExpand[Sin[Pi/8]]

页: [1]

Powered by Discuz! Archiver 7.2  © 2001-2009 Comsenz Inc.