\(\text{www.the}\beta\text{etafunction.com}\)
Home
Login
Questions: Algebra BusinessCalculus

Please login to create an exam or a quiz.

Calculus
Integrals
New Random

Use 6 rectangles to approximate \(\displaystyle \int\limits_{3}^{6} \sin{\left(x \right)}\, dx\) using the left endpoint. Draw a graph showing the sum.


\(\displaystyle \Delta x = \frac{b-a}{n}=\frac{1}{2}\) and \(\displaystyle x_i = a+i\Delta x = \frac{i}{2} + 3\). Drawing a graph gives:

The sum is \(\displaystyle \sum_{i=0}^{5} \frac{\sin{\left(\frac{i}{2} + 3 \right)}}{2} = -1.8042\).

Download Tikz \( \LaTeX \)

\begin{tikzpicture}[yscale=5]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-1,-1) grid (7,1.05);
	\draw[latex-latex, very thick] (-1.4,0)--(7.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-1.1)--(0,1.1) node[above]{$y$};
	\foreach \x in { -1,1,...,7 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -1,-0.75,...,1.05 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
	\draw[thick, color=blue, domain={3.0}:{6.0}, samples=200, samples =350] plot(\x, {sin((\x) r)});
		\draw[fill=blue, opacity=0.3](3.00, 0.141) rectangle (3.50, 0);
		\draw[thick](3.00, 0.141) rectangle (3.50, 0);
		\draw[fill=blue, opacity=0.3](3.50, -0.351) rectangle (4.00, 0);
		\draw[thick](3.50, -0.351) rectangle (4.00, 0);
		\draw[fill=blue, opacity=0.3](4.00, -0.757) rectangle (4.50, 0);
		\draw[thick](4.00, -0.757) rectangle (4.50, 0);
		\draw[fill=blue, opacity=0.3](4.50, -0.978) rectangle (5.00, 0);
		\draw[thick](4.50, -0.978) rectangle (5.00, 0);
		\draw[fill=blue, opacity=0.3](5.00, -0.959) rectangle (5.50, 0);
		\draw[thick](5.00, -0.959) rectangle (5.50, 0);
		\draw[fill=blue, opacity=0.3](5.50, -0.706) rectangle (6.00, 0);
		\draw[thick](5.50, -0.706) rectangle (6.00, 0);
\end{tikzpicture}

Download \(\LaTeX\)

\begin{question}Use 6 rectangles to approximate $\int\limits_{3}^{6} \sin{\left(x \right)}\, dx$ using the left endpoint. Draw a graph showing the sum. 
    \soln{9cm}{$\Delta x = \frac{b-a}{n}=\frac{1}{2}$ and $x_i = a+i\Delta x = \frac{i}{2} + 3$. Drawing a graph gives:
\begin{center}\begin{tikzpicture}[yscale=5]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-1,-1) grid (7,1.05);
	\draw[latex-latex, very thick] (-1.4,0)--(7.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-1.1)--(0,1.1) node[above]{$y$};
	\foreach \x in { -1,1,...,7 }{
		\pgfmathsetmacro{\xtick}{\x != 0 ? "\x" : ""}
		\draw (\x, .2) -- (\x,-.2) node[below]{$\xtick$};
		}
	\foreach \y in { -1,-0.75,...,1.05 }{
		\pgfmathsetmacro{\ytick}{\y != 0 ? "\y" : ""}
		\draw (.2, \y) -- (-.2, \y) node[left]{$\ytick$};
		}
	\draw[thick, color=blue, domain={3.0}:{6.0}, samples=200, samples =350] plot(\x, {sin((\x) r)});
		\draw[fill=blue, opacity=0.3](3.00, 0.141) rectangle (3.50, 0);
		\draw[thick](3.00, 0.141) rectangle (3.50, 0);
		\draw[fill=blue, opacity=0.3](3.50, -0.351) rectangle (4.00, 0);
		\draw[thick](3.50, -0.351) rectangle (4.00, 0);
		\draw[fill=blue, opacity=0.3](4.00, -0.757) rectangle (4.50, 0);
		\draw[thick](4.00, -0.757) rectangle (4.50, 0);
		\draw[fill=blue, opacity=0.3](4.50, -0.978) rectangle (5.00, 0);
		\draw[thick](4.50, -0.978) rectangle (5.00, 0);
		\draw[fill=blue, opacity=0.3](5.00, -0.959) rectangle (5.50, 0);
		\draw[thick](5.00, -0.959) rectangle (5.50, 0);
		\draw[fill=blue, opacity=0.3](5.50, -0.706) rectangle (6.00, 0);
		\draw[thick](5.50, -0.706) rectangle (6.00, 0);
\end{tikzpicture}

\end{center}
The sum is $\sum_{i=0}^{5} \frac{\sin{\left(\frac{i}{2} + 3 \right)}}{2} = -1.8042$. }

