Tags:Python,Math,SciPy,NumPy
I started reading the introduction to mathematics starting with Python, so a memorandum.
Practice writing formulas with MathJax.
Both math and English are amateurs. During study. This Math Vocabulary I'm going to be indebted to you. Also, refer to $ \ LaTeX $ and MathJax.
Cahpter 1 Working with Numbers Converting Unit Fahrenheit-> Celsius $ C = (F - 32) \times \frac{5}{9} $ Celsius-> Fahrenheit $ F = ( C \times \frac{9}{5}) + 32 $
Nostalgic
$ 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 $ Since the axial direction is constant
$ y $ Axial direction is pulled by gravity over time ($ t $) $v_{y} = u \sin\theta - gt $
Therefore, the travel distance ($ S $) over time is as follows.
More importantly, find the time from launch to landing. On the $ y $ axis, the point where the velocity becomes 0 (the top of the parabolic mountain) can be regarded as half the travel time.
When the speed becomes 0,
Double the total travel time
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 The SymPy that appears in this chapter is quite interesting, so I will summarize it separately.
$ x + \frac{x^2}{2} + \frac{x^3}{3} + \frac{x^4}{4} + \cdots + \frac{x^n}{n}$
This example seems to be Convergent (divergent is Divergent) For example, if $ n = 5 $ and $ x = 1.2 $ is substituted (Substitute), It becomes $ \ small {3.51206400000000} \ $. It's strange that this can be solved programmatically using Sympy.
equation of motion
$ s = ut + \frac{1}{2}at^2 $
Solving 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
For two sets $ 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