Tags:Python,Math,SciPy,NumPy
Als ich anfing, die Einführung in die Mathematik zu lesen, begann ich mit Python, einem Memorandum.
Üben Sie das Schreiben von Formeln mit MathJax.
Sowohl Mathematik als auch Englisch sind Amateure. Während des Studiums. Dieses Mathe-Wörterbuch Ich werde dir zu Dank verpflichtet sein. Siehe auch $ \ LaTeX $ und MathJax.
Cahpter 1 Working with Numbers Converting Unit Hua-> Set $ C = (F - 32) \times \frac{5}{9} $ Herr Seth-> Herr Hua $ F = ( C \times \frac{9}{5}) + 32 $
Nostalgisch
$ y = ax^2 + bx + c $
Lösung $ 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 $ Die axiale Richtung ist konstant
$ y $ Axial wird im Laufe der Zeit durch die Schwerkraft gezogen ($ t $) $v_{y} = u \sin\theta - gt $
Daher ist die Reisedistanz ($ S $) über die Zeit wie folgt.
Noch wichtiger ist, finden Sie die Zeit vom Start bis zur Landung. Auf der $ y $ -Achse kann der Punkt, an dem die Geschwindigkeit 0 wird (die Spitze des Parabolbergs), als die Hälfte der Fahrzeit angesehen werden.
Wenn die Geschwindigkeit 0 wird
Verdoppeln Sie die Gesamtreisezeit
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, das in diesem Kapitel erscheint, ist sehr interessant, daher werde ich es separat zusammenfassen.
$ x + \frac{x^2}{2} + \frac{x^3}{3} + \frac{x^4}{4} + \cdots + \frac{x^n}{n}$
Dieses Beispiel scheint konvergent (divergent) zu sein. Wenn beispielsweise $ n = 5 $ und $ x = 1,2 $ zugewiesen sind (Ersatz), Es wird $ \ small {3.51206400000000} \ $. Es ist seltsam, dass dies mit Sympy programmgesteuert gelöst werden kann.
equation of motion
$ s = ut + \frac{1}{2}at^2 $
Lösen von ... $ 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
Für zwei Sätze $ 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