2021年1月17日 星期日

Cyclic Groups


The Structure of Cyclic Groups

 https://www.youtube.com/watch?v=dLLIMo1nyHY

 

ubuntu 無法登入

 ubuntu卡在登陸介面,無法登入桌面



Ubuntu卡在登陸介面迴圈登陸解決

花式滑冰

 花式滑冰 看圓周運動旋轉半徑與角速度的關係

中国新一代花滑女神横空出世,年仅17岁,连韩国网友都为她倾倒,网友:仙女本人【纪实天下】

 https://www.youtube.com/watch?v=DJdDwKcASdM&t=19s

 

左手指月!出现在花样滑冰赛场 

 https://www.youtube.com/watch?v=KpscnCzwXfY

maxima vector command

 

Maxima vector magnitude and cross product

https://math.stackexchange.com/questions/1029762/maxima-vector-magnitude-and-cross-product/1180712


http://www.scotchildress.com/wxmaxima/VectorArithmetic/VectorArithmetic.html

 

vector command in maxima

  • a.b      a.b;
  • axb

         load("vect" );

         express(a~b);

  • |a|

           sqrt(a.a); 

          or

          norm(x):=sqrt(x.x);

  • a hat

           a/sqrt(a.a) ;

           or

           hat(x):=x/norm(x); 

  •  a proj b 

            proj(a,b):=a.b/norm(b)^2 *b ;

example:

kill(all);
load("vect" );
express(a~b);
norm(x):=sqrt(x.x);
hat(x):=x/norm(x);
proj(a,b):=a.b/norm(b)^2 *b ;

a:[1,2];
b:[3,4];
a.b;
express(a~b);
norm(a);
hat(a);
proj(a,b);

 


 

 

 


2021年1月3日 星期日

解决Gtk-WARNING **: 无法在模块路径中找到主题引擎pixmap ...

 sudo apt-get install gnome-themes-standard