Skip to content

Commit 48e24b9

Browse files
committed
simplified chinese inclusion
1 parent 5d2436d commit 48e24b9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

text/main/basics/variables/assignment/assignment.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@
190190
But we can never really write it down.
191191

192192
Well, we I say \inQuotes{we can compute it}, then the question \inQuotes{How?} immediately arises.
193-
One particularly ingenious answer was given by the Chinese mathematician LIU Hui~(\zhb{刘徽}) somewhere in the third century~AD~\cite{OR2003LH} in his commentary to the famous Chinese mathematics book \emph{Jiu Zhang Suanshu}~(\zhb{九章算术})~\cite{OR2003LH,SCL1999TNCOTMACAC,S1998LHATFGAOCM,D2010AALHOCAS,C2002LFLHADWTDM}.
193+
One particularly ingenious answer was given by the Chinese mathematician LIU Hui~(刘徽) somewhere in the third century~AD~\cite{OR2003LH} in his commentary to the famous Chinese mathematics book \emph{Jiu Zhang Suanshu}~(九章算术)~\cite{OR2003LH,SCL1999TNCOTMACAC,S1998LHATFGAOCM,D2010AALHOCAS,C2002LFLHADWTDM}.
194194
In \cref{fig:liuHuiCircle}, we show how~\numberPi, i.e., the ratio of the circumference and the diameter of a circle can be approximated by inscribing regular~$e$\nobreakdashes-gons into a circle.
195195
The corners of the $e$\nobreakdashes-gons lie on the circle.
196196

text/main/basics/variables/summary/summary.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
After gaining this ability, we finally can begin to write \inQuotes{real} programs.
55
We do no longer just execute single commands in the \python\ console.
66
Instead, we can write \python\ program files (with the name suffix~\textil{.py}) that perform computations in multiple steps.
7-
Our implementation of the ideas of LIU Hui~(\zhb{刘徽}) to approximate the ratio of the circumference of a circle to its diameter, i.e., the number~\numberPi, \cref{lst:variables:pi_liu_hui}, was a first example.
7+
Our implementation of the ideas of LIU Hui~(刘徽) to approximate the ratio of the circumference of a circle to its diameter, i.e., the number~\numberPi, \cref{lst:variables:pi_liu_hui}, was a first example.
88
Here, we refined the approximation in several steps and ended up with some pretty good estimate.
99

1010
The elegant syntax of \python\ allows us to assign and reassign variables.

text/main/classes/basics/basics.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@
280280
\FloatBarrier%
281281
%
282282
We now want to implement our first maybe actually useful piece of code, something that can be used in a real productive system.\footnote{%
283-
Yes, we did implement the method of LIU Hui~(\zhb{刘徽}) for approximating~\numberPi\ and Heron's Method for approximating the square root. %
283+
Yes, we did implement the method of LIU Hui~(刘徽) for approximating~\numberPi\ and Heron's Method for approximating the square root. %
284284
These implementations were not more accurate than the constant and function \python\ already has built in. %
285285
But they are nice, though, I did enjoy doing them.}
286286
To do such a cool thing, let us first revisit the limitations of the datatype \pythonil{float} from way back in \cref{sec:float}. %

text/main/controlFlow/loops/loops.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@
541541
We can create code that branches and conditionally performs actions via \pythonil{if}-\pythonil{else}.
542542
And we can repeatedly perform actions via \pythonil{for} and \pythonil{while}.
543543
Our examples also have become more elaborate and interesting.
544-
We can now approximate~\numberPi\ with arbitrarily many steps of the approach of LIU Hui~(\zhb{刘徽}).
544+
We can now approximate~\numberPi\ with arbitrarily many steps of the approach of LIU Hui~(刘徽).
545545
We can implement Heron's Method to compute the square root of a number and we perform binary search over arbitarily large (sorted) data.
546546
We can do quite a lot!
547547

0 commit comments

Comments
 (0)