\(\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 5 rectangles to approximate \(\displaystyle \int\limits_{1}^{5} \cos{\left(x \right)}\, dx\) using the midpoint. Draw a graph showing the sum.


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

The sum is \(\displaystyle \sum_{i=0}^{4} \frac{4 \cos{\left(\frac{4 i}{5} + \frac{7}{5} \right)}}{5} = -1.8493\).

Download Tikz \( \LaTeX \)

\begin{tikzpicture}[yscale=5]
	\draw[very thick, color=blue, opacity=0.3, xstep=1, ystep=1] (-1,-1) grid (6,1.05);
	\draw[latex-latex, very thick] (-1.4,0)--(6.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-1.1)--(0,1.1) node[above]{$y$};
	\foreach \x in { -1,1,...,6 }{
		\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={1.0}:{5.0}, samples=200, samples =350] plot(\x, {cos((\x) r)});
		\draw[fill=blue, opacity=0.3](1.0000, 0) rectangle (1.8000, 0.16997);
		\draw[thick](1.0000, 0) rectangle (1.8000, 0.16997);
		\draw[fill=blue, opacity=0.3](1.8000, 0) rectangle (2.6000, -0.58850);
		\draw[thick](1.8000, 0) rectangle (2.6000, -0.58850);
		\draw[fill=blue, opacity=0.3](2.6000, 0) rectangle (3.4000, -0.98999);
		\draw[thick](2.6000, 0) rectangle (3.4000, -0.98999);
		\draw[fill=blue, opacity=0.3](3.4000, 0) rectangle (4.2000, -0.79097);
		\draw[thick](3.4000, 0) rectangle (4.2000, -0.79097);
		\draw[fill=blue, opacity=0.3](4.2000, 0) rectangle (5.0000, -0.11215);
		\draw[thick](4.2000, 0) rectangle (5.0000, -0.11215);
\end{tikzpicture}

Download \(\LaTeX\)

\begin{question}Use 5 rectangles to approximate $\int\limits_{1}^{5} \cos{\left(x \right)}\, dx$ using the midpoint. Draw a graph showing the sum. 
    \soln{9cm}{$\Delta x = \frac{b-a}{n}=\frac{4}{5}$ and $x_i = a+i\Delta x +\frac{\Delta x}{2} = \frac{4 i}{5} + \frac{7}{5}$. 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 (6,1.05);
	\draw[latex-latex, very thick] (-1.4,0)--(6.4,0) node[right]{$x$};
	\draw[latex-latex, very thick] (0,-1.1)--(0,1.1) node[above]{$y$};
	\foreach \x in { -1,1,...,6 }{
		\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={1.0}:{5.0}, samples=200, samples =350] plot(\x, {cos((\x) r)});
		\draw[fill=blue, opacity=0.3](1.0000, 0) rectangle (1.8000, 0.16997);
		\draw[thick](1.0000, 0) rectangle (1.8000, 0.16997);
		\draw[fill=blue, opacity=0.3](1.8000, 0) rectangle (2.6000, -0.58850);
		\draw[thick](1.8000, 0) rectangle (2.6000, -0.58850);
		\draw[fill=blue, opacity=0.3](2.6000, 0) rectangle (3.4000, -0.98999);
		\draw[thick](2.6000, 0) rectangle (3.4000, -0.98999);
		\draw[fill=blue, opacity=0.3](3.4000, 0) rectangle (4.2000, -0.79097);
		\draw[thick](3.4000, 0) rectangle (4.2000, -0.79097);
		\draw[fill=blue, opacity=0.3](4.2000, 0) rectangle (5.0000, -0.11215);
		\draw[thick](4.2000, 0) rectangle (5.0000, -0.11215);
\end{tikzpicture}

\end{center}
The sum is $\sum_{i=0}^{4} \frac{4 \cos{\left(\frac{4 i}{5} + \frac{7}{5} \right)}}{5} = -1.8493$. }

\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 5 rectangles to approximate  <img class="equation_image" title=" \displaystyle \int\limits_{1}^{5} \cos{\left(x \right)}\, dx " src="/equation_images/%20%5Cdisplaystyle%20%5Cint%5Climits_%7B1%7D%5E%7B5%7D%20%5Ccos%7B%5Cleft%28x%20%5Cright%29%7D%5C%2C%20dx%20" alt="LaTeX:  \displaystyle \int\limits_{1}^{5} \cos{\left(x \right)}\, dx " data-equation-content=" \displaystyle \int\limits_{1}^{5} \cos{\left(x \right)}\, dx " />  using the midpoint. 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{4}{5} " src="/equation_images/%20%5Cdisplaystyle%20%5CDelta%20x%20%3D%20%5Cfrac%7Bb-a%7D%7Bn%7D%3D%5Cfrac%7B4%7D%7B5%7D%20" alt="LaTeX:  \displaystyle \Delta x = \frac{b-a}{n}=\frac{4}{5} " data-equation-content=" \displaystyle \Delta x = \frac{b-a}{n}=\frac{4}{5} " />  and  <img class="equation_image" title=" \displaystyle x_i = a+i\Delta x +\frac{\Delta x}{2} = \frac{4 i}{5} + \frac{7}{5} " src="/equation_images/%20%5Cdisplaystyle%20x_i%20%3D%20a%2Bi%5CDelta%20x%20%2B%5Cfrac%7B%5CDelta%20x%7D%7B2%7D%20%3D%20%5Cfrac%7B4%20i%7D%7B5%7D%20%2B%20%5Cfrac%7B7%7D%7B5%7D%20" alt="LaTeX:  \displaystyle x_i = a+i\Delta x +\frac{\Delta x}{2} = \frac{4 i}{5} + \frac{7}{5} " data-equation-content=" \displaystyle x_i = a+i\Delta x +\frac{\Delta x}{2} = \frac{4 i}{5} + \frac{7}{5} " /> . 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="234.632pt" height="325.876pt" viewBox="0 0 234.632 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.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-5">
<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-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 170.080281 -141.733469 M -28.3455 0.00090625 L 170.080281 0.00090625 M -28.3455 141.735281 L 170.080281 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.072469 -141.733469 L 170.072469 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 175.681844 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 221.703125 169.371094 C 220.003906 169.054688 217.238281 168.097656 215.328125 166.980469 L 215.328125 171.761719 C 217.238281 170.648438 220.003906 169.691406 221.703125 169.371094 "/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
  <use xlink:href="#glyph0-1" x="225.618" 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 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-4" 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-5" 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-4" 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-4" 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-4" 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-4" 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-4" 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-5" 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 28.345906 76.575125 L 28.670125 75.204031 L 28.99825 73.821219 L 29.322469 72.430594 L 29.646687 71.032156 L 30.295125 68.204031 L 30.619344 66.774344 L 30.943562 65.332937 L 31.271687 63.891531 L 31.595906 62.4345 L 31.920125 60.973562 L 32.244344 59.504812 L 32.568562 58.02825 L 32.892781 56.539969 L 33.220906 55.047781 L 33.545125 53.547781 L 33.869344 52.039969 L 34.193562 50.524344 L 34.517781 49.004812 L 34.842 47.477469 L 35.170125 45.946219 L 35.494344 44.407156 L 35.818562 42.860281 L 36.142781 41.3095 L 36.791219 38.192312 L 37.115437 36.625906 L 37.443562 35.051687 L 37.767781 33.477469 L 38.092 31.899344 L 38.416219 30.313406 L 39.064656 27.133719 L 39.392781 25.536062 L 39.717 23.938406 L 40.689656 19.122 L 41.013875 17.512625 L 41.342 15.895437 L 41.666219 14.282156 L 42.638875 9.430594 L 42.963094 7.805594 L 43.287312 6.1845 L 43.615437 4.5595 L 43.939656 2.938406 L 44.263875 1.313406 L 44.588094 -0.307688 L 44.912312 -1.932688 L 45.236531 -3.553781 L 45.564656 -5.174875 L 45.888875 -6.799875 L 46.861531 -11.663156 L 47.18575 -13.280344 L 47.513875 -14.893625 L 47.838094 -16.506906 L 48.162312 -18.124094 L 48.486531 -19.733469 L 48.81075 -21.338938 L 49.134969 -22.9405 L 49.459187 -24.545969 L 49.787312 -26.139719 L 50.111531 -27.737375 L 50.43575 -29.327219 L 50.759969 -30.913156 L 51.408406 -34.077219 L 51.736531 -35.651438 L 52.06075 -37.22175 L 52.384969 -38.78425 L 52.709187 -40.338938 L 53.033406 -41.897531 L 53.357625 -43.444406 L 53.68575 -44.987375 L 54.009969 -46.526438 L 54.334187 -48.057688 L 54.658406 -49.581125 L 54.982625 -51.100656 L 55.306844 -52.612375 L 55.631062 -54.116281 L 55.959187 -55.616281 L 56.283406 -57.104563 L 56.607625 -58.588938 L 56.931844 -60.0655 L 57.256062 -61.530344 L 57.580281 -62.987375 L 57.908406 -64.4405 L 58.556844 -67.3155 L 58.881062 -68.741281 L 59.205281 -70.155344 L 59.5295 -71.561594 L 59.857625 -72.963938 L 60.181844 -74.34675 L 60.506062 -75.725656 L 60.830281 -77.09675 L 61.1545 -78.448313 L 61.478719 -79.795969 L 61.806844 -81.135813 L 62.131062 -82.460031 L 62.455281 -83.776438 L 62.7795 -85.081125 L 63.103719 -86.374094 L 63.427937 -87.655344 L 63.752156 -88.924875 L 64.080281 -90.182688 L 64.4045 -91.432688 L 64.728719 -92.670969 L 65.052937 -93.889719 L 65.377156 -95.100656 L 65.701375 -96.299875 L 66.0295 -97.483469 L 66.353719 -98.655344 L 66.677937 -99.8155 L 67.002156 -100.960031 L 67.326375 -102.09675 L 67.650594 -103.213938 L 67.978719 -104.319406 L 68.302937 -105.413156 L 68.627156 -106.491281 L 68.951375 -107.553781 L 69.275594 -108.608469 L 69.599812 -109.643625 L 69.924031 -110.663156 L 70.252156 -111.674875 L 70.576375 -112.667063 L 70.900594 -113.643625 L 71.224812 -114.608469 L 71.549031 -115.553781 L 71.87325 -116.487375 L 72.201375 -117.40925 L 72.525594 -118.307688 L 72.849812 -119.1905 L 73.174031 -120.0655 L 73.49825 -120.917063 L 73.822469 -121.760813 L 74.150594 -122.585031 L 74.474812 -123.389719 L 74.799031 -124.182688 L 75.12325 -124.956125 L 75.447469 -125.713938 L 75.771687 -126.456125 L 76.095906 -127.178781 L 76.424031 -127.885813 L 76.74825 -128.581125 L 77.072469 -129.256906 L 77.396687 -129.90925 L 77.720906 -130.553781 L 78.045125 -131.174875 L 78.37325 -131.780344 L 78.697469 -132.374094 L 79.021687 -132.944406 L 79.345906 -133.495188 L 79.670125 -134.038156 L 79.994344 -134.553781 L 80.322469 -135.053781 L 80.646687 -135.542063 L 80.970906 -136.003 L 81.295125 -136.452219 L 81.619344 -136.885813 L 81.943562 -137.292063 L 82.267781 -137.6905 L 82.595906 -138.0655 L 82.920125 -138.417063 L 83.244344 -138.760813 L 83.568562 -139.085031 L 83.892781 -139.385813 L 84.217 -139.674875 L 84.545125 -139.9405 L 84.869344 -140.182688 L 85.193562 -140.417063 L 85.517781 -140.628 L 85.842 -140.819406 L 86.166219 -140.995188 L 86.494344 -141.151438 L 86.818562 -141.28425 L 87.142781 -141.405344 L 87.467 -141.503 L 87.791219 -141.585031 L 88.115437 -141.651438 L 88.439656 -141.694406 L 88.767781 -141.72175 L 89.092 -141.733469 L 89.416219 -141.717844 L 89.740437 -141.682688 L 90.064656 -141.639719 L 90.388875 -141.569406 L 90.717 -141.483469 L 91.041219 -141.381906 L 91.365437 -141.256906 L 91.689656 -141.112375 L 92.013875 -140.956125 L 92.338094 -140.776438 L 92.666219 -140.577219 L 92.990437 -140.366281 L 93.314656 -140.128 L 93.638875 -139.878 L 93.963094 -139.612375 L 94.287312 -139.319406 L 94.611531 -139.010813 L 94.939656 -138.6905 L 95.263875 -138.338938 L 95.588094 -137.979563 L 95.912312 -137.600656 L 96.236531 -137.202219 L 96.56075 -136.78425 L 96.888875 -136.354563 L 97.213094 -135.897531 L 97.537312 -135.428781 L 97.861531 -134.944406 L 98.18575 -134.436594 L 98.509969 -133.913156 L 98.838094 -133.374094 L 99.162312 -132.811594 L 99.486531 -132.241281 L 99.81075 -131.643625 L 100.134969 -131.03425 L 100.459187 -130.40925 L 100.783406 -129.764719 L 101.111531 -129.100656 L 101.43575 -128.428781 L 101.759969 -127.729563 L 102.084187 -127.014719 L 102.408406 -126.292063 L 102.732625 -125.542063 L 103.06075 -124.780344 L 103.384969 -124.003 L 103.709187 -123.206125 L 104.033406 -122.393625 L 104.357625 -121.569406 L 104.681844 -120.72175 L 105.009969 -119.866281 L 105.334187 -118.995188 L 105.658406 -118.100656 L 105.982625 -117.198313 L 106.306844 -116.276438 L 106.631062 -115.338938 L 106.955281 -114.389719 L 107.283406 -113.424875 L 107.607625 -112.4405 L 107.931844 -111.444406 L 108.256062 -110.436594 L 108.580281 -109.405344 L 108.9045 -108.370188 L 109.232625 -107.3155 L 109.556844 -106.245188 L 109.881062 -105.163156 L 110.205281 -104.069406 L 110.5295 -102.960031 L 110.853719 -101.842844 L 111.181844 -100.702219 L 111.506062 -99.549875 L 111.830281 -98.389719 L 112.1545 -97.213938 L 112.478719 -96.026438 L 112.802937 -94.827219 L 113.127156 -93.612375 L 113.455281 -92.385813 L 113.7795 -91.151438 L 114.103719 -89.897531 L 114.427937 -88.635813 L 114.752156 -87.366281 L 115.076375 -86.081125 L 115.4045 -84.78425 L 115.728719 -83.479563 L 116.052937 -82.15925 L 116.377156 -80.831125 L 116.701375 -79.491281 L 117.025594 -78.139719 L 117.353719 -76.78425 L 117.677937 -75.413156 L 118.002156 -74.030344 L 118.326375 -72.643625 L 118.650594 -71.245188 L 118.974812 -69.835031 L 119.299031 -68.417063 L 119.627156 -66.987375 L 120.275594 -64.112375 L 120.599812 -62.655344 L 120.924031 -61.194406 L 121.24825 -59.725656 L 121.576375 -58.249094 L 121.900594 -56.764719 L 122.224812 -55.272531 L 122.549031 -53.772531 L 123.197469 -50.756906 L 123.525594 -49.237375 L 123.849812 -47.710031 L 124.174031 -46.178781 L 124.49825 -44.639719 L 125.146687 -41.545969 L 125.470906 -39.987375 L 125.799031 -38.428781 L 126.12325 -36.862375 L 126.447469 -35.292063 L 127.095906 -32.135813 L 127.420125 -30.553781 L 127.74825 -28.963938 L 128.072469 -27.374094 L 128.396687 -25.776438 L 128.720906 -24.174875 L 129.045125 -22.577219 L 129.369344 -20.97175 L 129.697469 -19.366281 L 130.021687 -17.756906 L 130.345906 -16.139719 L 130.670125 -14.526438 L 131.642781 -9.674875 L 131.970906 -8.049875 L 132.619344 -4.807688 L 132.943562 -3.182688 L 133.592 0.0595 L 133.920125 1.6845 L 134.244344 3.305594 L 134.568562 4.930594 L 134.892781 6.551687 L 135.217 8.176687 L 135.541219 9.797781 L 135.869344 11.414969 L 136.193562 13.036062 L 136.517781 14.649344 L 136.842 16.266531 L 137.166219 17.879812 L 137.490437 19.489187 L 137.814656 21.094656 L 138.142781 22.700125 L 138.467 24.301687 L 139.115437 27.497 L 139.439656 29.086844 L 139.763875 30.672781 L 140.092 32.254812 L 140.416219 33.836844 L 141.064656 36.985281 L 141.388875 38.547781 L 141.713094 40.106375 " 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 28.345906 0.00090625 L 28.345906 24.09075 L 51.025594 24.09075 L 51.025594 0.00090625 Z M 28.345906 0.00090625 " 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 28.345906 0.00090625 L 28.345906 24.09075 L 51.025594 24.09075 L 51.025594 0.00090625 Z M 28.345906 0.00090625 " 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 51.025594 0.00090625 L 51.025594 -83.40925 L 73.701375 -83.40925 L 73.701375 0.00090625 Z M 51.025594 0.00090625 " 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 51.025594 0.00090625 L 51.025594 -83.40925 L 73.701375 -83.40925 L 73.701375 0.00090625 Z M 51.025594 0.00090625 " 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 73.701375 0.00090625 L 73.701375 -140.3155 L 96.377156 -140.3155 L 96.377156 0.00090625 Z M 73.701375 0.00090625 " 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 73.701375 0.00090625 L 73.701375 -140.3155 L 96.377156 -140.3155 L 96.377156 0.00090625 Z M 73.701375 0.00090625 " 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 96.377156 0.00090625 L 96.377156 -112.108469 L 119.056844 -112.108469 L 119.056844 0.00090625 Z M 96.377156 0.00090625 " 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 96.377156 0.00090625 L 96.377156 -112.108469 L 119.056844 -112.108469 L 119.056844 0.00090625 Z M 96.377156 0.00090625 " 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 119.056844 0.00090625 L 119.056844 -15.897531 L 141.732625 -15.897531 L 141.732625 0.00090625 Z M 119.056844 0.00090625 " 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 119.056844 0.00090625 L 119.056844 -15.897531 L 141.732625 -15.897531 L 141.732625 0.00090625 Z M 119.056844 0.00090625 " 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}^{4} \frac{4 \cos{\left(\frac{4 i}{5} + \frac{7}{5} \right)}}{5} = -1.8493 " src="/equation_images/%20%5Cdisplaystyle%20%5Csum_%7Bi%3D0%7D%5E%7B4%7D%20%5Cfrac%7B4%20%5Ccos%7B%5Cleft%28%5Cfrac%7B4%20i%7D%7B5%7D%20%2B%20%5Cfrac%7B7%7D%7B5%7D%20%5Cright%29%7D%7D%7B5%7D%20%3D%20-1.8493%20" alt="LaTeX:  \displaystyle \sum_{i=0}^{4} \frac{4 \cos{\left(\frac{4 i}{5} + \frac{7}{5} \right)}}{5} = -1.8493 " data-equation-content=" \displaystyle \sum_{i=0}^{4} \frac{4 \cos{\left(\frac{4 i}{5} + \frac{7}{5} \right)}}{5} = -1.8493 " /> . </p> </p>