\end{question}

Download Question and Solution Environment\(\LaTeX\)
\documentclass{article}
\usepackage{tikz}
\usepackage{amsmath}
\usepackage[margin=2cm]{geometry}
\usepackage{tcolorbox}

\newcounter{ExamNumber}
\newcounter{questioncount}
\stepcounter{questioncount}

\newenvironment{question}{{\noindent\bfseries Question \arabic{questioncount}.}}{\stepcounter{questioncount}}
\renewcommand{\labelenumi}{{\bfseries (\alph{enumi})}}

\newif\ifShowSolution
\newcommand{\soln}[2]{%
\ifShowSolution%
\noindent\begin{tcolorbox}[colframe=blue,title=Solution]#2\end{tcolorbox}\else%
\vspace{#1}%
\fi%
}%
\newcommand{\hideifShowSolution}[1]{%
\ifShowSolution%
%
\else%
#1%
\fi%
}%
\everymath{\displaystyle}
\ShowSolutiontrue

\begin{document}\begin{question}(10pts) The question goes here!
    \soln{9cm}{The solution goes here.}

\end{question}\end{document}
HTML for Canvas
<p> <p>Use 6 rectangles to approximate  <img class="equation_image" title=" \displaystyle \int\limits_{3}^{6} \sin{\left(x \right)}\, dx " src="/equation_images/%20%5Cdisplaystyle%20%5Cint%5Climits_%7B3%7D%5E%7B6%7D%20%5Csin%7B%5Cleft%28x%20%5Cright%29%7D%5C%2C%20dx%20" alt="LaTeX:  \displaystyle \int\limits_{3}^{6} \sin{\left(x \right)}\, dx " data-equation-content=" \displaystyle \int\limits_{3}^{6} \sin{\left(x \right)}\, dx " />  using the left endpoint. Draw a graph showing the sum. </p> </p>
HTML for Canvas
<p> <p> <img class="equation_image" title=" \displaystyle \Delta x = \frac{b-a}{n}=\frac{1}{2} " src="/equation_images/%20%5Cdisplaystyle%20%5CDelta%20x%20%3D%20%5Cfrac%7Bb-a%7D%7Bn%7D%3D%5Cfrac%7B1%7D%7B2%7D%20" alt="LaTeX:  \displaystyle \Delta x = \frac{b-a}{n}=\frac{1}{2} " data-equation-content=" \displaystyle \Delta x = \frac{b-a}{n}=\frac{1}{2} " />  and  <img class="equation_image" title=" \displaystyle x_i = a+i\Delta x = \frac{i}{2} + 3 " src="/equation_images/%20%5Cdisplaystyle%20x_i%20%3D%20a%2Bi%5CDelta%20x%20%3D%20%5Cfrac%7Bi%7D%7B2%7D%20%2B%203%20" alt="LaTeX:  \displaystyle x_i = a+i\Delta x = \frac{i}{2} + 3 " data-equation-content=" \displaystyle x_i = a+i\Delta x = \frac{i}{2} + 3 " /> . Drawing a graph gives:
<center><?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="262.979pt" height="325.876pt" viewBox="0 0 262.979 325.876" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 3.328125 -3.015625 C 3.390625 -3.265625 3.625 -4.1875 4.3125 -4.1875 C 4.359375 -4.1875 4.609375 -4.1875 4.8125 -4.0625 C 4.53125 -4 4.34375 -3.765625 4.34375 -3.515625 C 4.34375 -3.359375 4.453125 -3.171875 4.71875 -3.171875 C 4.9375 -3.171875 5.25 -3.34375 5.25 -3.75 C 5.25 -4.265625 4.671875 -4.40625 4.328125 -4.40625 C 3.75 -4.40625 3.40625 -3.875 3.28125 -3.65625 C 3.03125 -4.3125 2.5 -4.40625 2.203125 -4.40625 C 1.171875 -4.40625 0.59375 -3.125 0.59375 -2.875 C 0.59375 -2.765625 0.703125 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.796875 0.84375 -2.875 C 1.1875 -3.9375 1.84375 -4.1875 2.1875 -4.1875 C 2.375 -4.1875 2.71875 -4.09375 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.546875 2.1875 -1.140625 C 2.03125 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.953125 -0.109375 0.734375 -0.234375 C 0.984375 -0.296875 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.84375 -1.125 C 0.53125 -1.125 0.296875 -0.875 0.296875 -0.546875 C 0.296875 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.890625 0.109375 2.25 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.375 0.109375 4.9375 -1.171875 4.9375 -1.421875 C 4.9375 -1.53125 4.859375 -1.53125 4.828125 -1.53125 C 4.734375 -1.53125 4.71875 -1.484375 4.6875 -1.421875 C 4.359375 -0.34375 3.6875 -0.109375 3.375 -0.109375 C 2.984375 -0.109375 2.828125 -0.421875 2.828125 -0.765625 C 2.828125 -0.984375 2.875 -1.203125 2.984375 -1.640625 Z M 3.328125 -3.015625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 4.84375 -3.796875 C 4.890625 -3.9375 4.890625 -3.953125 4.890625 -4.03125 C 4.890625 -4.203125 4.75 -4.296875 4.59375 -4.296875 C 4.5 -4.296875 4.34375 -4.234375 4.25 -4.09375 C 4.234375 -4.03125 4.140625 -3.734375 4.109375 -3.546875 C 4.03125 -3.296875 3.96875 -3.015625 3.90625 -2.75 L 3.453125 -0.953125 C 3.421875 -0.8125 2.984375 -0.109375 2.328125 -0.109375 C 1.828125 -0.109375 1.71875 -0.546875 1.71875 -0.921875 C 1.71875 -1.375 1.890625 -2 2.21875 -2.875 C 2.375 -3.28125 2.421875 -3.390625 2.421875 -3.59375 C 2.421875 -4.03125 2.109375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.296875 -2.953125 0.296875 -2.875 C 0.296875 -2.765625 0.390625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.796875 0.5625 -2.953125 C 0.84375 -3.890625 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.875 C 1.828125 -3.625 1.71875 -3.359375 1.65625 -3.171875 C 1.25 -2.109375 1.078125 -1.546875 1.078125 -1.078125 C 1.078125 -0.1875 1.703125 0.109375 2.296875 0.109375 C 2.6875 0.109375 3.015625 -0.0625 3.296875 -0.34375 C 3.171875 0.171875 3.046875 0.671875 2.65625 1.203125 C 2.390625 1.53125 2.015625 1.828125 1.5625 1.828125 C 1.421875 1.828125 0.96875 1.796875 0.796875 1.40625 C 0.953125 1.40625 1.09375 1.40625 1.21875 1.28125 C 1.328125 1.203125 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.0625 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.046875 1.5625 2.046875 C 2.578125 2.046875 3.609375 1.140625 3.890625 0.015625 Z M 4.84375 -3.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 6.5625 -2.296875 C 6.734375 -2.296875 6.921875 -2.296875 6.921875 -2.5 C 6.921875 -2.6875 6.734375 -2.6875 6.5625 -2.6875 L 1.171875 -2.6875 C 1 -2.6875 0.828125 -2.6875 0.828125 -2.5 C 0.828125 -2.296875 1 -2.296875 1.171875 -2.296875 Z M 6.5625 -2.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 2.9375 -6.375 C 2.9375 -6.625 2.9375 -6.640625 2.703125 -6.640625 C 2.078125 -6 1.203125 -6 0.890625 -6 L 0.890625 -5.6875 C 1.09375 -5.6875 1.671875 -5.6875 2.1875 -5.953125 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.953125 -0.3125 L 0.953125 0 C 1.296875 -0.03125 2.15625 -0.03125 2.5625 -0.03125 C 2.953125 -0.03125 3.828125 -0.03125 4.171875 0 L 4.171875 -0.3125 L 3.859375 -0.3125 C 2.953125 -0.3125 2.9375 -0.421875 2.9375 -0.78125 Z M 2.9375 -6.375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 2.890625 -3.515625 C 3.703125 -3.78125 4.28125 -4.46875 4.28125 -5.265625 C 4.28125 -6.078125 3.40625 -6.640625 2.453125 -6.640625 C 1.453125 -6.640625 0.6875 -6.046875 0.6875 -5.28125 C 0.6875 -4.953125 0.90625 -4.765625 1.203125 -4.765625 C 1.5 -4.765625 1.703125 -4.984375 1.703125 -5.28125 C 1.703125 -5.765625 1.234375 -5.765625 1.09375 -5.765625 C 1.390625 -6.265625 2.046875 -6.390625 2.40625 -6.390625 C 2.828125 -6.390625 3.375 -6.171875 3.375 -5.28125 C 3.375 -5.15625 3.34375 -4.578125 3.09375 -4.140625 C 2.796875 -3.65625 2.453125 -3.625 2.203125 -3.625 C 2.125 -3.609375 1.890625 -3.59375 1.8125 -3.59375 C 1.734375 -3.578125 1.671875 -3.5625 1.671875 -3.46875 C 1.671875 -3.359375 1.734375 -3.359375 1.90625 -3.359375 L 2.34375 -3.359375 C 3.15625 -3.359375 3.53125 -2.6875 3.53125 -1.703125 C 3.53125 -0.34375 2.84375 -0.0625 2.40625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.984375 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.4375 0.21875 C 3.65625 0.21875 4.5625 -0.6875 4.5625 -1.703125 C 4.5625 -2.515625 3.921875 -3.296875 2.890625 -3.515625 Z M 2.890625 -3.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 4.46875 -2 C 4.46875 -3.1875 3.65625 -4.1875 2.578125 -4.1875 C 2.109375 -4.1875 1.671875 -4.03125 1.3125 -3.671875 L 1.3125 -5.625 C 1.515625 -5.5625 1.84375 -5.5 2.15625 -5.5 C 3.390625 -5.5 4.09375 -6.40625 4.09375 -6.53125 C 4.09375 -6.59375 4.0625 -6.640625 3.984375 -6.640625 C 3.984375 -6.640625 3.953125 -6.640625 3.90625 -6.609375 C 3.703125 -6.515625 3.21875 -6.3125 2.546875 -6.3125 C 2.15625 -6.3125 1.6875 -6.390625 1.21875 -6.59375 C 1.140625 -6.625 1.125 -6.625 1.109375 -6.625 C 1 -6.625 1 -6.546875 1 -6.390625 L 1 -3.4375 C 1 -3.265625 1 -3.1875 1.140625 -3.1875 C 1.21875 -3.1875 1.234375 -3.203125 1.28125 -3.265625 C 1.390625 -3.421875 1.75 -3.96875 2.5625 -3.96875 C 3.078125 -3.96875 3.328125 -3.515625 3.40625 -3.328125 C 3.5625 -2.953125 3.59375 -2.578125 3.59375 -2.078125 C 3.59375 -1.71875 3.59375 -1.125 3.34375 -0.703125 C 3.109375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.5625 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.171875 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.890625 1.3125 -2.140625 0.984375 -2.140625 C 0.84375 -2.140625 0.5 -2.0625 0.5 -1.609375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 4.75 -6.078125 C 4.828125 -6.1875 4.828125 -6.203125 4.828125 -6.421875 L 2.40625 -6.421875 C 1.203125 -6.421875 1.171875 -6.546875 1.140625 -6.734375 L 0.890625 -6.734375 L 0.5625 -4.6875 L 0.8125 -4.6875 C 0.84375 -4.84375 0.921875 -5.46875 1.0625 -5.59375 C 1.125 -5.65625 1.90625 -5.65625 2.03125 -5.65625 L 4.09375 -5.65625 C 3.984375 -5.5 3.203125 -4.40625 2.984375 -4.078125 C 2.078125 -2.734375 1.75 -1.34375 1.75 -0.328125 C 1.75 -0.234375 1.75 0.21875 2.21875 0.21875 C 2.671875 0.21875 2.671875 -0.234375 2.671875 -0.328125 L 2.671875 -0.84375 C 2.671875 -1.390625 2.703125 -1.9375 2.78125 -2.46875 C 2.828125 -2.703125 2.953125 -3.5625 3.40625 -4.171875 Z M 4.75 -6.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 4.578125 -3.1875 C 4.578125 -3.984375 4.53125 -4.78125 4.1875 -5.515625 C 3.734375 -6.484375 2.90625 -6.640625 2.5 -6.640625 C 1.890625 -6.640625 1.171875 -6.375 0.75 -5.453125 C 0.4375 -4.765625 0.390625 -3.984375 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.84375 -0.78125 C 1.265625 0.015625 2 0.21875 2.484375 0.21875 C 3.015625 0.21875 3.78125 0.015625 4.21875 -0.9375 C 4.53125 -1.625 4.578125 -2.40625 4.578125 -3.1875 Z M 2.484375 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.3125 C 1.21875 -3.953125 1.21875 -4.609375 1.296875 -5.140625 C 1.484375 -6.328125 2.234375 -6.421875 2.484375 -6.421875 C 2.8125 -6.421875 3.46875 -6.234375 3.65625 -5.25 C 3.765625 -4.6875 3.765625 -3.9375 3.765625 -3.3125 C 3.765625 -2.5625 3.765625 -1.890625 3.65625 -1.25 C 3.5 -0.296875 2.9375 0 2.484375 0 Z M 2.484375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 1.265625 -0.765625 L 2.328125 -1.796875 C 3.875 -3.171875 4.46875 -3.703125 4.46875 -4.703125 C 4.46875 -5.84375 3.578125 -6.640625 2.359375 -6.640625 C 1.234375 -6.640625 0.5 -5.71875 0.5 -4.828125 C 0.5 -4.28125 1 -4.28125 1.03125 -4.28125 C 1.203125 -4.28125 1.546875 -4.390625 1.546875 -4.8125 C 1.546875 -5.0625 1.359375 -5.328125 1.015625 -5.328125 C 0.9375 -5.328125 0.921875 -5.328125 0.890625 -5.3125 C 1.109375 -5.96875 1.65625 -6.328125 2.234375 -6.328125 C 3.140625 -6.328125 3.5625 -5.515625 3.5625 -4.703125 C 3.5625 -3.90625 3.078125 -3.125 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.203125 0 L 4.46875 -1.734375 L 4.234375 -1.734375 C 4.171875 -1.4375 4.109375 -1 4 -0.84375 C 3.9375 -0.765625 3.28125 -0.765625 3.0625 -0.765625 Z M 1.265625 -0.765625 "/>
</symbol>
</g>
<clipPath id="clip1">
  <path d="M 37 318 L 43 318 L 43 325.875 L 37 325.875 Z M 37 318 "/>
</clipPath>
</defs>
<g id="surface1">
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M -28.3455 -141.733469 L 198.427937 -141.733469 M -28.3455 0.00090625 L 198.427937 0.00090625 M -28.3455 141.735281 L 198.427937 141.735281 M -28.3455 -141.733469 L -28.3455 148.821219 M -0.00175 -141.733469 L -0.00175 148.821219 M 28.345906 -141.733469 L 28.345906 148.821219 M 56.693562 -141.733469 L 56.693562 148.821219 M 85.041219 -141.733469 L 85.041219 148.821219 M 113.388875 -141.733469 L 113.388875 148.821219 M 141.732625 -141.733469 L 141.732625 148.821219 M 170.080281 -141.733469 L 170.080281 148.821219 M 198.416219 -141.733469 L 198.416219 148.821219 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -33.947063 0.00090625 L 204.0295 0.00090625 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 0.597656 169.371094 C 2.296875 169.691406 5.0625 170.648438 6.972656 171.761719 L 6.972656 166.980469 C 5.0625 168.097656 2.296875 169.054688 0.597656 169.371094 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 250.050781 169.371094 C 248.347656 169.054688 245.585938 168.097656 243.671875 166.980469 L 243.671875 171.761719 C 245.585938 170.648438 248.347656 169.691406 250.050781 169.371094 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="253.964" y="171.517"/>
</g>
<path style="fill:none;stroke-width:1.19553;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -0.00175 -150.170969 L -0.00175 150.168875 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 40.28125 325.28125 C 40.601562 323.578125 41.558594 320.816406 42.675781 318.902344 L 37.890625 318.902344 C 39.007812 320.816406 39.964844 323.578125 40.28125 325.28125 "/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 40.28125 13.464844 C 39.964844 15.164062 39.007812 17.925781 37.890625 19.839844 L 42.675781 19.839844 C 41.558594 17.925781 40.601562 15.164062 40.28125 13.464844 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-2" x="37.662" y="7.61"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -28.3455 28.344656 L -28.3455 -28.34675 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="5.571" y="207.658"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="13.32" y="207.658"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 28.345906 28.344656 L 28.345906 -28.34675 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="66.138" y="207.658"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.041219 28.344656 L 85.041219 -28.34675 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-2" x="122.831" y="207.658"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.732625 28.344656 L 141.732625 -28.34675 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="179.524" y="207.658"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.427937 28.344656 L 198.427937 -28.34675 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="236.217" y="207.658"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 -141.733469 L -5.669719 -141.733469 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="18.364" y="313.899"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="26.112" y="313.899"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 -106.299875 L -5.669719 -106.299875 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="5.633" y="278.466"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="13.382" y="278.466"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="18.364" y="278.466"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="21.131" y="278.466"/>
  <use xlink:href="#glyph2-3" x="26.1123" y="278.466"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 -70.866281 L -5.669719 -70.866281 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="10.615" y="243.033"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="18.364" y="243.033"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="23.345" y="243.033"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="26.112" y="243.033"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 -35.432688 L -5.669719 -35.432688 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph1-1" x="5.633" y="207.6"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="13.382" y="207.6"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="18.364" y="207.6"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="21.131" y="207.6"/>
  <use xlink:href="#glyph2-3" x="26.1123" y="207.6"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 0.00090625 L -5.669719 0.00090625 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 35.4345 L -5.669719 35.4345 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="13.382" y="137.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="18.364" y="137.149"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-6" x="21.131" y="137.149"/>
  <use xlink:href="#glyph2-3" x="26.1123" y="137.149"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 70.868094 L -5.669719 70.868094 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="18.364" y="101.716"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="23.345" y="101.716"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-3" x="26.112" y="101.716"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 106.301687 L -5.669719 106.301687 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-5" x="13.382" y="66.283"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-3" x="18.364" y="66.283"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-4" x="21.131" y="66.283"/>
  <use xlink:href="#glyph2-3" x="26.1123" y="66.283"/>
</g>
<path style="fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 5.670125 141.735281 L -5.669719 141.735281 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph2-1" x="26.112" y="30.85"/>
</g>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.041219 20.000906 L 85.283406 18.793875 L 85.525594 17.582937 L 85.771687 16.379812 L 86.013875 15.164969 L 86.256062 13.954031 L 86.502156 12.743094 L 86.744344 11.532156 L 86.990437 10.317312 L 87.474812 7.887625 L 87.720906 6.668875 L 87.963094 5.454031 L 88.205281 4.235281 L 88.451375 3.020437 L 88.693562 1.801687 L 88.93575 0.586844 L 89.181844 -0.628 L 89.666219 -3.0655 L 89.912312 -4.280344 L 90.1545 -5.499094 L 90.396687 -6.713938 L 90.642781 -7.928781 L 90.884969 -9.147531 L 91.127156 -10.362375 L 91.37325 -11.573313 L 91.615437 -12.78425 L 91.857625 -13.999094 L 92.103719 -15.210031 L 92.588094 -17.631906 L 92.834187 -18.835031 L 93.076375 -20.042063 L 93.318562 -21.245188 L 93.564656 -22.452219 L 94.049031 -24.850656 L 94.295125 -26.045969 L 94.537312 -27.245188 L 94.7795 -28.4405 L 95.025594 -29.628 L 95.267781 -30.819406 L 95.509969 -32.006906 L 95.756062 -33.1905 L 95.99825 -34.374094 L 96.240437 -35.553781 L 96.486531 -36.729563 L 96.728719 -37.901438 L 96.970906 -39.081125 L 97.217 -40.245188 L 97.459187 -41.413156 L 97.705281 -42.573313 L 97.947469 -43.737375 L 98.189656 -44.893625 L 98.43575 -46.049875 L 98.677937 -47.194406 L 98.920125 -48.342844 L 99.166219 -49.483469 L 99.408406 -50.624094 L 99.650594 -51.756906 L 99.896687 -52.889719 L 100.138875 -54.018625 L 100.381062 -55.143625 L 100.627156 -56.260813 L 100.869344 -57.378 L 101.111531 -58.487375 L 101.357625 -59.59675 L 101.599812 -60.694406 L 101.842 -61.795969 L 102.088094 -62.885813 L 102.330281 -63.975656 L 102.572469 -65.061594 L 102.818562 -66.139719 L 103.06075 -67.213938 L 103.302937 -68.28425 L 103.549031 -69.350656 L 103.791219 -70.40925 L 104.033406 -71.460031 L 104.2795 -72.514719 L 104.763875 -74.592844 L 105.009969 -75.624094 L 105.252156 -76.651438 L 105.494344 -77.674875 L 105.740437 -78.686594 L 105.982625 -79.698313 L 106.224812 -80.702219 L 106.470906 -81.698313 L 106.713094 -82.6905 L 106.955281 -83.678781 L 107.201375 -84.655344 L 107.443562 -85.631906 L 107.68575 -86.59675 L 107.931844 -87.557688 L 108.174031 -88.510813 L 108.420125 -89.460031 L 108.662312 -90.401438 L 108.9045 -91.335031 L 109.150594 -92.260813 L 109.392781 -93.186594 L 109.634969 -94.09675 L 109.881062 -95.003 L 110.12325 -95.905344 L 110.365437 -96.799875 L 110.611531 -97.682688 L 110.853719 -98.561594 L 111.095906 -99.432688 L 111.342 -100.299875 L 111.584187 -101.151438 L 111.826375 -102.006906 L 112.072469 -102.842844 L 112.314656 -103.678781 L 112.556844 -104.503 L 112.802937 -105.323313 L 113.045125 -106.131906 L 113.287312 -106.936594 L 113.533406 -107.729563 L 113.775594 -108.518625 L 114.017781 -109.295969 L 114.263875 -110.073313 L 114.74825 -111.588938 L 114.994344 -112.331125 L 115.236531 -113.073313 L 115.478719 -113.799875 L 115.724812 -114.526438 L 116.209187 -115.9405 L 116.455281 -116.635813 L 116.697469 -117.327219 L 116.939656 -118.003 L 117.18575 -118.674875 L 117.670125 -119.987375 L 117.916219 -120.628 L 118.158406 -121.264719 L 118.400594 -121.889719 L 118.646687 -122.506906 L 118.888875 -123.116281 L 119.134969 -123.713938 L 119.619344 -124.885813 L 119.865437 -125.452219 L 120.107625 -126.014719 L 120.349812 -126.5655 L 120.595906 -127.108469 L 120.838094 -127.647531 L 121.080281 -128.170969 L 121.326375 -128.686594 L 121.568562 -129.1905 L 121.81075 -129.686594 L 122.056844 -130.170969 L 122.299031 -130.647531 L 122.541219 -131.116281 L 122.787312 -131.573313 L 123.0295 -132.018625 L 123.271687 -132.460031 L 123.517781 -132.889719 L 123.759969 -133.307688 L 124.002156 -133.713938 L 124.24825 -134.116281 L 124.490437 -134.503 L 124.732625 -134.881906 L 124.978719 -135.249094 L 125.220906 -135.608469 L 125.463094 -135.956125 L 125.709187 -136.295969 L 125.951375 -136.624094 L 126.193562 -136.944406 L 126.439656 -137.253 L 126.681844 -137.553781 L 126.924031 -137.838938 L 127.170125 -138.120188 L 127.412312 -138.385813 L 127.6545 -138.647531 L 127.900594 -138.889719 L 128.142781 -139.131906 L 128.384969 -139.354563 L 128.631062 -139.577219 L 128.87325 -139.776438 L 129.115437 -139.979563 L 129.361531 -140.15925 L 129.603719 -140.338938 L 129.849812 -140.499094 L 130.092 -140.65925 L 130.334187 -140.795969 L 130.580281 -140.936594 L 131.064656 -141.170969 L 131.31075 -141.268625 L 131.552937 -141.366281 L 131.795125 -141.444406 L 132.041219 -141.518625 L 132.283406 -141.577219 L 132.525594 -141.631906 L 132.771687 -141.670969 L 133.013875 -141.702219 L 133.256062 -141.717844 L 133.502156 -141.729563 L 133.744344 -141.725656 L 133.986531 -141.713938 L 134.232625 -141.6905 L 134.474812 -141.65925 L 134.717 -141.612375 L 134.963094 -141.557688 L 135.205281 -141.495188 L 135.447469 -141.420969 L 135.693562 -141.335031 L 135.93575 -141.237375 L 136.177937 -141.131906 L 136.424031 -141.014719 L 136.666219 -140.889719 L 136.908406 -140.753 L 137.1545 -140.604563 L 137.396687 -140.444406 L 137.638875 -140.276438 L 137.884969 -140.09675 L 138.127156 -139.90925 L 138.369344 -139.706125 L 138.615437 -139.499094 L 138.857625 -139.280344 L 139.099812 -139.049875 L 139.345906 -138.803781 L 139.588094 -138.557688 L 139.830281 -138.292063 L 140.076375 -138.026438 L 140.318562 -137.745188 L 140.564656 -137.452219 L 140.806844 -137.147531 L 141.049031 -136.838938 L 141.295125 -136.514719 L 141.537312 -136.182688 L 141.7795 -135.838938 L 142.025594 -135.491281 L 142.509969 -134.756906 L 142.756062 -134.370188 L 142.99825 -133.983469 L 143.240437 -133.577219 L 143.486531 -133.170969 L 143.728719 -132.741281 L 143.970906 -132.3155 L 144.217 -131.870188 L 144.459187 -131.424875 L 144.701375 -130.956125 L 144.947469 -130.491281 L 145.431844 -129.522531 L 145.677937 -129.018625 L 145.920125 -128.514719 L 146.162312 -127.991281 L 146.408406 -127.467844 L 146.650594 -126.924875 L 146.892781 -126.385813 L 147.138875 -125.823313 L 147.381062 -125.264719 L 147.62325 -124.686594 L 147.869344 -124.104563 L 148.111531 -123.510813 L 148.353719 -122.90925 L 148.599812 -122.299875 L 148.842 -121.678781 L 149.084187 -121.045969 L 149.330281 -120.413156 L 149.572469 -119.768625 L 149.814656 -119.112375 L 150.06075 -118.444406 L 150.302937 -117.776438 L 150.545125 -117.092844 L 150.791219 -116.401438 L 151.033406 -115.702219 L 151.2795 -114.995188 L 151.521687 -114.280344 L 151.763875 -113.557688 L 152.009969 -112.823313 L 152.252156 -112.081125 L 152.494344 -111.331125 L 152.740437 -110.573313 L 152.982625 -109.811594 L 153.224812 -109.030344 L 153.470906 -108.253 L 153.713094 -107.463938 L 153.955281 -106.667063 L 154.201375 -105.858469 L 154.443562 -105.045969 L 154.68575 -104.225656 L 154.931844 -103.397531 L 155.416219 -101.717844 L 155.662312 -100.862375 L 155.9045 -100.003 L 156.146687 -99.135813 L 156.392781 -98.264719 L 156.877156 -96.499094 L 157.12325 -95.600656 L 157.365437 -94.698313 L 157.607625 -93.788156 L 157.853719 -92.874094 L 158.338094 -91.022531 L 158.584187 -90.081125 L 158.826375 -89.143625 L 159.068562 -88.186594 L 159.314656 -87.237375 L 159.556844 -86.268625 L 159.799031 -85.303781 L 160.045125 -84.327219 L 160.287312 -83.34675 L 160.5295 -82.354563 L 160.775594 -81.366281 L 161.259969 -79.358469 L 161.506062 -78.342844 L 161.74825 -77.327219 L 161.990437 -76.303781 L 162.236531 -75.276438 L 162.478719 -74.241281 L 162.724812 -73.202219 L 163.209187 -71.108469 L 163.455281 -70.049875 L 163.697469 -68.991281 L 163.939656 -67.920969 L 164.18575 -66.850656 L 164.670125 -64.694406 L 164.916219 -63.608469 L 165.158406 -62.518625 L 165.400594 -61.420969 L 165.646687 -60.323313 L 165.888875 -59.22175 L 166.131062 -58.112375 L 166.377156 -56.999094 L 166.619344 -55.881906 L 166.861531 -54.760813 L 167.107625 -53.635813 L 167.349812 -52.506906 L 167.592 -51.374094 L 167.838094 -50.237375 L 168.080281 -49.09675 L 168.322469 -47.952219 L 168.568562 -46.803781 L 168.81075 -45.655344 L 169.052937 -44.499094 L 169.299031 -43.342844 L 169.541219 -42.182688 L 169.783406 -41.018625 L 170.0295 -39.850656 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:0.3;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M 85.041219 19.985281 L 85.041219 0.00090625 L 99.213094 0.00090625 L 99.213094 19.985281 Z M 85.041219 19.985281 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 85.041219 19.985281 L 85.041219 0.00090625 L 99.213094 0.00090625 L 99.213094 19.985281 Z M 85.041219 19.985281 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:0.3;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M 99.213094 -49.749094 L 99.213094 0.00090625 L 113.388875 0.00090625 L 113.388875 -49.749094 Z M 99.213094 -49.749094 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 99.213094 -49.749094 L 99.213094 0.00090625 L 113.388875 0.00090625 L 113.388875 -49.749094 Z M 99.213094 -49.749094 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:0.3;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M 113.388875 -107.292063 L 113.388875 0.00090625 L 127.56075 0.00090625 L 127.56075 -107.292063 Z M 113.388875 -107.292063 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 113.388875 -107.292063 L 113.388875 0.00090625 L 127.56075 0.00090625 L 127.56075 -107.292063 Z M 113.388875 -107.292063 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:0.3;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M 127.56075 -138.616281 L 127.56075 0.00090625 L 141.732625 0.00090625 L 141.732625 -138.616281 Z M 127.56075 -138.616281 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.56075 -138.616281 L 127.56075 0.00090625 L 141.732625 0.00090625 L 141.732625 -138.616281 Z M 127.56075 -138.616281 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:0.3;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M 141.732625 -135.920969 L 141.732625 0.00090625 L 155.908406 0.00090625 L 155.908406 -135.920969 Z M 141.732625 -135.920969 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 141.732625 -135.920969 L 141.732625 0.00090625 L 155.908406 0.00090625 L 155.908406 -135.920969 Z M 141.732625 -135.920969 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill-rule:nonzero;fill:rgb(0%,0%,100%);fill-opacity:0.3;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.3;stroke-miterlimit:10;" d="M 155.908406 -100.061594 L 155.908406 0.00090625 L 170.080281 0.00090625 L 170.080281 -100.061594 Z M 155.908406 -100.061594 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
<path style="fill:none;stroke-width:0.79701;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.908406 -100.061594 L 155.908406 0.00090625 L 170.080281 0.00090625 L 170.080281 -100.061594 Z M 155.908406 -100.061594 " transform="matrix(1,0,0,-1,40.283,169.372)"/>
</g>
</svg>

</center>
The sum is  <img class="equation_image" title=" \displaystyle \sum_{i=0}^{5} \frac{\sin{\left(\frac{i}{2} + 3 \right)}}{2} = -1.8042 " src="/equation_images/%20%5Cdisplaystyle%20%5Csum_%7Bi%3D0%7D%5E%7B5%7D%20%5Cfrac%7B%5Csin%7B%5Cleft%28%5Cfrac%7Bi%7D%7B2%7D%20%2B%203%20%5Cright%29%7D%7D%7B2%7D%20%3D%20-1.8042%20" alt="LaTeX:  \displaystyle \sum_{i=0}^{5} \frac{\sin{\left(\frac{i}{2} + 3 \right)}}{2} = -1.8042 " data-equation-content=" \displaystyle \sum_{i=0}^{5} \frac{\sin{\left(\frac{i}{2} + 3 \right)}}{2} = -1.8042 " /> . </p> </p>