2021年3月28日 星期日
三角測量
law of sin
https://blog.xuite.net/wang620628/twblog/126093831
https://www.youtube.com/watch?v=b5nUmrh90fY
https://www.youtube.com/watch?v=bYAf-3cn4V4
law of cos
Heron's formula
http://www2.chsh.chc.edu.tw/bee/1050206/heron%20formula.pdf
三角形的角平分線
三角形的中線
平行四邊形定理
journal of combinatroics
2021年3月25日 星期四
maxima command
algebra
(%o1) false
(%i2) x^2+2*x+1;
2
(%o2) x + 2 x + 1
(%i3) powerdisp: true;
(%o3) true
(%i4) x^2+2*x+1;
2
(%o4) 1 + 2 x + x
Default value: true
radexpand
controls some simplifications of radicals.
When radexpand
is all
, causes nth roots of factors of a product
which are powers of n to be pulled outside of the radical. E.g. if
radexpand
is all
, sqrt (16*x^2)
simplifies to 4*x
.
More particularly, consider sqrt (x^2)
.
- If
radexpand
isall
orassume (x > 0)
has been executed,sqrt(x^2)
simplifies tox
. - If
radexpand
istrue
anddomain
isreal
(its default),sqrt(x^2)
simplifies toabs(x)
. - If
radexpand
isfalse
, orradexpand
istrue
anddomain
iscomplex
,sqrt(x^2)
is not simplified.
Note that domain
only matters when radexpand
is true
reference
https://maxima.sourceforge.io/docs/manual/maxima_46.html.
evaluate
8.1 Functions and Variables for Evaluation
4.2 Functions and Variables for Command Line
3. Entering commands
For further ways to compute with complex numbers, see the functions
rectform
, realpart
, imagpart
,
carg
, conjugate
and polarform
.
vector
https://maxima.sourceforge.io/docs/manual/maxima_116.html#Vectors
load("vect" );
express(a~b);
https://maxima.sourceforge.io/docs/manual/maxima_131.html#Sums-Products-and-Series
permutation/ combination
load(functs)
permutation (n, r)
combination (n, r)
sequence/ series
arithmetic (a, d, n)
geometric (a, r, n)
harmonic (a, b, c, n)
geosum (a, r, n)
Set
https://maxima.surceforge.io/docs/manualo/maxima_156.html#Sets
Differential/Integrate
diff()
integrate()
limit()