Tags:Python,Math,SciPy,NumPy
Lorsque j'ai commencé à lire l'introduction aux mathématiques en commençant par Python, un mémorandum.
Pratiquez l'écriture de formules avec MathJax.
Les mathématiques et l'anglais sont des amateurs. Pendant l'étude. Ce Dictionnaire mathématique Je vais vous être redevable. Reportez-vous également à $ \ LaTeX $ et MathJax.
Cahpter 1 Working with Numbers Converting Unit Hua-> Ensemble $ C = (F - 32) \times \frac{5}{9} $ M. Seth-> M. Hua $ F = ( C \times \frac{9}{5}) + 32 $
Nostalgique
$ y = ax^2 + bx + c $
Solution $ x = \ frac {-b \ pm \ sqrt {b ^ 2 -4ac}} {2a} $
Cahpter 2 Visualizing Data with Graphs
$ F= \frac{Gm_1m_2}{r^2} $
image from http://formulas.tutorvista.com/physics/projectile-motion-formula.html
$ x $ La direction axiale est constante
$ y $ Axial est tiré par gravité dans le temps ($ t $) $v_{y} = u \sin\theta - gt $
Par conséquent, la distance parcourue ($ S $) au fil du temps est la suivante.
Plus important encore, trouvez le temps entre le lancement et l'atterrissage. Sur l'axe $ y $, le point où la vitesse devient 0 (le sommet de la montagne parabolique) peut être considéré comme la moitié du temps de trajet.
Lorsque la vitesse devient 0
Doublez le temps de trajet total
Cahpter 3 Discribing Data with Statistics Basic Statistics - variance and standard deviation $ variance= \frac{\sum(x_i - x_m)^2}{n} $ $v_{y} = u\sin\theta - gt $
$ standard\hspace{3pt}deviation = \sqrt{variance} $
$ Correlation = \frac{n\sum xy - \sum x \sum y}{\sqrt{\bigl(n\sum x^2 - (\sum x)^2\bigl)\bigl(n\sum y^2 - (\sum y)^2 \bigl)}}$
Chapter 4 Algebra and Symbolic Math with Sympy SymPy qui apparaît dans ce chapitre est assez intéressant, je vais donc le résumer séparément.
$ x + \frac{x^2}{2} + \frac{x^3}{3} + \frac{x^4}{4} + \cdots + \frac{x^n}{n}$
Cet exemple semble être convergent (divergent) Par exemple, si $ n = 5 $ et $ x = 1,2 $ est attribué (Substitute), Il devient $ \ small {3.51206400000000} \ $. Il est étrange que cela puisse être résolu par programme en utilisant Sympy.
equation of motion
$ s = ut + \frac{1}{2}at^2 $
Résoudre t ... $ t = \frac{-u + \sqrt{2.0as + u^2}}{a} $ $ t = \frac{-(u + \sqrt{2.0as + u^2})}{a} $
Chapter 5 Playing with Sets and Productivity
Pour deux ensembles $ A B $
$ A \times B = \{ (a,b) \mid a \in A \land b \in B \}$
$ T = 2 \pi \sqrt{ \frac{L}{g}} $
$ T = $ pendulum period
the amount of time it takes for the pendulum to complete one full swing
$ g = $ gravitational acceleration ($ 9.8 m/s^2 $)
A=\left(
\begin{matrix}
1 & 2 \\
3 & 4
\end{matrix}
\right)
Recommended Posts