2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

[distributions] Hyper-Exponential: finalized doc.

This commit is contained in:
sguazt
2014-08-26 17:07:24 +02:00
parent 2915adc0f8
commit a8ac5aab96
27 changed files with 2892 additions and 16 deletions

View File

@@ -14,6 +14,7 @@
[include fisher.qbk]
[include gamma.qbk]
[include geometric.qbk]
[include hyperexponential.qbk]
[include hypergeometric.qbk]
[include inverse_chi_squared.qbk]
[include inverse_gamma.qbk]

View File

@@ -33,47 +33,141 @@
The class type `hyperexponential_distribution` represents a [@http://en.wikipedia.org/wiki/Hyperexponential_distribution hyperexponential distribution].
A k-phase hyperexponential distribution is a [@http://en.wikipedia.org/wiki/Continuous_probability_distribution continuous probability distribution] obtained as a mixture of k [@http://en.wikipedia.org/wiki/Exponential_distribution exponential distributions].
It is also referred to as mixed exponential distribution or parallel k-phase exponential distribution.
A /k/-phase hyperexponential distribution is a [@http://en.wikipedia.org/wiki/Continuous_probability_distribution continuous probability distribution] obtained as a mixture of /k/ __exp_distrib.
It is also referred to as /mixed exponential distribution/ or parallel /k-phase exponential distribution/.
A /k/-phase hyperexponential distribution is characterized by two parameters, namely a /phase probability vector/ ['[*[alpha]]=([alpha][sub 1],...,[alpha][sub k])] and a /rate vector/ ['[*[lambda]]=([lambda][sub 1],...,[lambda][sub k])].
The [@http://en.wikipedia.org/wiki/Probability_density_function probability density function] for random variate /x/ in a hyperexponential distribution is given by:
[equation hyperexponential_pdf]
The following graph illustrates the PDF of the hyperexponential distribution with five different parameters, namely:
# ['[*[alpha]]=(1.0)] and ['[*[lambda]]=(1.0)] (which degenerates to a simple exponential distribution),
# ['[*[alpha]]=(0.1,0.9)] and ['[*[lambda]]=(0.5,1.5)],
# ['[*[alpha]]=(0.9,0.1)] and ['[*[lambda]]=(0.5,1.5)],
# ['[*[alpha]]=(0.2,0.3,0.5)] and ['[*[lambda]]=(0.5,1.0,1.5)],
# ['[*[alpha]]=(0.5,0.3,0.2)] and ['[*[lambda]]=(0.5,1.0,1.5)].
[graph hyperexponential_pdf]
[h4 Applications]
A /k/-phase hyperexponential distribution is frequently used in [@http://en.wikipedia.org/wiki/Queueing_theory queueing theory] to model the service time distribution of a queueing station with /k/ servers in parallel where the /i/-th server is chosen with probability ['[alpha][sub i]] and its service time distribution is an exponential distribution with rate ['[lambda][sub i]] (Papadopolous et al.,1993).
A k-phase hyperexponential distribution can be interpreted as the service time distribution of k servers in parallel where the i-th server has service rate r[sub i] and is chosen with probability p[sub i].
Indeed, it is frequency used in [@http://en.wikipedia.org/wiki/Queueing_theory queueing theory] to model a queueing station with k servers in parallel.
Also, it can be used to approximate [@http://en.wikipedia.org/wiki/Long_tail long-tail probability distributions] (Feldmann et al.,1998).
A k-phase hyperexponential distribution is characterized by two paramters, namely a /phase probability vector/ p=(p[sub 1],...,p[sub k]) and a /rate vector/ r=(r[sub 1],...,r[sub k]).
The [@http://en.wikipedia.org/wiki/Probability_density_function probability density function] for value x in a hyperexponential distribution is given by:
[h4 Related distributions]
f(x;(p[sub 1],...,p[sub k]),(r[sub 1],...,r[sub k])) = [Sigma][sub i=1][super k] p[sub i]r[sub i]exp(-r[sub i]x)
When the number of phases /k/ is equal to `1`, the hyperexponential distribution is simply an __exp_distrib.
where exp(x) is the [@http://en.wikipedia.org/wiki/Exponential_function exponential function].
[h4 Member Functions]
*TODO*
[h5 Constructors]
template <typename ProbIterT, typename RateIterT>
hyperexponential_distribution(ProbIterT prob_first, ProbIterT prob_last, RateIterT rate_first, RateIterT rate_last);
Constructs a hyperexponential distribution with /phase probability vector/ parameter given by the range defined by \[`prob_first`, `prob_last`) iterator pair, and /rate vector/ parameter given by the range defined by the \[`rate_first`, `rate_last`) iterator pair.
[h6 Parameters]
* `prob_first`, `prob_last`: the range of non-negative real elements representing the phase probabilities; if elements don't sum to `1`, they are normalized.
* `rate_first`, `rate_last`: the range of positive elements representing the rates.
[h6 Type Requirements]
[itemized_list [ `ProbIterT`, `RateIterT`: must meet the requirements of the [@http://en.cppreference.com/w/cpp/concept/InputIterator InputIterator] concept.]]
template <typename ProbRangeT, typename RateRangeT>
hyperexponential_distribution(ProbRangeT const& prob_range, RateRangeT const& rate_range);
Constructs a hyperexponential distribution with /phase probability vector/ parameter given by the range defined by `prob_range`, and /rate vector/ parameter given by the range defined by `rate_range`.
[h6 Parameters]
* `prob_range`: the range of non-negative real elements representing the phase probabilities; if elements don't sum to `1`, they are normalized.
* `rate_range`: the range of positive real elements representing the rates.
[h6 Type Requirements]
* `ProbRangeT`, `RateRangeT`: must meet the requirements of the [link range.concepts Range] concept.
[h5 Accessors]
std::size_t num_phases() const;
Gets the number of phases of this distribution.
[h6 Return Value] An non-negative integer number representing the number of phases of this distribution.
std::vector<RealType> probabilities() const;
Gets the /phase probability vector/ parameter of this distribution.
[h6 Return Value] A vector of non-negative real numbers representing the /phase probability vector/ parameter of this distribution.
std::vector<RealType> rates() const;
Gets the /rate vector/ parameter of this distribution.
[h6 Return Value] A vector of positive real numbers representing the /rate vector/ parameter of this distribution.
[h4 Non-member Accessor Functions]
*TODO*
All the [link math_toolkit.dist_ref.nmp usual non-member accessor functions] that are generic to all distributions are supported: __usual_accessors.
The formulae for calculating these are shown in the table below.
[h4 Accuracy]
*TODO*
The hyperexponential distribution is implemented in terms of the __exp_distrib and as such should have very small errors.
[h4 Implementation]
*TODO*
In the following table:
* ['[*[alpha]]=([alpha][sub 1],...,[alpha][sub k])] is the /phase probability vector/ parameter of the /k/-phase hyperexponential distribution,
* ['[*[lambda]]=([lambda][sub 1],...,[lambda][sub k])] is the /rate vector/ parameter of the /k/-phase hyperexponential distribution,
* /x/ is the random variate.
[table
[[Function][Implementation Notes]]
[[support][['x] [isin] \[0,[infin])]]
[[pdf][[equation hyperexponential_pdf]]]
[[cdf][[equation hyperexponential_cdf]]]
[[cdf complement][[equation hyperexponential_ccdf]]]
[[quantile][No closed form available. Computed numerically.]]
[[quantile from the complement][No closed form available. Computed numerically.]]
[[mean][[equation hyperexponential_mean]]]
[[variance][[equation hyperexponential_variance]]]
[[mode][`0`]]
[[skewness][[equation hyperexponential_skewness]]]
[[kurtosis][[equation hyperexponential_kurtosis]]]
[[kurtosis excess][kurtosis `- 3`]]
]
[h4 References]
* A. Feldmann and W. Whitt, /Fitting mixtures of exponentials to long-tail distributions to analyze network performance models/, Performance Evaluation 31(3-4):245, doi:10.1016/S0166-5316(97)00003-5, 1998.
* H.T. Papadopolous, C. Heavey and J. Browne, /Queueing Theory in Manufacturing Systems Analysis and Design/, Chapman & Hall/CRC, 1993, p. 35.
* Wolfram Mathematica, /Hyperexponential Distribution/, Online: [@http://reference.wolfram.com/language/ref/HyperexponentialDistribution.html], 2014.
* Wikipedia, /Hyperexponential Distribution/, Online: [@http://en.wikipedia.org/wiki/Hyperexponential_distribution], 2014
* A. Feldmann and W. Whitt, /Fitting mixtures of exponentials to long-tail distributions to analyze network performance models/, Performance Evaluation 31(3-4):245, doi:10.1016/S0166-5316(97)00003-5, 1998.
[endsect][/section:hyperexponential_dist hyperexponential]
[/ hyperexponential.qbk

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msup>
<mi>e</mi>
<mrow class="MJX-TeXAtom-ORD">
<mo>&#x2212;<!-- --></mo>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
<mi>x</mi>
</mrow>
</msup>
</math>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:pmml2svg="https://sourceforge.net/projects/pmml2svg/"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="252.69857867605634px"
height="150.9973309859155px"
viewBox="0 0 252.69857867605634 150.9973309859155">
<metadata>
<pmml2svg:baseline-shift>57.62793661971833</pmml2svg:baseline-shift>
</metadata>
<g stroke="none"
fill="#000000"
text-rendering="optimizeLegibility"
font-family="STIXGeneral,STIXSizeOneSym">
<g xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text x="13.646270408450697"
y="93.36939436619718"
font-size="70.42253521126761"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="10"
y="140.6068309859155"
font-size="35.5">i</text>
<text x="29.730119000000002"
y="140.6068309859155"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="63.90873800000001"
y="140.6068309859155"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="37.646619"
y="34.2465"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="93.39585067605634"
y="93.36939436619718"
font-size="50">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="124.32918400938966"
y="104.97789436619719"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="141.69818400938968"
y="93.36939436619718"
font-size="50">e</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text x="167.231517342723"
y="64.2901043661972"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="193.947255342723"
y="64.29010436619718"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="213.53958867605633"
y="72.53213936619719"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="226.83007867605633"
y="64.29010436619718"
font-size="35.5">x</text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mn>1</mn>
<mo>&#x2212;<!-- --></mo>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msup>
<mi>e</mi>
<mrow class="MJX-TeXAtom-ORD">
<mo>&#x2212;<!-- --></mo>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
<mi>x</mi>
</mrow>
</msup>
</math>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:pmml2svg="https://sourceforge.net/projects/pmml2svg/"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="334.17077867605633px"
height="150.99733098591548px"
viewBox="0 0 334.17077867605633 150.99733098591548">
<metadata>
<pmml2svg:baseline-shift>57.6279366197183</pmml2svg:baseline-shift>
</metadata>
<g stroke="none"
fill="#000000"
text-rendering="optimizeLegibility"
font-family="STIXGeneral,STIXSizeOneSym">
<g xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="10"
y="93.36939436619718"
font-size="50">1</text>
<text x="46.1111"
y="93.3693943661972"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<text x="95.1184704084507"
y="93.36939436619718"
font-size="70.42253521126761"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="91.4722"
y="140.6068309859155"
font-size="35.5">i</text>
<text x="111.202319"
y="140.6068309859155"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="145.38093800000001"
y="140.6068309859155"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="119.118819"
y="34.246500000000005"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="174.86805067605636"
y="93.36939436619718"
font-size="50">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="205.8013840093897"
y="104.97789436619719"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="223.1703840093897"
y="93.36939436619718"
font-size="50">e</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text x="248.70371734272302"
y="64.29010436619718"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="275.419455342723"
y="64.29010436619718"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="295.01178867605637"
y="72.53213936619719"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="308.3022786760563"
y="64.29010436619718"
font-size="35.5">x</text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1,282 @@
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mfrac>
<mrow>
<mn>24</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>4</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mo>&#x2212;<!-- --></mo>
<mn>24</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>3</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mo>+</mo>
<mn>3</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.470em" minsize="2.470em">(</mo>
</mrow>
<mn>2</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.047em" minsize="2.047em">(</mo>
</mrow>
<mn>2</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>2</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mo>&#x2212;<!-- --></mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mn>2</mn>
</msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.047em" minsize="2.047em">)</mo>
</mrow>
<mo>+</mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mn>2</mn>
</msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.470em" minsize="2.470em">)</mo>
</mrow>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mn>2</mn>
</msup>
</mrow>
<mrow>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.047em" minsize="2.047em">(</mo>
</mrow>
<mn>2</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>2</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mo>&#x2212;<!-- --></mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mn>2</mn>
</msup>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.047em" minsize="2.047em">)</mo>
</mrow>
<mn>2</mn>
</msup>
</mrow>
</mfrac>
</math>

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,761 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:pmml2svg="https://sourceforge.net/projects/pmml2svg/"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1631.0046421691543px"
height="280.58400000000006px"
viewBox="0 0 1631.0046421691543 280.58400000000006">
<metadata>
<pmml2svg:baseline-shift>129.23400000000004</pmml2svg:baseline-shift>
</metadata>
<g stroke="none"
fill="#000000"
text-rendering="optimizeLegibility"
font-family="STIXGeneral,STIXSizeOneSym">
<g xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="13.333333333333334"
y="84.60000000000001"
font-size="50">24</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="63.333333333333336"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="63.333333333333336"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="92.46195606467663"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="79.48258706467662"
y="126.548"
font-size="35.5">i</text>
<text x="99.21270606467662"
y="126.548"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="133.39132506467664"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="107.12920606467662"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="164.15026339800994"
y="58.23071"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="187.0795967313433"
y="66.472745"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="163.23400839800993"
y="111.51118000000001"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="182.8263417313433"
y="121.401622"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="182.8263417313433"
y="96.91358"
font-size="25.205">4</text>
<line x1="159.47467506467663"
y1="71.75"
x2="198.76217506467663"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="198.76217506467663"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="198.76217506467663"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="226.0225287960199"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="271.3836287960199"
y="84.60000000000001"
font-size="50">24</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="321.3836287960199"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="321.3836287960199"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="350.51225152736316"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="337.53288252736314"
y="126.548"
font-size="35.5">i</text>
<text x="357.26300152736314"
y="126.548"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="391.44162052736317"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="365.1795015273632"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="422.20055886069656"
y="58.23071"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="445.1298921940299"
y="66.472745"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="421.2843038606965"
y="111.86405"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="440.87663719402985"
y="121.75449200000001"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="440.87663719402985"
y="96.91358000000001"
font-size="25.205">3</text>
<line x1="417.52497052736317"
y1="71.75"
x2="456.8124705273632"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="456.8124705273632"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="456.8124705273632"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="472.96172425870645"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="472.96172425870645"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="502.09034699004974"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="489.1109779900497"
y="126.548"
font-size="35.5">i</text>
<text x="508.8410969900497"
y="126.548"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="543.0197159900498"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="516.7575969900497"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="572.4363993233831"
y="58.23071"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="595.3657326567164"
y="66.472745"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="574.3178993233831"
y="103.944"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="593.9102326567165"
y="112.18603500000002"
font-size="25.205">i</text>
<line x1="569.1030659900498"
y1="71.75"
x2="605.7060559900498"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="605.7060559900498"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="605.7060559900498"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="632.966409721393"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">+</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="678.3275097213931"
y="84.60000000000001"
font-size="50">3</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="703.3275097213931"
y="38.3716216216216"
font-size="41.722972972972975"></text>
<text x="703.3275097213931"
y="120.98310810810811"
font-size="41.722972972972975"></text>
<text x="703.3275097213931"
y="79.67736486486487"
font-size="41.722972972972975"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="727.9046241492538"
y="84.60000000000001"
font-size="50">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="752.9046241492538"
y="55.903934010152284"
font-size="51.954314720812185"></text>
<text x="752.9046241492538"
y="107.33870558375635"
font-size="51.954314720812185"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="773.2727833532339"
y="84.60000000000001"
font-size="50">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="798.2727833532339"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="798.2727833532339"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="827.4014060845772"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="814.4220370845771"
y="126.548"
font-size="35.5">i</text>
<text x="834.1521560845772"
y="126.548"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="868.3307750845772"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="842.0686560845771"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="899.0897134179105"
y="58.23071"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="922.0190467512439"
y="66.472745"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="898.1734584179105"
y="111.51118000000001"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="917.7657917512438"
y="121.401622"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="917.7657917512438"
y="96.91358"
font-size="25.205">2</text>
<line x1="894.4141250845772"
y1="71.75"
x2="933.7016250845771"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="933.7016250845771"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="933.7016250845771"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="960.9619788159204"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1006.3230788159204"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="1006.3230788159204"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="1035.4517015472636"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1022.4723325472637"
y="126.548"
font-size="35.5">i</text>
<text x="1042.2024515472635"
y="126.548"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1076.3810705472636"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1050.1189515472636"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1105.797753880597"
y="58.23071"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1128.7270872139302"
y="66.472745"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1107.679253880597"
y="103.944"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1127.2715872139302"
y="112.18603500000002"
font-size="25.205">i</text>
<line x1="1102.4644205472634"
y1="71.75"
x2="1139.0674105472635"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1139.0674105472635"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="1139.0674105472635"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1158.5499976119404"
y="36.51750000000001"
font-size="35.5">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1176.2999976119402"
y="55.903934010152284"
font-size="51.954314720812185"></text>
<text x="1176.2999976119402"
y="107.33870558375635"
font-size="51.954314720812185"></text>
</g>
</g>
<text x="1207.7792568159205"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">+</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1253.1403568159203"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="1253.1403568159203"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="1282.2689795472636"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1269.2896105472637"
y="126.548"
font-size="35.5">i</text>
<text x="1289.0197295472635"
y="126.548"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1323.1983485472635"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1296.9362295472638"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1352.615031880597"
y="58.23071"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1375.5443652139302"
y="66.472745"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1354.4965318805969"
y="103.944"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1374.0888652139301"
y="112.18603500000002"
font-size="25.205">i</text>
<line x1="1349.2816985472634"
y1="71.75"
x2="1385.8846885472635"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1385.8846885472635"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="1385.8846885472635"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1405.3672756119404"
y="36.51750000000001"
font-size="35.5">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1423.1172756119402"
y="38.3716216216216"
font-size="41.722972972972975"></text>
<text x="1423.1172756119402"
y="120.98310810810811"
font-size="41.722972972972975"></text>
<text x="1423.1172756119402"
y="79.67736486486487"
font-size="41.722972972972975"></text>
</g>
</g>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1447.694390039801"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="1447.694390039801"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="1476.8230127711442"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1463.8436437711443"
y="126.548"
font-size="35.5">i</text>
<text x="1483.5737627711442"
y="126.548"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1517.7523817711442"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1491.4902627711444"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1547.1690651044776"
y="58.23071"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1570.0983984378108"
y="66.472745"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1549.0505651044775"
y="103.944"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1568.6428984378108"
y="112.18603500000002"
font-size="25.205">i</text>
<line x1="1543.835731771144"
y1="71.75"
x2="1580.4387217711442"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1580.4387217711442"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="1580.4387217711442"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1599.921308835821"
y="36.51750000000001"
font-size="35.5">2</text>
</g>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="583.0788880845772"
y="199.5494340101523"
font-size="51.954314720812185"></text>
<text x="583.0788880845772"
y="250.9842055837564"
font-size="51.954314720812185"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="603.4470472885573"
y="228.24550000000002"
font-size="50">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="628.4470472885573"
y="202.83166751269036"
font-size="41.19289340101523"></text>
<text x="628.4470472885573"
y="243.61263197969544"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="657.5756700199006"
y="228.24550000000002"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="644.5963010199006"
y="270.19350000000003"
font-size="35.5">i</text>
<text x="664.3264200199006"
y="270.1935"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="698.5050390199006"
y="270.19350000000003"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="672.2429200199006"
y="184.70500000000004"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="729.2639773532339"
y="201.87621"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="752.1933106865672"
y="210.118245"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="728.347722353234"
y="255.15668"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="747.9400556865673"
y="265.047122"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="747.9400556865673"
y="240.55908000000002"
font-size="25.205">2</text>
<line x1="724.5883890199007"
y1="215.39550000000003"
x2="763.8758890199007"
y2="215.39550000000003"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="763.8758890199006"
y="202.83166751269036"
font-size="41.19289340101523"></text>
<text x="763.8758890199006"
y="243.61263197969544"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="791.1362427512439"
y="228.24550000000002"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="836.4973427512439"
y="202.83166751269036"
font-size="41.19289340101523"></text>
<text x="836.4973427512439"
y="243.61263197969544"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="865.6259654825872"
y="228.24550000000002"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="852.6465964825871"
y="270.19350000000003"
font-size="35.5">i</text>
<text x="872.3767154825872"
y="270.1935"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="906.5553344825871"
y="270.19350000000003"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="880.2932154825871"
y="184.70500000000004"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="935.9720178159205"
y="201.87621"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="958.901351149254"
y="210.118245"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="937.8535178159206"
y="247.5895"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="957.4458511492538"
y="255.831535"
font-size="25.205">i</text>
<line x1="932.6386844825872"
y1="215.39550000000003"
x2="969.2416744825872"
y2="215.39550000000003"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="969.2416744825871"
y="202.83166751269036"
font-size="41.19289340101523"></text>
<text x="969.2416744825871"
y="243.61263197969544"
font-size="41.19289340101523"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="988.7242615472637"
y="180.16299999999998"
font-size="35.5">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1006.4742615472637"
y="199.5494340101523"
font-size="51.954314720812185"></text>
<text x="1006.4742615472637"
y="250.9842055837564"
font-size="51.954314720812185"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1030.1757540845772"
y="170.623"
font-size="35.5">2</text>
</g>
<line x1="10"
y1="138.50000000000003"
x2="1621.0046421691543"
y2="138.50000000000003"
fill="none"
stroke="black"
stroke-width="3.125"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
</math>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:pmml2svg="https://sourceforge.net/projects/pmml2svg/"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="150.86485067605634px"
height="150.9973309859155px"
viewBox="0 0 150.86485067605634 150.9973309859155">
<metadata>
<pmml2svg:baseline-shift>57.62793661971833</pmml2svg:baseline-shift>
</metadata>
<g stroke="none"
fill="#000000"
text-rendering="optimizeLegibility"
font-family="STIXGeneral,STIXSizeOneSym">
<g xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text x="13.646270408450697"
y="93.36939436619718"
font-size="70.42253521126761"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="10"
y="140.6068309859155"
font-size="35.5">i</text>
<text x="29.730119000000002"
y="140.6068309859155"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="63.90873800000001"
y="140.6068309859155"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="37.646619"
y="34.2465"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="96.72918400938967"
y="63.520394366197195"
font-size="50">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="127.662517342723"
y="75.1288943661972"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="99.37918400938966"
y="122.5443943661972"
font-size="50">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="125.61251734272301"
y="134.15289436619722"
font-size="35.5">i</text>
<line x1="93.39585067605634"
y1="80.51939436619719"
x2="140.86485067605634"
y2="80.51939436619719"
fill="none"
stroke="black"
stroke-width="3.125"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
<msup>
<mi>e</mi>
<mrow class="MJX-TeXAtom-ORD">
<mo>&#x2212;<!-- --></mo>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
<mi>x</mi>
</mrow>
</msup>
</math>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1,79 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:pmml2svg="https://sourceforge.net/projects/pmml2svg/"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="296.9009120093897px"
height="150.9973309859155px"
viewBox="0 0 296.9009120093897 150.9973309859155">
<metadata>
<pmml2svg:baseline-shift>57.62793661971833</pmml2svg:baseline-shift>
</metadata>
<g stroke="none"
fill="#000000"
text-rendering="optimizeLegibility"
font-family="STIXGeneral,STIXSizeOneSym">
<g xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text x="13.646270408450697"
y="93.36939436619718"
font-size="70.42253521126761"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="10"
y="140.6068309859155"
font-size="35.5">i</text>
<text x="29.730119000000002"
y="140.6068309859155"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="63.90873800000001"
y="140.6068309859155"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="37.646619"
y="34.2465"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="93.39585067605634"
y="93.36939436619718"
font-size="50">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="124.32918400938966"
y="104.97789436619719"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="142.29818400938967"
y="93.36939436619718"
font-size="50">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="168.53151734272302"
y="104.97789436619719"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="185.90051734272302"
y="93.36939436619718"
font-size="50">e</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text x="211.43385067605635"
y="64.2901043661972"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="238.14958867605634"
y="64.29010436619718"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="257.74192200938967"
y="72.53213936619719"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="271.03241200938965"
y="64.29010436619718"
font-size="35.5">x</text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1,230 @@
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mfrac>
<mrow>
<mn>6</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>3</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mo>&#x2212;<!-- --></mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.470em" minsize="2.470em">(</mo>
</mrow>
<mn>3</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.047em" minsize="2.047em">(</mo>
</mrow>
<mn>2</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>2</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mo>&#x2212;<!-- --></mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mn>2</mn>
</msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.047em" minsize="2.047em">)</mo>
</mrow>
<mo>+</mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mn>2</mn>
</msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.470em" minsize="2.470em">)</mo>
</mrow>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
</mrow>
<mrow>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.047em" minsize="2.047em">(</mo>
</mrow>
<mn>2</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>2</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mo>&#x2212;<!-- --></mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="1.623em" minsize="1.623em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="1.623em" minsize="1.623em">)</mo>
</mrow>
<mn>2</mn>
</msup>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.047em" minsize="2.047em">)</mo>
</mrow>
<mrow class="MJX-TeXAtom-ORD">
<mfrac>
<mn>3</mn>
<mn>2</mn>
</mfrac>
</mrow>
</msup>
</mrow>
</mfrac>
</math>

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -0,0 +1,624 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:pmml2svg="https://sourceforge.net/projects/pmml2svg/"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="1152.9774279104481px"
height="303.23478px"
viewBox="0 0 1152.9774279104481 303.23478">
<metadata>
<pmml2svg:baseline-shift>151.88478</pmml2svg:baseline-shift>
</metadata>
<g stroke="none"
fill="#000000"
text-rendering="optimizeLegibility"
font-family="STIXGeneral,STIXSizeOneSym">
<g xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="13.333333333333334"
y="84.60000000000001"
font-size="50">6</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="38.333333333333336"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="38.333333333333336"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="67.46195606467663"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="54.48258706467663"
y="126.54800000000002"
font-size="35.5">i</text>
<text x="74.21270606467662"
y="126.54800000000002"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="108.39132506467662"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="82.12920606467662"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="139.15026339800994"
y="58.230710000000016"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="162.0795967313433"
y="66.47274500000002"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="138.23400839800993"
y="111.86405"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="157.8263417313433"
y="121.754492"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="157.8263417313433"
y="96.91358000000001"
font-size="25.205">3</text>
<line x1="134.47467506467663"
y1="71.75"
x2="173.76217506467663"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="173.76217506467663"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="173.76217506467663"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="201.0225287960199"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="246.3836287960199"
y="38.3716216216216"
font-size="41.722972972972975"></text>
<text x="246.3836287960199"
y="120.98310810810811"
font-size="41.722972972972975"></text>
<text x="246.3836287960199"
y="79.67736486486487"
font-size="41.722972972972975"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="270.96074322388057"
y="84.60000000000001"
font-size="50">3</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="295.96074322388057"
y="55.903934010152284"
font-size="51.954314720812185"></text>
<text x="295.96074322388057"
y="107.33870558375635"
font-size="51.954314720812185"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="316.32890242786067"
y="84.60000000000001"
font-size="50">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="341.32890242786067"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="341.32890242786067"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="370.45752515920395"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="357.47815615920393"
y="126.54800000000002"
font-size="35.5">i</text>
<text x="377.20827515920394"
y="126.54800000000002"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="411.38689415920396"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="385.124775159204"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="442.14583249253735"
y="58.230710000000016"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="465.07516582587067"
y="66.47274500000002"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="441.2295774925373"
y="111.51118000000001"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="460.82191082587065"
y="121.401622"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="460.82191082587065"
y="96.91358000000001"
font-size="25.205">2</text>
<line x1="437.47024415920396"
y1="71.75"
x2="476.757744159204"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="476.757744159204"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="476.757744159204"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="504.01809789054727"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="549.3791978905473"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="549.3791978905473"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="578.5078206218906"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="565.5284516218906"
y="126.54800000000002"
font-size="35.5">i</text>
<text x="585.2585706218906"
y="126.54800000000002"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="619.4371896218906"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="593.1750706218905"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="648.8538729552239"
y="58.230710000000016"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="671.7832062885573"
y="66.47274500000002"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="650.735372955224"
y="103.944"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="670.3277062885572"
y="112.186035"
font-size="25.205">i</text>
<line x1="645.5205396218906"
y1="71.75"
x2="682.1235296218906"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="682.1235296218906"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="682.1235296218906"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="701.6061166865671"
y="36.51750000000001"
font-size="35.5">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="719.3561166865672"
y="55.903934010152284"
font-size="51.954314720812185"></text>
<text x="719.3561166865672"
y="107.33870558375635"
font-size="51.954314720812185"></text>
</g>
</g>
<text x="750.8353758905473"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">+</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="796.1964758905474"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="796.1964758905474"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="825.3250986218907"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="812.3457296218907"
y="126.54800000000002"
font-size="35.5">i</text>
<text x="832.0758486218907"
y="126.54800000000002"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="866.2544676218907"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="839.9923486218906"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="895.671150955224"
y="58.230710000000016"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="918.6004842885574"
y="66.47274500000002"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="897.5526509552241"
y="103.944"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="917.1449842885575"
y="112.186035"
font-size="25.205">i</text>
<line x1="892.3378176218907"
y1="71.75"
x2="928.9408076218907"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="928.9408076218907"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="928.9408076218907"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="948.4233946865672"
y="36.51750000000001"
font-size="35.5">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="966.1733946865673"
y="38.3716216216216"
font-size="41.722972972972975"></text>
<text x="966.1733946865673"
y="120.98310810810811"
font-size="41.722972972972975"></text>
<text x="966.1733946865673"
y="79.67736486486487"
font-size="41.722972972972975"></text>
</g>
</g>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="990.750509114428"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="990.750509114428"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="1019.8791318457713"
y="84.60000000000001"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1006.8997628457713"
y="126.54800000000002"
font-size="35.5">i</text>
<text x="1026.6298818457713"
y="126.54800000000002"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="1060.8085008457713"
y="126.54800000000002"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1034.5463818457713"
y="41.059500000000014"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1090.2251841791046"
y="58.230710000000016"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1113.154517512438"
y="66.47274500000002"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1092.1066841791046"
y="103.944"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="1111.6990175124379"
y="112.186035"
font-size="25.205">i</text>
<line x1="1086.8918508457712"
y1="71.75"
x2="1123.4948408457713"
y2="71.75"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="1123.4948408457713"
y="59.18616751269037"
font-size="41.19289340101523"></text>
<text x="1123.4948408457713"
y="99.96713197969545"
font-size="41.19289340101523"></text>
</g>
</g>
</g>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="343.3056976218907"
y="222.2002140101523"
font-size="51.954314720812185"></text>
<text x="343.3056976218907"
y="273.63498558375636"
font-size="51.954314720812185"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="363.6738568258708"
y="250.89628000000002"
font-size="50">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="388.6738568258708"
y="225.48244751269036"
font-size="41.19289340101523"></text>
<text x="388.6738568258708"
y="266.26341197969543"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="417.80247955721416"
y="250.89628000000002"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="404.82311055721414"
y="292.84428"
font-size="35.5">i</text>
<text x="424.5532295572141"
y="292.84427999999997"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="458.7318485572141"
y="292.84428"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="432.4697295572141"
y="207.35578000000004"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="489.49078689054744"
y="224.52698999999998"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="512.4201202238808"
y="232.769025"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="488.5745318905474"
y="277.80746"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="508.16686522388073"
y="287.697902"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="508.16686522388073"
y="263.20986000000005"
font-size="25.205">2</text>
<line x1="484.8151985572141"
y1="238.04628000000002"
x2="524.1026985572141"
y2="238.04628000000002"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="524.1026985572141"
y="225.48244751269036"
font-size="41.19289340101523"></text>
<text x="524.1026985572141"
y="266.26341197969543"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="551.3630522885574"
y="250.89628000000002"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="596.7241522885574"
y="225.48244751269036"
font-size="41.19289340101523"></text>
<text x="596.7241522885574"
y="266.26341197969543"
font-size="41.19289340101523"></text>
</g>
</g>
<text x="625.8527750199007"
y="250.89628000000002"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="612.8734060199006"
y="292.84428"
font-size="35.5">i</text>
<text x="632.6035250199008"
y="292.84427999999997"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="666.7821440199007"
y="292.84428"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="640.5200250199007"
y="207.35578000000004"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="696.198827353234"
y="224.52698999999998"
font-size="35.5">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="719.1281606865673"
y="232.769025"
font-size="25.205">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="698.0803273532341"
y="270.24028"
font-size="35.5">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="717.6726606865673"
y="278.48231499999997"
font-size="25.205">i</text>
<line x1="692.8654940199007"
y1="238.04628000000002"
x2="729.4684840199006"
y2="238.04628000000002"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="729.4684840199006"
y="225.48244751269036"
font-size="41.19289340101523"></text>
<text x="729.4684840199006"
y="266.26341197969543"
font-size="41.19289340101523"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="748.9510710845773"
y="202.81377999999998"
font-size="35.5">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="766.7010710845773"
y="222.2002140101523"
font-size="51.954314720812185"></text>
<text x="766.7010710845773"
y="273.63498558375636"
font-size="51.954314720812185"></text>
</g>
</g>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="793.735896955224"
y="163.66358"
font-size="25.205">3</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="793.735896955224"
y="193.27378"
font-size="25.205">2</text>
<line x1="790.4025636218906"
y1="169.01645"
x2="809.6717302885573"
y2="169.01645"
fill="none"
stroke="black"
stroke-width="2.21875"/>
</g>
</g>
<line x1="10"
y1="138.5"
x2="1142.9774279104481"
y2="138.5"
fill="none"
stroke="black"
stroke-width="3.125"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 35 KiB

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mn>2</mn>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.047em" minsize="2.047em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msubsup>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
<mn>2</mn>
</msubsup>
</mfrac>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.047em" minsize="2.047em">)</mo>
</mrow>
<mo>&#x2212;<!-- --></mo>
<mrow class="MJX-TeXAtom-OPEN">
<mo maxsize="2.047em" minsize="2.047em">(</mo>
</mrow>
<munderover>
<mo>&#x2211;<!-- ∑ --></mo>
<mrow class="MJX-TeXAtom-ORD">
<mi>i</mi>
<mo>=</mo>
<mn>1</mn>
</mrow>
<mi>k</mi>
</munderover>
<mfrac>
<msub>
<mi>&#x03B1;<!-- α --></mi>
<mi>i</mi>
</msub>
<msub>
<mi>&#x03BB;<!-- λ --></mi>
<mi>i</mi>
</msub>
</mfrac>
<msup>
<mrow class="MJX-TeXAtom-CLOSE">
<mo maxsize="2.047em" minsize="2.047em">)</mo>
</mrow>
<mn>2</mn>
</msup>
</math>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@@ -0,0 +1,161 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns:pmml2svg="https://sourceforge.net/projects/pmml2svg/"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="469.5388715013665px"
height="157.5230943661972px"
viewBox="0 0 469.5388715013665 157.5230943661972">
<metadata>
<pmml2svg:baseline-shift>64.15370000000001</pmml2svg:baseline-shift>
</metadata>
<g stroke="none"
fill="#000000"
text-rendering="optimizeLegibility"
font-family="STIXGeneral,STIXSizeOneSym">
<g xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="10"
y="93.36939436619718"
font-size="50">2</text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="35" y="64.67332837634947" font-size="51.954314720812185"></text>
<text x="35" y="116.10809994995354" font-size="51.954314720812185"></text>
</g>
</g>
<text x="59.01442961243082"
y="93.36939436619718"
font-size="70.42253521126761"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="55.368159203980106"
y="140.6068309859155"
font-size="35.5">i</text>
<text x="75.09827820398012"
y="140.6068309859155"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="109.27689720398013"
y="140.6068309859155"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="83.01477820398011"
y="34.246500000000005"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="143.9878432133698"
y="63.520394366197195"
font-size="50">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="174.92117654670312"
y="75.1288943661972"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="142.6973432133698"
y="133.2023943661972"
font-size="50">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="168.93067654670313"
y="147.1325943661972"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="168.93067654670313"
y="112.64239436619721"
font-size="35.5">2</text>
<line x1="138.76400988003647"
y1="80.51939436619719"
x2="190.01400988003647"
y2="80.51939436619719"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="190.01400988003647"
y="64.67332837634947"
font-size="51.954314720812185"></text>
<text x="190.01400988003647"
y="116.10809994995354"
font-size="51.954314720812185"></text>
</g>
</g>
<text x="221.49326908401656"
y="93.3693943661972"
font-size="50"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="266.8543690840166"
y="64.67332837634947"
font-size="51.954314720812185"></text>
<text x="266.8543690840166"
y="116.10809994995354"
font-size="51.954314720812185"></text>
</g>
</g>
<text x="290.8687986964474"
y="93.36939436619718"
font-size="70.42253521126761"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "></text>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="287.2225282879967"
y="140.6068309859155"
font-size="35.5">i</text>
<text x="306.9526472879967"
y="140.6068309859155"
font-size="35.5"
style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">=</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="341.1312662879967"
y="140.6068309859155"
font-size="35.5">1</text>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="314.8691472879967"
y="34.246500000000005"
font-size="35.5">k</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="373.95171229738634"
y="63.520394366197195"
font-size="50">α</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="404.88504563071973"
y="75.1288943661972"
font-size="35.5">i</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="376.60171229738637"
y="122.5443943661972"
font-size="50">λ</text>
<text style="font-family: STIXGeneral, STIXSizeOneSym; font-style: italic; fill: black; background-color: transparent; "
x="402.8350456307197"
y="134.1528943661972"
font-size="35.5">i</text>
<line x1="370.618378964053"
y1="80.51939436619719"
x2="418.0873789640531"
y2="80.51939436619719"
fill="none"
stroke="black"
stroke-width="3.125"/>
<g style="font-family: STIXGeneral,STIXSizeOneSym; fill: ; background-color: transparent; ">
<g style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; ">
<text x="418.0873789640531"
y="64.67332837634947"
font-size="51.954314720812185"></text>
<text x="418.0873789640531"
y="116.10809994995354"
font-size="51.954314720812185"></text>
</g>
</g>
<text style="font-family: STIXGeneral, STIXSizeOneSym; fill: black; background-color: transparent; "
x="441.7888715013665"
y="35.74689436619719"
font-size="35.5">2</text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@@ -653,4 +653,25 @@ int main()
hypergeometric_plotter2.add(boost::math::hypergeometric_distribution<>(450, 50, 500), "N=500, r=50, n=450");
hypergeometric_plotter2.plot("Hypergeometric Distribution PDF", "hypergeometric_pdf_2.svg");
distribution_plotter<boost::math::hyperexponential_distribution<> >
hyperexponential_plotter2;
{
double probs1_1[] = {1.0};
double rates1_1[] = {1.0};
hyperexponential_plotter2.add(boost::math::hyperexponential_distribution<>(probs1_1,rates1_1), "&#x3B1=(1.0), &#x3BB=(1.0)");
double probs2_1[] = {0.1,0.9};
double rates2_1[] = {0.5,1.5};
hyperexponential_plotter2.add(boost::math::hyperexponential_distribution<>(probs2_1,rates2_1), "&#x3B1=(0.1,0.9), &#x3BB=(0.5,1.5)");
double probs2_2[] = {0.9,0.1};
double rates2_2[] = {0.5,1.5};
hyperexponential_plotter2.add(boost::math::hyperexponential_distribution<>(probs2_2,rates2_2), "&#x3B1=(0.9,0.1), &#x3BB=(0.5,1.5)");
double probs3_1[] = {0.2,0.3,0.5};
double rates3_1[] = {0.5,1.0,1.5};
hyperexponential_plotter2.add(boost::math::hyperexponential_distribution<>(probs3_1,rates3_1), "&#x3B1=(0.2,0.3,0.5), &#x3BB=(0.5,1.0,1.5)");
double probs3_2[] = {0.5,0.3,0.2};
double rates3_2[] = {0.5,1.0,1.5};
hyperexponential_plotter2.add(boost::math::hyperexponential_distribution<>(probs3_1,rates3_1), "&#x3B1=(0.5,0.3,0.2), &#x3BB=(0.5,1.0,1.5)");
}
hyperexponential_plotter2.plot("Hyperexponential Distribution PDF", "hyperexponential_pdf.svg");
} // int main()

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -0,0 +1,240 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="414pt" height="432pt" viewBox="0 0 414 432" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 0.328125 0 L 0.328125 -6.671875 L 2.984375 -6.671875 L 2.984375 0 Z M 0.671875 -0.328125 L 2.65625 -0.328125 L 2.65625 -6.328125 L 0.671875 -6.328125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 0.765625 0 L 0.765625 -0.75 L 2.515625 -0.75 L 2.515625 -6.046875 L 0.96875 -4.9375 L 0.96875 -5.765625 L 2.59375 -6.875 L 3.40625 -6.875 L 3.40625 -0.75 L 5.078125 -0.75 L 5.078125 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 0.5 0 L 0.5 -0.625 C 0.664062 -1 0.867188 -1.332031 1.109375 -1.625 C 1.347656 -1.914062 1.597656 -2.179688 1.859375 -2.421875 C 2.128906 -2.660156 2.390625 -2.878906 2.640625 -3.078125 C 2.898438 -3.273438 3.132812 -3.472656 3.34375 -3.671875 C 3.550781 -3.878906 3.71875 -4.09375 3.84375 -4.3125 C 3.976562 -4.539062 4.046875 -4.789062 4.046875 -5.0625 C 4.046875 -5.257812 4.015625 -5.429688 3.953125 -5.578125 C 3.898438 -5.734375 3.816406 -5.859375 3.703125 -5.953125 C 3.597656 -6.054688 3.46875 -6.132812 3.3125 -6.1875 C 3.15625 -6.238281 2.984375 -6.265625 2.796875 -6.265625 C 2.617188 -6.265625 2.453125 -6.238281 2.296875 -6.1875 C 2.140625 -6.132812 2 -6.0625 1.875 -5.96875 C 1.757812 -5.875 1.660156 -5.753906 1.578125 -5.609375 C 1.503906 -5.460938 1.457031 -5.289062 1.4375 -5.09375 L 0.546875 -5.1875 C 0.578125 -5.425781 0.644531 -5.65625 0.75 -5.875 C 0.851562 -6.09375 1 -6.285156 1.1875 -6.453125 C 1.375 -6.617188 1.597656 -6.75 1.859375 -6.84375 C 2.128906 -6.9375 2.441406 -6.984375 2.796875 -6.984375 C 3.140625 -6.984375 3.441406 -6.941406 3.703125 -6.859375 C 3.972656 -6.773438 4.195312 -6.65625 4.375 -6.5 C 4.5625 -6.34375 4.703125 -6.144531 4.796875 -5.90625 C 4.898438 -5.675781 4.953125 -5.40625 4.953125 -5.09375 C 4.953125 -4.863281 4.910156 -4.644531 4.828125 -4.4375 C 4.742188 -4.226562 4.628906 -4.03125 4.484375 -3.84375 C 4.347656 -3.65625 4.1875 -3.472656 4 -3.296875 C 3.820312 -3.117188 3.632812 -2.945312 3.4375 -2.78125 C 3.238281 -2.613281 3.039062 -2.445312 2.84375 -2.28125 C 2.644531 -2.113281 2.453125 -1.945312 2.265625 -1.78125 C 2.085938 -1.613281 1.929688 -1.445312 1.796875 -1.28125 C 1.660156 -1.113281 1.550781 -0.9375 1.46875 -0.75 L 5.0625 -0.75 L 5.0625 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 5.125 -1.90625 C 5.125 -1.582031 5.070312 -1.296875 4.96875 -1.046875 C 4.863281 -0.804688 4.710938 -0.597656 4.515625 -0.421875 C 4.316406 -0.253906 4.070312 -0.125 3.78125 -0.03125 C 3.488281 0.0507812 3.15625 0.09375 2.78125 0.09375 C 2.363281 0.09375 2.007812 0.0390625 1.71875 -0.0625 C 1.425781 -0.164062 1.179688 -0.304688 0.984375 -0.484375 C 0.796875 -0.660156 0.65625 -0.859375 0.5625 -1.078125 C 0.46875 -1.296875 0.40625 -1.523438 0.375 -1.765625 L 1.296875 -1.84375 C 1.316406 -1.664062 1.359375 -1.5 1.421875 -1.34375 C 1.492188 -1.195312 1.59375 -1.070312 1.71875 -0.96875 C 1.84375 -0.863281 1.988281 -0.78125 2.15625 -0.71875 C 2.332031 -0.65625 2.539062 -0.625 2.78125 -0.625 C 3.226562 -0.625 3.578125 -0.734375 3.828125 -0.953125 C 4.078125 -1.171875 4.203125 -1.492188 4.203125 -1.921875 C 4.203125 -2.179688 4.144531 -2.390625 4.03125 -2.546875 C 3.925781 -2.703125 3.789062 -2.820312 3.625 -2.90625 C 3.457031 -2.988281 3.273438 -3.046875 3.078125 -3.078125 C 2.878906 -3.109375 2.695312 -3.125 2.53125 -3.125 L 2.03125 -3.125 L 2.03125 -3.875 L 2.515625 -3.875 C 2.679688 -3.875 2.851562 -3.890625 3.03125 -3.921875 C 3.207031 -3.960938 3.367188 -4.023438 3.515625 -4.109375 C 3.660156 -4.203125 3.78125 -4.328125 3.875 -4.484375 C 3.976562 -4.640625 4.03125 -4.832031 4.03125 -5.0625 C 4.03125 -5.4375 3.921875 -5.726562 3.703125 -5.9375 C 3.484375 -6.15625 3.160156 -6.265625 2.734375 -6.265625 C 2.347656 -6.265625 2.035156 -6.164062 1.796875 -5.96875 C 1.554688 -5.769531 1.414062 -5.488281 1.375 -5.125 L 0.5 -5.1875 C 0.53125 -5.488281 0.609375 -5.75 0.734375 -5.96875 C 0.867188 -6.195312 1.035156 -6.382812 1.234375 -6.53125 C 1.441406 -6.6875 1.671875 -6.800781 1.921875 -6.875 C 2.179688 -6.945312 2.457031 -6.984375 2.75 -6.984375 C 3.132812 -6.984375 3.460938 -6.929688 3.734375 -6.828125 C 4.015625 -6.734375 4.242188 -6.601562 4.421875 -6.4375 C 4.597656 -6.28125 4.726562 -6.085938 4.8125 -5.859375 C 4.894531 -5.640625 4.9375 -5.40625 4.9375 -5.15625 C 4.9375 -4.957031 4.90625 -4.769531 4.84375 -4.59375 C 4.789062 -4.414062 4.707031 -4.253906 4.59375 -4.109375 C 4.476562 -3.972656 4.328125 -3.851562 4.140625 -3.75 C 3.960938 -3.65625 3.742188 -3.582031 3.484375 -3.53125 L 3.484375 -3.515625 C 3.765625 -3.484375 4.003906 -3.414062 4.203125 -3.3125 C 4.410156 -3.21875 4.582031 -3.097656 4.71875 -2.953125 C 4.851562 -2.816406 4.953125 -2.65625 5.015625 -2.46875 C 5.085938 -2.289062 5.125 -2.101562 5.125 -1.90625 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 4.296875 -1.5625 L 4.296875 0 L 3.46875 0 L 3.46875 -1.5625 L 0.234375 -1.5625 L 0.234375 -2.234375 L 3.375 -6.875 L 4.296875 -6.875 L 4.296875 -2.25 L 5.265625 -2.25 L 5.265625 -1.5625 Z M 3.46875 -5.890625 C 3.46875 -5.867188 3.453125 -5.832031 3.421875 -5.78125 C 3.398438 -5.738281 3.367188 -5.6875 3.328125 -5.625 C 3.296875 -5.570312 3.265625 -5.515625 3.234375 -5.453125 C 3.203125 -5.390625 3.171875 -5.34375 3.140625 -5.3125 L 1.375 -2.703125 C 1.363281 -2.679688 1.34375 -2.648438 1.3125 -2.609375 C 1.28125 -2.566406 1.25 -2.519531 1.21875 -2.46875 C 1.1875 -2.425781 1.148438 -2.382812 1.109375 -2.34375 C 1.078125 -2.300781 1.054688 -2.269531 1.046875 -2.25 L 3.46875 -2.25 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 5.171875 -3.4375 C 5.171875 -2.78125 5.109375 -2.222656 4.984375 -1.765625 C 4.859375 -1.316406 4.6875 -0.953125 4.46875 -0.671875 C 4.25 -0.398438 3.992188 -0.203125 3.703125 -0.078125 C 3.410156 0.0351562 3.097656 0.09375 2.765625 0.09375 C 2.429688 0.09375 2.117188 0.0351562 1.828125 -0.078125 C 1.535156 -0.203125 1.28125 -0.398438 1.0625 -0.671875 C 0.851562 -0.953125 0.6875 -1.316406 0.5625 -1.765625 C 0.445312 -2.222656 0.390625 -2.78125 0.390625 -3.4375 C 0.390625 -4.132812 0.445312 -4.707031 0.5625 -5.15625 C 0.6875 -5.613281 0.859375 -5.976562 1.078125 -6.25 C 1.296875 -6.519531 1.550781 -6.707031 1.84375 -6.8125 C 2.132812 -6.925781 2.453125 -6.984375 2.796875 -6.984375 C 3.128906 -6.984375 3.4375 -6.925781 3.71875 -6.8125 C 4.007812 -6.707031 4.257812 -6.519531 4.46875 -6.25 C 4.6875 -5.976562 4.859375 -5.613281 4.984375 -5.15625 C 5.109375 -4.707031 5.171875 -4.132812 5.171875 -3.4375 Z M 4.28125 -3.4375 C 4.28125 -3.988281 4.242188 -4.445312 4.171875 -4.8125 C 4.109375 -5.175781 4.015625 -5.460938 3.890625 -5.671875 C 3.765625 -5.890625 3.609375 -6.039062 3.421875 -6.125 C 3.242188 -6.21875 3.035156 -6.265625 2.796875 -6.265625 C 2.546875 -6.265625 2.328125 -6.21875 2.140625 -6.125 C 1.953125 -6.039062 1.789062 -5.890625 1.65625 -5.671875 C 1.53125 -5.453125 1.4375 -5.160156 1.375 -4.796875 C 1.3125 -4.441406 1.28125 -3.988281 1.28125 -3.4375 C 1.28125 -2.914062 1.3125 -2.472656 1.375 -2.109375 C 1.445312 -1.742188 1.546875 -1.453125 1.671875 -1.234375 C 1.796875 -1.015625 1.953125 -0.859375 2.140625 -0.765625 C 2.328125 -0.671875 2.539062 -0.625 2.78125 -0.625 C 3.007812 -0.625 3.21875 -0.671875 3.40625 -0.765625 C 3.59375 -0.859375 3.75 -1.015625 3.875 -1.234375 C 4 -1.453125 4.097656 -1.742188 4.171875 -2.109375 C 4.242188 -2.472656 4.28125 -2.914062 4.28125 -3.4375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.90625 0 L 0.90625 -1.0625 L 1.859375 -1.0625 L 1.859375 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 5.125 -2.25 C 5.125 -1.90625 5.070312 -1.585938 4.96875 -1.296875 C 4.875 -1.015625 4.734375 -0.769531 4.546875 -0.5625 C 4.359375 -0.351562 4.125 -0.191406 3.84375 -0.078125 C 3.570312 0.0351562 3.257812 0.09375 2.90625 0.09375 C 2.5 0.09375 2.144531 0.0195312 1.84375 -0.125 C 1.550781 -0.28125 1.304688 -0.5 1.109375 -0.78125 C 0.910156 -1.070312 0.757812 -1.425781 0.65625 -1.84375 C 0.5625 -2.269531 0.515625 -2.75 0.515625 -3.28125 C 0.515625 -3.894531 0.566406 -4.429688 0.671875 -4.890625 C 0.785156 -5.359375 0.945312 -5.742188 1.15625 -6.046875 C 1.375 -6.359375 1.632812 -6.59375 1.9375 -6.75 C 2.238281 -6.90625 2.582031 -6.984375 2.96875 -6.984375 C 3.207031 -6.984375 3.425781 -6.957031 3.625 -6.90625 C 3.832031 -6.863281 4.019531 -6.785156 4.1875 -6.671875 C 4.351562 -6.566406 4.5 -6.421875 4.625 -6.234375 C 4.75 -6.054688 4.851562 -5.835938 4.9375 -5.578125 L 4.09375 -5.4375 C 4 -5.726562 3.851562 -5.9375 3.65625 -6.0625 C 3.457031 -6.195312 3.222656 -6.265625 2.953125 -6.265625 C 2.710938 -6.265625 2.492188 -6.207031 2.296875 -6.09375 C 2.109375 -5.976562 1.945312 -5.804688 1.8125 -5.578125 C 1.675781 -5.359375 1.566406 -5.078125 1.484375 -4.734375 C 1.410156 -4.390625 1.375 -3.992188 1.375 -3.546875 C 1.539062 -3.835938 1.765625 -4.0625 2.046875 -4.21875 C 2.335938 -4.375 2.671875 -4.453125 3.046875 -4.453125 C 3.359375 -4.453125 3.640625 -4.398438 3.890625 -4.296875 C 4.148438 -4.191406 4.367188 -4.046875 4.546875 -3.859375 C 4.734375 -3.671875 4.875 -3.441406 4.96875 -3.171875 C 5.070312 -2.898438 5.125 -2.59375 5.125 -2.25 Z M 4.234375 -2.21875 C 4.234375 -2.445312 4.203125 -2.65625 4.140625 -2.84375 C 4.078125 -3.039062 3.988281 -3.207031 3.875 -3.34375 C 3.757812 -3.476562 3.613281 -3.582031 3.4375 -3.65625 C 3.269531 -3.726562 3.070312 -3.765625 2.84375 -3.765625 C 2.6875 -3.765625 2.523438 -3.738281 2.359375 -3.6875 C 2.191406 -3.644531 2.039062 -3.570312 1.90625 -3.46875 C 1.78125 -3.363281 1.675781 -3.222656 1.59375 -3.046875 C 1.507812 -2.878906 1.46875 -2.671875 1.46875 -2.421875 C 1.46875 -2.171875 1.5 -1.929688 1.5625 -1.703125 C 1.632812 -1.484375 1.726562 -1.289062 1.84375 -1.125 C 1.96875 -0.96875 2.113281 -0.84375 2.28125 -0.75 C 2.457031 -0.65625 2.65625 -0.609375 2.875 -0.609375 C 3.082031 -0.609375 3.269531 -0.644531 3.4375 -0.71875 C 3.601562 -0.789062 3.742188 -0.894531 3.859375 -1.03125 C 3.984375 -1.175781 4.078125 -1.347656 4.140625 -1.546875 C 4.203125 -1.742188 4.234375 -1.96875 4.234375 -2.21875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 5.125 -1.921875 C 5.125 -1.628906 5.078125 -1.359375 4.984375 -1.109375 C 4.890625 -0.867188 4.75 -0.65625 4.5625 -0.46875 C 4.375 -0.289062 4.128906 -0.148438 3.828125 -0.046875 C 3.535156 0.046875 3.1875 0.09375 2.78125 0.09375 C 2.375 0.09375 2.023438 0.046875 1.734375 -0.046875 C 1.441406 -0.148438 1.195312 -0.289062 1 -0.46875 C 0.8125 -0.644531 0.671875 -0.851562 0.578125 -1.09375 C 0.484375 -1.34375 0.4375 -1.613281 0.4375 -1.90625 C 0.4375 -2.15625 0.472656 -2.378906 0.546875 -2.578125 C 0.628906 -2.773438 0.734375 -2.941406 0.859375 -3.078125 C 0.984375 -3.222656 1.128906 -3.335938 1.296875 -3.421875 C 1.460938 -3.515625 1.632812 -3.570312 1.8125 -3.59375 L 1.8125 -3.625 C 1.613281 -3.664062 1.4375 -3.734375 1.28125 -3.828125 C 1.132812 -3.929688 1.007812 -4.054688 0.90625 -4.203125 C 0.800781 -4.347656 0.722656 -4.503906 0.671875 -4.671875 C 0.617188 -4.847656 0.59375 -5.03125 0.59375 -5.21875 C 0.59375 -5.457031 0.640625 -5.679688 0.734375 -5.890625 C 0.828125 -6.109375 0.960938 -6.296875 1.140625 -6.453125 C 1.328125 -6.617188 1.554688 -6.75 1.828125 -6.84375 C 2.097656 -6.9375 2.410156 -6.984375 2.765625 -6.984375 C 3.140625 -6.984375 3.460938 -6.9375 3.734375 -6.84375 C 4.015625 -6.75 4.242188 -6.617188 4.421875 -6.453125 C 4.597656 -6.296875 4.726562 -6.109375 4.8125 -5.890625 C 4.90625 -5.679688 4.953125 -5.453125 4.953125 -5.203125 C 4.953125 -5.015625 4.925781 -4.832031 4.875 -4.65625 C 4.820312 -4.488281 4.742188 -4.332031 4.640625 -4.1875 C 4.535156 -4.050781 4.40625 -3.929688 4.25 -3.828125 C 4.101562 -3.734375 3.929688 -3.664062 3.734375 -3.625 L 3.734375 -3.609375 C 3.929688 -3.578125 4.113281 -3.515625 4.28125 -3.421875 C 4.457031 -3.335938 4.601562 -3.222656 4.71875 -3.078125 C 4.84375 -2.941406 4.941406 -2.773438 5.015625 -2.578125 C 5.085938 -2.390625 5.125 -2.171875 5.125 -1.921875 Z M 4.046875 -5.15625 C 4.046875 -5.332031 4.019531 -5.488281 3.96875 -5.625 C 3.925781 -5.769531 3.851562 -5.894531 3.75 -6 C 3.65625 -6.101562 3.523438 -6.179688 3.359375 -6.234375 C 3.203125 -6.296875 3.003906 -6.328125 2.765625 -6.328125 C 2.535156 -6.328125 2.335938 -6.296875 2.171875 -6.234375 C 2.015625 -6.179688 1.882812 -6.101562 1.78125 -6 C 1.675781 -5.894531 1.601562 -5.769531 1.5625 -5.625 C 1.519531 -5.488281 1.5 -5.332031 1.5 -5.15625 C 1.5 -5.019531 1.515625 -4.878906 1.546875 -4.734375 C 1.585938 -4.597656 1.65625 -4.46875 1.75 -4.34375 C 1.84375 -4.226562 1.972656 -4.132812 2.140625 -4.0625 C 2.304688 -3.988281 2.519531 -3.953125 2.78125 -3.953125 C 3.050781 -3.953125 3.269531 -3.988281 3.4375 -4.0625 C 3.601562 -4.132812 3.726562 -4.226562 3.8125 -4.34375 C 3.90625 -4.46875 3.96875 -4.597656 4 -4.734375 C 4.03125 -4.878906 4.046875 -5.019531 4.046875 -5.15625 Z M 4.21875 -2 C 4.21875 -2.164062 4.191406 -2.328125 4.140625 -2.484375 C 4.097656 -2.640625 4.019531 -2.773438 3.90625 -2.890625 C 3.800781 -3.015625 3.65625 -3.113281 3.46875 -3.1875 C 3.28125 -3.257812 3.046875 -3.296875 2.765625 -3.296875 C 2.503906 -3.296875 2.285156 -3.257812 2.109375 -3.1875 C 1.929688 -3.113281 1.785156 -3.015625 1.671875 -2.890625 C 1.554688 -2.765625 1.472656 -2.625 1.421875 -2.46875 C 1.367188 -2.3125 1.34375 -2.148438 1.34375 -1.984375 C 1.34375 -1.773438 1.367188 -1.582031 1.421875 -1.40625 C 1.472656 -1.226562 1.554688 -1.078125 1.671875 -0.953125 C 1.785156 -0.828125 1.929688 -0.726562 2.109375 -0.65625 C 2.296875 -0.59375 2.523438 -0.5625 2.796875 -0.5625 C 3.054688 -0.5625 3.273438 -0.59375 3.453125 -0.65625 C 3.640625 -0.726562 3.789062 -0.828125 3.90625 -0.953125 C 4.019531 -1.078125 4.097656 -1.226562 4.140625 -1.40625 C 4.191406 -1.582031 4.21875 -1.78125 4.21875 -2 Z "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d="M 0.40625 1.421875 L 0.40625 -5.640625 L 4.40625 -5.640625 L 4.40625 1.421875 Z M 0.84375 0.96875 L 3.953125 0.96875 L 3.953125 -5.1875 L 0.84375 -5.1875 Z "/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 0.515625 -0.671875 L 1.8125 -0.671875 L 2.6875 -5.15625 L 1.21875 -4.875 L 1.359375 -5.546875 L 2.8125 -5.828125 L 3.609375 -5.828125 L 2.59375 -0.671875 L 3.875 -0.671875 L 3.75 0 L 0.390625 0 Z "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d="M 3.6875 -2.8125 L 1.171875 -0.65625 L 3.953125 -0.65625 L 3.8125 0 L 0.03125 0 L 0.15625 -0.671875 L 2.796875 -2.921875 C 3.148438 -3.222656 3.398438 -3.488281 3.546875 -3.71875 C 3.691406 -3.957031 3.765625 -4.195312 3.765625 -4.4375 C 3.765625 -4.6875 3.675781 -4.890625 3.5 -5.046875 C 3.320312 -5.210938 3.085938 -5.296875 2.796875 -5.296875 C 2.554688 -5.296875 2.285156 -5.25 1.984375 -5.15625 C 1.679688 -5.070312 1.359375 -4.941406 1.015625 -4.765625 L 1.15625 -5.546875 C 1.476562 -5.679688 1.785156 -5.78125 2.078125 -5.84375 C 2.367188 -5.90625 2.640625 -5.9375 2.890625 -5.9375 C 3.398438 -5.9375 3.8125 -5.800781 4.125 -5.53125 C 4.4375 -5.257812 4.59375 -4.90625 4.59375 -4.46875 C 4.59375 -4.164062 4.519531 -3.878906 4.375 -3.609375 C 4.226562 -3.347656 4 -3.082031 3.6875 -2.8125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph1-3">
<path style="stroke:none;" d="M 1.265625 -5.6875 C 1.554688 -5.769531 1.832031 -5.832031 2.09375 -5.875 C 2.363281 -5.914062 2.628906 -5.9375 2.890625 -5.9375 C 3.410156 -5.9375 3.820312 -5.820312 4.125 -5.59375 C 4.425781 -5.363281 4.578125 -5.054688 4.578125 -4.671875 C 4.578125 -4.296875 4.457031 -3.972656 4.21875 -3.703125 C 3.976562 -3.429688 3.648438 -3.242188 3.234375 -3.140625 C 3.554688 -3.046875 3.796875 -2.898438 3.953125 -2.703125 C 4.109375 -2.503906 4.1875 -2.242188 4.1875 -1.921875 C 4.1875 -1.609375 4.109375 -1.316406 3.953125 -1.046875 C 3.804688 -0.773438 3.59375 -0.539062 3.3125 -0.34375 C 3.101562 -0.1875 2.847656 -0.0703125 2.546875 0 C 2.253906 0.0703125 1.910156 0.109375 1.515625 0.109375 C 1.273438 0.109375 1.03125 0.0820312 0.78125 0.03125 C 0.53125 -0.0078125 0.273438 -0.078125 0.015625 -0.171875 L 0.15625 -0.921875 C 0.40625 -0.785156 0.65625 -0.679688 0.90625 -0.609375 C 1.15625 -0.546875 1.410156 -0.515625 1.671875 -0.515625 C 2.179688 -0.515625 2.59375 -0.644531 2.90625 -0.90625 C 3.226562 -1.175781 3.390625 -1.523438 3.390625 -1.953125 C 3.390625 -2.222656 3.285156 -2.429688 3.078125 -2.578125 C 2.878906 -2.722656 2.59375 -2.796875 2.21875 -2.796875 L 1.53125 -2.796875 L 1.65625 -3.4375 L 2.375 -3.4375 C 2.8125 -3.4375 3.148438 -3.535156 3.390625 -3.734375 C 3.640625 -3.929688 3.765625 -4.195312 3.765625 -4.53125 C 3.765625 -4.78125 3.671875 -4.972656 3.484375 -5.109375 C 3.304688 -5.242188 3.054688 -5.3125 2.734375 -5.3125 C 2.484375 -5.3125 2.222656 -5.28125 1.953125 -5.21875 C 1.691406 -5.164062 1.421875 -5.085938 1.140625 -4.984375 Z "/>
</symbol>
<symbol overflow="visible" id="glyph1-4">
<path style="stroke:none;" d="M 3.4375 -5.828125 L 4.4375 -5.828125 L 3.6875 -2.03125 L 4.515625 -2.03125 L 4.390625 -1.375 L 3.5625 -1.375 L 3.296875 0 L 2.515625 0 L 2.78125 -1.375 L 0.140625 -1.375 L 0.296875 -2.140625 Z M 3.515625 -5.140625 L 0.90625 -2.03125 L 2.90625 -2.03125 Z "/>
</symbol>
<symbol overflow="visible" id="glyph1-5">
<path style="stroke:none;" d="M 4.65625 -5.828125 L 4.53125 -5.171875 L 2.109375 -5.171875 L 1.828125 -3.734375 C 1.953125 -3.773438 2.078125 -3.800781 2.203125 -3.8125 C 2.328125 -3.832031 2.453125 -3.84375 2.578125 -3.84375 C 3.117188 -3.84375 3.546875 -3.695312 3.859375 -3.40625 C 4.171875 -3.125 4.328125 -2.734375 4.328125 -2.234375 C 4.328125 -1.890625 4.242188 -1.554688 4.078125 -1.234375 C 3.921875 -0.921875 3.695312 -0.644531 3.40625 -0.40625 C 3.195312 -0.238281 2.941406 -0.109375 2.640625 -0.015625 C 2.335938 0.0664062 2.007812 0.109375 1.65625 0.109375 C 1.414062 0.109375 1.171875 0.0859375 0.921875 0.046875 C 0.679688 0.00390625 0.425781 -0.0546875 0.15625 -0.140625 L 0.3125 -0.875 C 0.550781 -0.757812 0.789062 -0.671875 1.03125 -0.609375 C 1.269531 -0.546875 1.507812 -0.515625 1.75 -0.515625 C 2.257812 -0.515625 2.679688 -0.664062 3.015625 -0.96875 C 3.347656 -1.28125 3.515625 -1.664062 3.515625 -2.125 C 3.515625 -2.457031 3.40625 -2.71875 3.1875 -2.90625 C 2.96875 -3.09375 2.664062 -3.1875 2.28125 -3.1875 C 2.070312 -3.1875 1.851562 -3.160156 1.625 -3.109375 C 1.40625 -3.066406 1.179688 -3 0.953125 -2.90625 L 1.515625 -5.828125 Z "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 12 126 L 359 126 L 359 413 L 12 413 Z "/>
</clipPath>
<clipPath id="clip2">
<path d="M 12 15 L 359 15 L 359 415 L 12 415 Z "/>
</clipPath>
<clipPath id="clip3">
<path d="M 12 236 L 359 236 L 359 401 L 12 401 Z "/>
</clipPath>
<clipPath id="clip4">
<path d="M 12 84 L 359 84 L 359 412 L 12 412 Z "/>
</clipPath>
<clipPath id="clip5">
<path d="M 12 167 L 359 167 L 359 407 L 12 407 Z "/>
</clipPath>
<clipPath id="clip6">
<path d="M 374 159 L 394 159 L 394 162 L 374 162 Z "/>
</clipPath>
<clipPath id="clip7">
<path d="M 374 187 L 394 187 L 394 190 L 374 190 Z "/>
</clipPath>
<clipPath id="clip8">
<path d="M 374 215 L 394 215 L 394 218 L 374 218 Z "/>
</clipPath>
<clipPath id="clip9">
<path d="M 374 243 L 394 243 L 394 246 L 374 246 Z "/>
</clipPath>
<clipPath id="clip10">
<path d="M 374 271 L 394 271 L 394 274 L 374 274 Z "/>
</clipPath>
</defs>
<g id="surface4">
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(36.84082%,50.67749%,70.979309%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 133.570312 L 19.203125 134.25 L 19.40625 134.925781 L 19.816406 136.269531 L 20.632812 138.945312 L 22.265625 144.214844 L 25.527344 154.445312 L 32.605469 175.296875 L 39.214844 193.230469 L 45.691406 209.476562 L 52.71875 225.730469 L 59.277344 239.707031 L 66.386719 253.660156 L 73.363281 266.246094 L 79.871094 277.070312 L 86.929688 287.890625 L 93.519531 297.195312 L 99.980469 305.625 L 106.988281 314.0625 L 113.527344 321.320312 L 120.617188 328.566406 L 127.574219 335.105469 L 134.066406 340.730469 L 141.105469 346.351562 L 147.675781 351.1875 L 154.792969 356.015625 L 161.785156 360.367188 L 168.304688 364.113281 L 175.375 367.851562 L 181.972656 371.070312 L 188.445312 373.984375 L 195.464844 376.902344 L 202.015625 379.410156 L 209.117188 381.914062 L 216.089844 384.171875 L 222.589844 386.113281 L 229.640625 388.054688 L 236.222656 389.726562 L 242.675781 391.242188 L 249.675781 392.753906 L 256.210938 394.058594 L 263.289062 395.359375 L 269.902344 396.480469 L 276.386719 397.492188 L 283.417969 398.507812 L 289.980469 399.378906 L 297.09375 400.25 L 304.074219 401.035156 L 310.589844 401.710938 L 317.652344 402.386719 L 324.246094 402.96875 L 330.710938 403.492188 L 337.722656 404.019531 L 344.265625 404.472656 L 344.378906 404.480469 L 344.496094 404.488281 L 344.722656 404.503906 L 345.179688 404.53125 L 346.09375 404.59375 L 347.917969 404.710938 L 348.03125 404.71875 L 348.148438 404.722656 L 348.375 404.738281 L 348.832031 404.765625 L 349.746094 404.824219 L 349.972656 404.839844 L 350.203125 404.851562 L 350.660156 404.882812 L 350.773438 404.886719 L 351.113281 404.910156 L 351.230469 404.917969 L 351.34375 404.921875 L 351.570312 404.9375 "/>
</g>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(88.070679%,61.103821%,14.204407%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 23 L 19.101562 23.695312 L 19.40625 25.769531 L 19.816406 28.519531 L 20.632812 33.960938 L 22.265625 44.609375 L 25.527344 64.992188 L 32.605469 105.308594 L 39.214844 138.613281 L 45.691406 167.667969 L 52.71875 195.609375 L 59.277344 218.710938 L 66.386719 240.878906 L 73.363281 260.082031 L 79.871094 275.972656 L 86.929688 291.25 L 93.519531 303.886719 L 99.980469 314.925781 L 106.988281 325.558594 L 113.527344 334.363281 L 120.617188 342.832031 L 127.574219 350.179688 L 134.066406 356.269531 L 141.105469 362.136719 L 147.675781 367.003906 L 154.792969 371.683594 L 161.785156 375.753906 L 168.304688 379.128906 L 175.375 382.386719 L 181.972656 385.089844 L 188.445312 387.460938 L 195.464844 389.753906 L 202.015625 391.664062 L 209.117188 393.507812 L 216.089844 395.117188 L 222.589844 396.457031 L 229.640625 397.757812 L 236.222656 398.84375 L 242.675781 399.800781 L 249.675781 400.734375 L 256.210938 401.511719 L 263.289062 402.269531 L 269.902344 402.90625 L 276.386719 403.46875 L 283.417969 404.019531 L 289.980469 404.480469 L 297.09375 404.933594 L 304.074219 405.332031 L 310.589844 405.667969 L 317.652344 406 L 324.246094 406.28125 L 330.710938 406.53125 L 337.722656 406.78125 L 344.265625 406.988281 L 344.378906 406.992188 L 344.496094 406.996094 L 344.722656 407.003906 L 345.179688 407.019531 L 346.09375 407.046875 L 347.917969 407.101562 L 348.03125 407.101562 L 348.148438 407.105469 L 348.375 407.113281 L 348.832031 407.125 L 349.746094 407.152344 L 349.972656 407.160156 L 350.203125 407.164062 L 350.660156 407.179688 L 350.773438 407.183594 L 350.886719 407.183594 L 351.113281 407.191406 L 351.230469 407.195312 L 351.457031 407.203125 L 351.570312 407.203125 "/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(56.016541%,69.155884%,19.488525%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 244.144531 L 19.203125 244.449219 L 19.40625 244.75 L 19.816406 245.359375 L 20.632812 246.5625 L 22.265625 248.933594 L 25.527344 253.539062 L 32.605469 262.941406 L 39.214844 271.050781 L 45.691406 278.4375 L 52.71875 285.871094 L 59.277344 292.316406 L 66.386719 298.816406 L 73.363281 304.746094 L 79.871094 309.914062 L 86.929688 315.148438 L 93.519531 319.726562 L 99.980469 323.941406 L 106.988281 328.242188 L 113.527344 332.011719 L 120.617188 335.855469 L 127.574219 339.40625 L 134.066406 342.527344 L 141.105469 345.730469 L 147.675781 348.554688 L 154.792969 351.449219 L 161.785156 354.136719 L 168.304688 356.511719 L 175.375 358.960938 L 181.972656 361.125 L 188.445312 363.148438 L 195.464844 365.238281 L 202.015625 367.09375 L 209.117188 369.003906 L 216.089844 370.792969 L 222.589844 372.382812 L 229.640625 374.023438 L 236.222656 375.488281 L 242.675781 376.863281 L 249.675781 378.285156 L 256.210938 379.554688 L 263.289062 380.867188 L 269.902344 382.039062 L 276.386719 383.140625 L 283.417969 384.285156 L 289.980469 385.304688 L 297.09375 386.363281 L 304.074219 387.359375 L 310.589844 388.246094 L 317.652344 389.167969 L 324.246094 389.988281 L 330.710938 390.765625 L 337.722656 391.570312 L 344.265625 392.292969 L 344.378906 392.304688 L 344.496094 392.316406 L 344.722656 392.339844 L 345.179688 392.390625 L 346.09375 392.488281 L 347.917969 392.679688 L 348.03125 392.695312 L 348.148438 392.707031 L 348.375 392.730469 L 348.832031 392.777344 L 349.746094 392.875 L 349.972656 392.898438 L 350.203125 392.921875 L 350.660156 392.96875 L 351.113281 393.015625 L 351.230469 393.027344 L 351.570312 393.0625 "/>
</g>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(92.251587%,38.562012%,20.918274%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 92.105469 L 19.203125 93.105469 L 19.40625 94.101562 L 19.816406 96.082031 L 20.632812 100.003906 L 22.265625 107.691406 L 25.527344 122.46875 L 32.605469 151.917969 L 39.214844 176.519531 L 45.691406 198.210938 L 52.71875 219.3125 L 59.277344 236.972656 L 66.386719 254.128906 L 73.363281 269.191406 L 79.871094 281.816406 L 86.929688 294.125 L 93.519531 304.453125 L 99.980469 313.601562 L 106.988281 322.546875 L 113.527344 330.070312 L 120.617188 337.417969 L 127.574219 343.90625 L 134.066406 349.375 L 141.105469 354.738281 L 147.675781 359.261719 L 154.792969 363.695312 L 161.785156 367.625 L 168.304688 370.949219 L 175.375 374.21875 L 181.972656 376.988281 L 188.445312 379.46875 L 195.464844 381.914062 L 202.015625 383.996094 L 209.117188 386.046875 L 216.089844 387.878906 L 222.589844 389.441406 L 229.640625 390.992188 L 236.222656 392.3125 L 242.675781 393.503906 L 249.675781 394.691406 L 256.210938 395.707031 L 263.289062 396.71875 L 269.902344 397.585938 L 276.386719 398.375 L 283.417969 399.160156 L 289.980469 399.835938 L 297.09375 400.511719 L 304.074219 401.121094 L 310.589844 401.652344 L 317.652344 402.179688 L 324.246094 402.640625 L 330.710938 403.058594 L 337.722656 403.480469 L 344.265625 403.847656 L 344.378906 403.851562 L 344.496094 403.859375 L 344.722656 403.871094 L 345.179688 403.894531 L 346.09375 403.945312 L 347.917969 404.039062 L 348.03125 404.046875 L 348.148438 404.050781 L 348.375 404.0625 L 349.746094 404.132812 L 349.859375 404.140625 L 349.972656 404.144531 L 350.203125 404.15625 L 350.660156 404.179688 L 350.773438 404.1875 L 350.886719 404.191406 L 351.113281 404.203125 L 351.230469 404.210938 L 351.457031 404.21875 L 351.570312 404.226562 "/>
</g>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(52.84729%,47.061157%,70.133972%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 175.035156 L 19.203125 175.628906 L 19.40625 176.21875 L 19.816406 177.394531 L 20.632812 179.730469 L 22.265625 184.3125 L 25.527344 193.171875 L 32.605469 211.03125 L 39.214844 226.183594 L 45.691406 239.75 L 52.71875 253.160156 L 59.277344 264.574219 L 66.386719 275.855469 L 73.363281 285.9375 L 79.871094 294.542969 L 86.929688 303.089844 L 93.519531 310.394531 L 99.980469 316.984375 L 106.988281 323.550781 L 113.527344 329.1875 L 120.617188 334.800781 L 127.574219 339.867188 L 134.066406 344.222656 L 141.105469 348.582031 L 147.675781 352.34375 L 154.792969 356.109375 L 161.785156 359.519531 L 168.304688 362.46875 L 175.375 365.433594 L 181.972656 368.003906 L 188.445312 370.351562 L 195.464844 372.722656 L 202.015625 374.78125 L 209.117188 376.859375 L 216.089844 378.757812 L 222.589844 380.414062 L 229.640625 382.089844 L 236.222656 383.554688 L 242.675781 384.902344 L 249.675781 386.273438 L 256.210938 387.472656 L 263.289062 388.695312 L 269.902344 389.761719 L 276.386719 390.75 L 283.417969 391.757812 L 289.980469 392.644531 L 297.09375 393.546875 L 304.074219 394.382812 L 310.589844 395.117188 L 317.652344 395.867188 L 324.246094 396.53125 L 330.710938 397.144531 L 337.722656 397.777344 L 344.265625 398.335938 L 344.378906 398.34375 L 344.496094 398.351562 L 344.722656 398.371094 L 345.179688 398.410156 L 346.09375 398.484375 L 347.917969 398.632812 L 348.03125 398.640625 L 348.148438 398.652344 L 348.375 398.667969 L 348.832031 398.707031 L 349.746094 398.777344 L 349.859375 398.789062 L 349.972656 398.796875 L 350.203125 398.816406 L 350.660156 398.851562 L 350.773438 398.859375 L 350.886719 398.871094 L 351.113281 398.886719 L 351.230469 398.894531 L 351.34375 398.90625 L 351.570312 398.921875 "/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 410 L 19 406 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 35.628906 410 L 35.628906 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 52.257812 410 L 52.257812 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 68.886719 410 L 68.886719 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 85.515625 410 L 85.515625 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 102.144531 410 L 102.144531 406 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="99.142859" y="424"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 118.769531 410 L 118.769531 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 135.398438 410 L 135.398438 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 152.027344 410 L 152.027344 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 168.65625 410 L 168.65625 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 185.285156 410 L 185.285156 406 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="182.285718" y="424"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 201.914062 410 L 201.914062 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 218.542969 410 L 218.542969 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 235.171875 410 L 235.171875 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 251.800781 410 L 251.800781 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 268.429688 410 L 268.429688 406 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-3" x="265.428577" y="424"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 285.058594 410 L 285.058594 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 301.6875 410 L 301.6875 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 318.3125 410 L 318.3125 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 334.941406 410 L 334.941406 407.601562 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 351.570312 410 L 351.570312 406 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="347.821435" y="424"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 12.070312 410 L 358.5 410 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 423.820312 L 21.398438 423.820312 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 410 L 23 410 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 396.179688 L 21.398438 396.179688 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 382.355469 L 21.398438 382.355469 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 368.535156 L 21.398438 368.535156 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 354.714844 L 23 354.714844 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1" y="358.714279"/>
<use xlink:href="#glyph0-6" x="7" y="358.714279"/>
<use xlink:href="#glyph0-2" x="10" y="358.714279"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 340.894531 L 21.398438 340.894531 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 327.070312 L 21.398438 327.070312 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 313.25 L 21.398438 313.25 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 299.429688 L 23 299.429688 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="0.000000000000003553" y="303.428558"/>
<use xlink:href="#glyph0-6" x="6" y="303.428558"/>
<use xlink:href="#glyph0-4" x="9" y="303.428558"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 285.605469 L 21.398438 285.605469 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 271.785156 L 21.398438 271.785156 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 257.964844 L 21.398438 257.964844 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 244.144531 L 23 244.144531 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1" y="248.142837"/>
<use xlink:href="#glyph0-6" x="7" y="248.142837"/>
<use xlink:href="#glyph0-7" x="10" y="248.142837"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 230.320312 L 21.398438 230.320312 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 216.5 L 21.398438 216.5 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 202.679688 L 21.398438 202.679688 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 188.855469 L 23 188.855469 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1" y="192.857116"/>
<use xlink:href="#glyph0-6" x="7" y="192.857116"/>
<use xlink:href="#glyph0-8" x="10" y="192.857116"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 175.035156 L 21.398438 175.035156 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 161.214844 L 21.398438 161.214844 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 147.394531 L 21.398438 147.394531 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 133.570312 L 23 133.570312 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="1" y="137.571396"/>
<use xlink:href="#glyph0-6" x="7" y="137.571396"/>
<use xlink:href="#glyph0-5" x="10" y="137.571396"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 119.75 L 21.398438 119.75 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 105.929688 L 21.398438 105.929688 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 92.105469 L 21.398438 92.105469 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 78.285156 L 23 78.285156 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="1" y="82.285675"/>
<use xlink:href="#glyph0-6" x="7" y="82.285675"/>
<use xlink:href="#glyph0-2" x="10" y="82.285675"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 64.464844 L 21.398438 64.464844 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 50.644531 L 21.398438 50.644531 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 36.820312 L 21.398438 36.820312 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 23 L 23 23 "/>
<g style="fill:rgb(39.99939%,39.99939%,39.99939%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="0.000000000000003553" y="26.999954"/>
<use xlink:href="#glyph0-6" x="6" y="26.999954"/>
<use xlink:href="#glyph0-4" x="9" y="26.999954"/>
</g>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 9.179688 L 21.398438 9.179688 "/>
<path style="fill:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(39.99939%,39.99939%,39.99939%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 19 431.5 L 19 1.5 "/>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(36.84082%,50.67749%,70.979309%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 374.800781 160.5 L 392.199219 160.5 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(99.998474%,97.247314%,79.766846%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(99.998474%,97.247314%,79.766846%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 170 L 412 170 L 412 152 L 401 152 Z "/>
<g style="fill:rgb(49.320984%,49.320984%,49.320984%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="404" y="165"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.18396%,79.18396%,79.18396%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(79.18396%,79.18396%,79.18396%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 152 L 412 152 L 412 170 L 401 170 L 401 169 L 411 169 L 411 153 L 402 153 L 402 169 L 401 169 Z "/>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(88.070679%,61.103821%,14.204407%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 374.800781 188.5 L 392.199219 188.5 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(99.998474%,97.247314%,79.766846%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(99.998474%,97.247314%,79.766846%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 198 L 413 198 L 413 180 L 401 180 Z "/>
<g style="fill:rgb(49.320984%,49.320984%,49.320984%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="403.75" y="193"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.18396%,79.18396%,79.18396%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(79.18396%,79.18396%,79.18396%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 180 L 413 180 L 413 198 L 401 198 L 401 197 L 412 197 L 412 181 L 402 181 L 402 197 L 401 197 Z "/>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(56.016541%,69.155884%,19.488525%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 374.800781 216.5 L 392.199219 216.5 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(99.998474%,97.247314%,79.766846%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(99.998474%,97.247314%,79.766846%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 226 L 413 226 L 413 208 L 401 208 Z "/>
<g style="fill:rgb(49.320984%,49.320984%,49.320984%);fill-opacity:1;">
<use xlink:href="#glyph1-3" x="403.75" y="221"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.18396%,79.18396%,79.18396%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(79.18396%,79.18396%,79.18396%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 208 L 413 208 L 413 226 L 401 226 L 401 225 L 412 225 L 412 209 L 402 209 L 402 225 L 401 225 Z "/>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(92.251587%,38.562012%,20.918274%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 374.800781 244.5 L 392.199219 244.5 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(99.998474%,97.247314%,79.766846%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(99.998474%,97.247314%,79.766846%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 254 L 413 254 L 413 236 L 401 236 Z "/>
<g style="fill:rgb(49.320984%,49.320984%,49.320984%);fill-opacity:1;">
<use xlink:href="#glyph1-4" x="403.75" y="249"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.18396%,79.18396%,79.18396%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(79.18396%,79.18396%,79.18396%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 236 L 413 236 L 413 254 L 401 254 L 401 253 L 412 253 L 412 237 L 402 237 L 402 253 L 401 253 Z "/>
<g clip-path="url(#clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1.6;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(52.84729%,47.061157%,70.133972%);stroke-opacity:1;stroke-miterlimit:3.25;" d="M 374.800781 272.5 L 392.199219 272.5 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(99.998474%,97.247314%,79.766846%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(99.998474%,97.247314%,79.766846%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 282 L 413 282 L 413 264 L 401 264 Z "/>
<g style="fill:rgb(49.320984%,49.320984%,49.320984%);fill-opacity:1;">
<use xlink:href="#glyph1-5" x="403.75" y="277"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(79.18396%,79.18396%,79.18396%);fill-opacity:1;stroke-width:0.03;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(79.18396%,79.18396%,79.18396%);stroke-opacity:1;stroke-miterlimit:10;" d="M 401 264 L 413 264 L 413 282 L 401 282 L 401 281 L 412 281 L 412 265 L 402 265 L 402 281 L 401 281 Z "/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 47 KiB

View File

@@ -1,13 +1,13 @@
[book Math Toolkit
[quickbook 1.6]
[copyright 2006, 2007, 2008, 2009, 2010, 2012, 2013 Nikhar Agrawal, Anton Bikineev, Paul A. Bristow, Christopher Kormanyos, Hubert Holin, Bruno Lalande, John Maddock, Johan Råde, Gautam Sewani, Benjamin Sobotta, Thijs van den Berg, Daryle Walker and Xiaogang Zhang]
[copyright 2006, 2007, 2008, 2009, 2010, 2012, 2013, 2014 Nikhar Agrawal, Anton Bikineev, Paul A. Bristow, Marco Guazzone, Christopher Kormanyos, Hubert Holin, Bruno Lalande, John Maddock, Johan Råde, Gautam Sewani, Benjamin Sobotta, Thijs van den Berg, Daryle Walker and Xiaogang Zhang]
[/purpose ISBN 0-9504833-2-X 978-0-9504833-2-0, Classification 519.2-dc22]
[license
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
[@http://www.boost.org/LICENSE_1_0.txt])
]
[authors [Agrawal, Nikhar], [Bikineev, Anton], [Bristow, Paul A.], [Holin, Hubert], [Kormanyos, Christopher], [Lalande, Bruno], [Maddock, John], [Råde, Johan], [Sobotta, Benjamin], [Sewani, Gautam], [van den Berg, Thijs], [Walker, Daryle], [Zhang, Xiaogang]]
[authors [Agrawal, Nikhar], [Bikineev, Anton], [Bristow, Paul A.], [Holin, Hubert], [Guazzone, Marco], [Kormanyos, Christopher], [Lalande, Bruno], [Maddock, John], [Råde, Johan], [Sobotta, Benjamin], [Sewani, Gautam], [van den Berg, Thijs], [Walker, Daryle], [Zhang, Xiaogang]]
[/last-revision $Date$]
[version 1.9.0]
]
@@ -279,6 +279,7 @@ and use the function's name as the link text.]
[def __F_distrib [link math_toolkit.dist_ref.dists.f_dist Fisher F Distribution]]
[def __gamma_distrib [link math_toolkit.dist_ref.dists.gamma_dist Gamma Distribution]]
[def __geometric_distrib [link math_toolkit.dist_ref.dists.geometric_dist Geometric Distribution]]
[def __hyperexponential_distrib [link math_toolkit.dist_ref.dists.hyperexponential_dist Hyperexponential Distribution]]
[def __hypergeometric_distrib [link math_toolkit.dist_ref.dists.hypergeometric_dist hypergeometric Distribution]]
[def __inverse_gamma_distrib [link math_toolkit.dist_ref.dists.inverse_gamma_dist Inverse Gamma Distribution]]
[def __inverse_gaussian_distrib [link math_toolkit.dist_ref.dists.inverse_gaussian_dist Inverse Gaussian Distribution]]