Difference between revisions of "Learning System"

From AardRock Wiki
Jump to navigation Jump to search
 
(24 intermediate revisions by the same user not shown)
Line 1: Line 1:
This page reflects my/our idea about the Learning system. It consists of a few interdependent systems for functions of estimation, inference and storage.
This page reflects my/our idea about the Learning system. It consists of a few interdependent systems for functions of estimation, inference and storage.


== Glucose level estimation ==
== Glucose level estimation ==


The most top-level functioning of the learning system is to give near future glucose level estimation. The current glucose level estimation is done by (1) taking the last glucose measurement, and then (2) adding up the typical glycamic response (''glucose rise/fall'') of all events since the last measurement.
[[Image:Summing_events.png|thumb|right|Example of glucose level estimation.]]
 
The most top-level functioning of the learning system is to give near future glucose level estimation. The current glucose level estimation is done by (1) taking the last glucose measurement, and then (2) adding up the typical glycemic response (''glucose rise/fall'') of all events since the last measurement.
 
=== The function f(t) ===


The glycemic response of each event is modelled in terms of a glucose rise/fall in function of time: f(t). Time real time t is mapped to discrete intervals of 15 minutes. Event types are split into distinct categories (see below). For computational conveniance, each event type category ''c'' is modelled by a function <i>f<sub>c</sub>(t)</i>, and each concrete individual event type is modelled as transformation of that function using parameters a and b: <i>a*f<sub>c</sub>(b*t)</i>.
The glycemic response of each event is modelled in terms of a glucose rise/fall in function of time: f(t). Time real time t is mapped to discrete intervals of 15 minutes. Event types are split into distinct categories (see below). For computational conveniance, each event type category ''c'' is modelled by a function <i>f<sub>c</sub>(t)</i>, and each concrete individual event type is modelled as transformation of that function using parameters a and b: <i>a*f<sub>c</sub>(b*t)</i>.
Line 16: Line 21:


* Insulin intake. Usually has a negative glycemic effect.
* Insulin intake. Usually has a negative glycemic effect.
* Stress level.
 
* Stress level and activities like driving, work, exercise, sleep
 
* Time of the day, because glucose levels structurally differ during the day.
* Time of the day, because glucose levels structurally differ during the day.
* Health status.
* Health status.
* For pregnancy diabetes: progress of pregnancy. Its hormone decreases insulin sensivity.
* Other event types.
* Other event types.


[Add picture here]
=== g2 Estimation ===


As told above, the estimate for future moments in time is done by taking the last glucose measurement and adding the sum of glycemic responses of events. If <i>g1</i> at <math>t_{g1}</math> is the last glucose measurement, <i>g2</i> at <math>t_{g2}</math> is the glucose level to be estimated, and <math>(e_1,e_2,...,e_n)</math> events that have influence on <i>g2</i>. <math>(f_1,f_2,...,f_n)</math> are the estimated functions of the events. <math>(t_1,t_2,...,t_n)</math> are the (start) times of each events. Then the glucose prediction g2 at <math>t_{g2}</math> is:
As told above, the estimate for future moments in time is done by taking the last glucose measurement and adding the sum of glycemic responses of events. If <i>g1</i> at <math>t_{g1}</math> is the last glucose measurement, <i>g2</i> at <math>t_{g2}</math> is the glucose level to be estimated, and <math>(e_1,e_2,...,e_n)</math> events that have influence on <i>g2</i>. <math>(f_1,f_2,...,f_n)</math> are the estimated functions of the events. <math>(t_1,t_2,...,t_n)</math> are the (start) times of each events. Then the glucose prediction g2 at <math>t_{g2}</math> is:
Line 29: Line 40:
== On events ==
== On events ==


Like told above, the term 'event' can be things like apple intake. Our definition is broader then that: events can also be composite. -incomplete-
Like told above, the term 'event' can be things like apple intake. Our definition is broader then that: events can also be composite. A composite event is a set or cominbation or multiple single events. Why use composite events? Because, for example, eating different food types combined leads to a different glycemic response then the sum of individual foods. Eating certain food types nullify the effect of other foods.
Another positive thing about compositive events is that it decreases the amount of events in the sum of g2_estimate (see above). Less summation means less uncertainty about the estimate.
 
=== Creation of a new event type ===
What needs to be done when a new event type is created, for example when a user eats something new or gets new insulin therapy? The first the system needs to create is an ''a priori'' estimate of f(t). This is called the ''a priori'' function. For food, this would be based on carbonhydrate count. For insulin, this would be done by entering medicine information. A better ''a priori'' f<sub>prior</sub>(t) means the system needs less training time to estimate the real function f(t). When evidence arrives in the form of a ''sample'', an ''a posteriori'' f<sub>post</sub>(t) is formed that esimates the real function f(t). A sample is an observation value of f(t) at some t. More evidence/samples means a better ''a posteriori'' f<sub>post</sub>(t).
 
In other words:
* Better prior knowledge (carbonhydrate count etc) leads to a better f<sub>prior</sub>(t)
* A better f<sub>prior</sub>(t) leads to a better f<sub>post</sub>(t)
* More samples leads to a better f<sub>post</sub>(t)
* A good f<sub>post</sub>(t) means it is close to the real f(t)
 
=== Significance of good f<sub>prior</sub>(t) ===
In our case, we will see that the samples are estimations too. Later on, we will conclude that better f<sub>post</sub>(t) functions lead to better estimations of samples. In the 'bigger picture', this means that bad-quality f<sub>prior</sub>(t)'s implicates inititally bad-quality f<sub>post</sub>(t)'s, which in turn implicate intially bad-quality samples, leading to initially slow progression of inference. <i>This is important to know, because quality f<sub>prior</sub>(t)'s are VITAL to fast initial inference. Concretely said, good a priori functions will decrease the startup time significantly, maybe from months to just weeks or days</i>.
 
=== Generating of a f<sub>prior</sub>(t) or its prior parameters ===
So what are the steps of creating f<sub>prior</sub>(t) for certain event types? For...
 
* Food intake, calculate the ''a'' and ''b'' paramaters (for information about these parameters, see above). [Mapping of Carbonhydrate count to ''a'' and ''b'' parameters to be added]
 
* Insulin intake. [To do]
 
* Stress level. [To do]
 
* Time of the day. [To do]
 
* Health status. [To do]
 
* Other event types. [To do]
 
=== Attributes of event types ===
 
Summarizing what we have said above, each event type has the following attributes:
* An a priori function f<sub>prior</sub>(t)
* A (initially empty) set of samples, each a tuple {t,dg} with t=time and dg=delta-g, the glycemic response.
* An a posteriori function f<sub>post</sub>(t)
 
The following section will describe the process of computation of f<sub>post</sub>(t).


== Bayesian Inference ==
== Bayesian Inference ==


Events are things like food intake (eg one glass of lemonade), insuline intake (one unit of type X), sports (half an hour of running), but also current health status and stress level etc. Before the system learns anything, each event is assigned an 'a priori' estimating curve, which tells us how, in time, the estimated effect on the blood glucose level 'g'. This a priori curve is assigned before any measurements have been made (example: the a priori curve for food could be based on known carbonhydrate). Quickly said, the learning system uses the blood glucose measurements to update and improve the estimating curve.
So how does the system calculate f<sub>post</sub>(x)? And how are the samples created?
 
=== Statistical nature of the function f(t) ===
 
In the texts above, we wrote about the glycemic response functions f(t), like f<sub>prior</sub>(t) and f<sub>post</sub>(t) functions. For inference reasons, because we are using bayesian inference, we must describe the problem in terms of statistics. Following this viewpoint, one could say at t, there is a ''mean'' estimated value and variance value indicating the mean error. This way we describe each function in terms of a normal (Gaussian) distribution. So each point ''t'' doesnt map to just one value, but to two: mean <math>\mu</math> and squared variance <math>\sigma^2</math>, written as <math>f(t) = \mu_t \pm \sigma_t^2</math>. The variance <math>\sigma_t^2</math> is a static value, and we assign some reasonable value to it, defined by the event type (like 3 for food or something). The mean value &mu; is the to be estimated variable, or the unknown parameter &theta;. This unkonwn paramter &theta; is exactly (and only) thing we need to learn for each t. &theta; is where its all about. And each event type has a whole line of &theta;'s because it has one &theta; for each ''t''. To be able to compute &theta;, we need to see it as a normal distribution too: <math>\theta = \mu_\theta \pm \sigma_\theta^2</math>.
 
And now we can use our prior and posterior functions. The f<sub>prior</sub>(t) function defines the prior mean values <math>\mu_\theta \pm \sigma_\theta^2</math> for each t for each event type. Through bayesian inference, which functions we will soon explain, we will compute the <math>\mu_\theta \pm \sigma_\theta^2</math> for each t for each event type: the <sub>post</sub>(t) function.
 
Using samples, we can use Bayesian inference to compute &mu;<sub>post</sub> for each t. This will be explained in the following section.
 
=== Learning System, ignite your engine! ===
 
Assume that with formula's described in above sections, we are given a group of event types, each event type has a f<sub>prior</sub>(t). Additionally, each event type has an initially empty set of samples <math>\{s_1 s_2,...,s_n\}\!</math>.
 
Assume the last glucose measurement was g1 at t<sub>g1</sub> with value g1. Now we do a new glucose measurement g2 at t<sub>g2</sub> with value g2. The set of events that have impact on glucose level g2 is <math>\{e_1,e_2,...,e_n\}\!</math>. Each event e<sub>k</sub> has an event type with attributes described above, a timestamp t<sub>ek</sub>, and a multiplicity indicator.
 
==== 1. Calculate helper variable a ====
 
The first thing we calculate is the helper variable ''a''. Each event i has a <math>f_i(t_{g2}-t_{ei}) \to \mu_{\theta,post} \pm \sigma_{\theta,post}^2\!</math>. If <math>\mu_i \pm \sigma_i\!</math> are (synonyms of) these posterior mean and variance values for event i, and (g2-g1) is the measured glucose rise/fall, then:
 
<math>a = \frac{(g2-g1)-(\mu_e1+\mu_e2+...)}{\sigma_1^2+\sigma_2^2+...}\!</math>
 
==== 2. Update event knowledge ====
 
This step is looped trough all events i in <math>\{e_1,e_2,...,e_n\}\!</math>. Furthermore this loops through composite events <math>{e_a+e_b+e_c,e_d+e_e,...}</math> which are combinations events that happen at the same time. Time t is measured in intervals, so the chance that events happen at the same t is quite big.
 
==== 2a. Calculate subsample <math>s_i</math> of <math>e_i</math> ====
 
Now we can calculate the subsample <math>s_i</math> for event k. What is this? The user did a new glucose measurement, and the system sees the difference in glucose level (g2-g1): in statistical terms, (g2-g1) is our new composite sample <math>s_{tot}</math>. This sample is actually a composite sample, because it is caused by the sum of all events <math>\{e_1,e_2,...,e_n\}\!</math>. So to add a sample to each single event, the system needs to divide this composite sample into subsamples, one for each event. Using our calculated helper variable ''a'', we do this using this simple formula:


Lets describe these events, their effects and their computations, in terms of a statistics problem.
<math>s_i = \mu_i + a \times \sigma_i \!</math>


=== About events ===
For proof, ask me.
Each single event <math>e_i</math> has three things.


1) Firstly: A set of samples. Each sample is a tuple <b>(&Delta;t, &Delta;g)</b> So the set of samples could be represented on a 2-dimensional area. The sample set is initially empty, and samples are added through bayesian inference (explained below). [For extra clarity, image to be added here].
While <math>s_i\!</math> is the most likely subsample of <math>s_{tot}\!</math>, it is still an estimation. How well it comes close to the 'real' value of <math>s_i\!</math> depends on the precision of the posterior variables <math>\mu_{\theta,post} \pm \sigma_{\theta,post}^2\!</math>. Like written above, the initial values of these 'a posteriori' variables are close to the 'a prior' variables, so it can't be pressed enough that these prior variables are important.


2) A prior (''a priori'') function <b>f<sub>e,prior</sub>(&Delta;t) &rarr; &Delta;g = &mu;<sub>prior</sub></b>. This is the estimated mean effect of the event, for each determined before any samples have arrived. For food, it could be determined by looking at carbonhydrate amount. For insuline, it could be determined by medicine information. If no prior function can be made, an effect is assigned a default prior function. The prior function also has a pre-determined variance &sigma;<sub>prior</sub>&sup2;. Spoken in statistic terms, the event effect at each moment in time has a normal distribution with:
(Maybe an improvement would be to store the supersample in combination with the event types somewhere. Old supersamples can then be used again to compute even more likely posterior distributions. This whole routine can then be iterated of all glucose measurements)


<math>\sigma_e^2 = \mbox{some-static-value} \,</math><br/>
==== 2b. Add <math>s_i</math> to <math>e_i</math>'s sample set ====
<math>\mu_e = \theta \,</math>


This parameter &theta; is unknown, but it has a prior distribution with
Now that we have a new subsample, we can add it to its sample set: <math>\{s_1 s_2,...,s_n,s_i\}\!</math>. Now this is used to update the posterior values of i.


<math>\sigma_{\theta ,prior}^2 = \mbox{some-a-priori-value} \,</math><br/>
==== 2c. Update posterior values ====
<math>\mu_{\theta, prior} = f_{e,prior}(\triangle t) \,</math>


3) A posterior (''a posteriori'') function <b>f<sub>e,post</sub>(&Delta;t) &rarr; &Delta;g</b>. This is the esimated effect of the event after looking at the samples. It is determined as follows. The samples are divived into give time intervals, for example 15 minutes. So we have intervals t<sub>i</sub> with i=(1, ..., n), and each interval representing 15 minutes. Each of these intervals t<sub>i</sub> have a distribution &theta; with a prior distribution as explained above. The posterior distribution of t<sub>i</sub> is calculated as follows:
If <math>\sigma_t^2</math> is the static event variance, and <math>\bar s</math> is the mean value of <math>\{s_1 s_2,...,s_n,s_i\}\!</math>, then:


<math>\sigma_{\theta, post}^2=\frac{\sigma_{\theta, prior}^2\sigma_{\theta, prior}^2}{\sigma_e^2+n\sigma_{\theta, prior}^2}</math><br/>
<math>\mu_{\theta, post}=\frac{\sigma_t^2\mu_{\theta, prior}+n\sigma_{\theta, prior}^2 \bar s}{\sigma_t^2+n\sigma_{\theta, prior}^2}</math>
<math>\mu_{\theta, post}=\frac{\sigma_{\theta, prior}^2\mu_{\theta, prior}+n\sigma_{\theta, prior}^2\bar x_n}{\sigma_e^2+n\sigma_{\theta, prior}^2}</math>


<math>\sigma_{\theta, post}^2=\frac{\sigma_t^2\sigma_{\theta, prior}^2}{\sigma_t^2+n\sigma_{\theta, prior}^2}</math>


To assign an evidence x<sub>i</sub> to each individual events e<sub>i</sub> you do:
For proof, see "Morris H.DeGroot and Mark J.Schervish. ''Probability and Statistics, third edition'': blz 330".


<math>x_i=\mu_{prior}+a*\sigma_i^2</math><br>
==== 2d. Update posterior f(x) ====


where
Now the function f(x), or its parameters, can be updated similar to the methods in "Generating of a fprior(t) or its prior parameters". The posterior function should approximate the measured samples as good as possible.


<math>a = \frac{x_{tot}-(\mu_1+\mu_2+...)}{\sigma_1^2+\sigma_2^2+...}</math>
==== 2e. Repeat ====


So it comes down to some quite simple math. I'll make my explanation better when I have more time.
Repeat 2a-2c for each i, and all worthfull composites.

Latest revision as of 14:21, 17 July 2006

This page reflects my/our idea about the Learning system. It consists of a few interdependent systems for functions of estimation, inference and storage.

Glucose level estimation

Example of glucose level estimation.

The most top-level functioning of the learning system is to give near future glucose level estimation. The current glucose level estimation is done by (1) taking the last glucose measurement, and then (2) adding up the typical glycemic response (glucose rise/fall) of all events since the last measurement.

The function f(t)

The glycemic response of each event is modelled in terms of a glucose rise/fall in function of time: f(t). Time real time t is mapped to discrete intervals of 15 minutes. Event types are split into distinct categories (see below). For computational conveniance, each event type category c is modelled by a function fc(t), and each concrete individual event type is modelled as transformation of that function using parameters a and b: a*fc(b*t).

  • Food intake. Usually has a positive glycemic effect. It appears to be modelled as:

<math>f(t) =

a    * exp \left [ \left ( \frac{t-b }{0,667*b} \right )^2 \right ] +

(a/2) * exp \left [ \left ( \frac{t-2b}{0,667*b} \right )^2 \right ] + (a/4) * exp \left [ \left ( \frac{t-3b}{0,667*b} \right )^2 \right ] </math>

  • Insulin intake. Usually has a negative glycemic effect.
  • Stress level and activities like driving, work, exercise, sleep
  • Time of the day, because glucose levels structurally differ during the day.
  • Health status.
  • For pregnancy diabetes: progress of pregnancy. Its hormone decreases insulin sensivity.
  • Other event types.

g2 Estimation

As told above, the estimate for future moments in time is done by taking the last glucose measurement and adding the sum of glycemic responses of events. If g1 at <math>t_{g1}</math> is the last glucose measurement, g2 at <math>t_{g2}</math> is the glucose level to be estimated, and <math>(e_1,e_2,...,e_n)</math> events that have influence on g2. <math>(f_1,f_2,...,f_n)</math> are the estimated functions of the events. <math>(t_1,t_2,...,t_n)</math> are the (start) times of each events. Then the glucose prediction g2 at <math>t_{g2}</math> is:

<math>g2_{estimate}(t_{g2}) = g1 + \sum_{k = 1}^n \left ( f_k(t_{g2}-t_k)-f_k(t_{g1}-t_k) \right )</math>

On events

Like told above, the term 'event' can be things like apple intake. Our definition is broader then that: events can also be composite. A composite event is a set or cominbation or multiple single events. Why use composite events? Because, for example, eating different food types combined leads to a different glycemic response then the sum of individual foods. Eating certain food types nullify the effect of other foods. Another positive thing about compositive events is that it decreases the amount of events in the sum of g2_estimate (see above). Less summation means less uncertainty about the estimate.

Creation of a new event type

What needs to be done when a new event type is created, for example when a user eats something new or gets new insulin therapy? The first the system needs to create is an a priori estimate of f(t). This is called the a priori function. For food, this would be based on carbonhydrate count. For insulin, this would be done by entering medicine information. A better a priori fprior(t) means the system needs less training time to estimate the real function f(t). When evidence arrives in the form of a sample, an a posteriori fpost(t) is formed that esimates the real function f(t). A sample is an observation value of f(t) at some t. More evidence/samples means a better a posteriori fpost(t).

In other words:

  • Better prior knowledge (carbonhydrate count etc) leads to a better fprior(t)
  • A better fprior(t) leads to a better fpost(t)
  • More samples leads to a better fpost(t)
  • A good fpost(t) means it is close to the real f(t)

Significance of good fprior(t)

In our case, we will see that the samples are estimations too. Later on, we will conclude that better fpost(t) functions lead to better estimations of samples. In the 'bigger picture', this means that bad-quality fprior(t)'s implicates inititally bad-quality fpost(t)'s, which in turn implicate intially bad-quality samples, leading to initially slow progression of inference. This is important to know, because quality fprior(t)'s are VITAL to fast initial inference. Concretely said, good a priori functions will decrease the startup time significantly, maybe from months to just weeks or days.

Generating of a fprior(t) or its prior parameters

So what are the steps of creating fprior(t) for certain event types? For...

  • Food intake, calculate the a and b paramaters (for information about these parameters, see above). [Mapping of Carbonhydrate count to a and b parameters to be added]
  • Insulin intake. [To do]
  • Stress level. [To do]
  • Time of the day. [To do]
  • Health status. [To do]
  • Other event types. [To do]

Attributes of event types

Summarizing what we have said above, each event type has the following attributes:

  • An a priori function fprior(t)
  • A (initially empty) set of samples, each a tuple {t,dg} with t=time and dg=delta-g, the glycemic response.
  • An a posteriori function fpost(t)

The following section will describe the process of computation of fpost(t).

Bayesian Inference

So how does the system calculate fpost(x)? And how are the samples created?

Statistical nature of the function f(t)

In the texts above, we wrote about the glycemic response functions f(t), like fprior(t) and fpost(t) functions. For inference reasons, because we are using bayesian inference, we must describe the problem in terms of statistics. Following this viewpoint, one could say at t, there is a mean estimated value and variance value indicating the mean error. This way we describe each function in terms of a normal (Gaussian) distribution. So each point t doesnt map to just one value, but to two: mean <math>\mu</math> and squared variance <math>\sigma^2</math>, written as <math>f(t) = \mu_t \pm \sigma_t^2</math>. The variance <math>\sigma_t^2</math> is a static value, and we assign some reasonable value to it, defined by the event type (like 3 for food or something). The mean value μ is the to be estimated variable, or the unknown parameter θ. This unkonwn paramter θ is exactly (and only) thing we need to learn for each t. θ is where its all about. And each event type has a whole line of θ's because it has one θ for each t. To be able to compute θ, we need to see it as a normal distribution too: <math>\theta = \mu_\theta \pm \sigma_\theta^2</math>.

And now we can use our prior and posterior functions. The fprior(t) function defines the prior mean values <math>\mu_\theta \pm \sigma_\theta^2</math> for each t for each event type. Through bayesian inference, which functions we will soon explain, we will compute the <math>\mu_\theta \pm \sigma_\theta^2</math> for each t for each event type: the post(t) function.

Using samples, we can use Bayesian inference to compute μpost for each t. This will be explained in the following section.

Learning System, ignite your engine!

Assume that with formula's described in above sections, we are given a group of event types, each event type has a fprior(t). Additionally, each event type has an initially empty set of samples <math>\{s_1 s_2,...,s_n\}\!</math>.

Assume the last glucose measurement was g1 at tg1 with value g1. Now we do a new glucose measurement g2 at tg2 with value g2. The set of events that have impact on glucose level g2 is <math>\{e_1,e_2,...,e_n\}\!</math>. Each event ek has an event type with attributes described above, a timestamp tek, and a multiplicity indicator.

1. Calculate helper variable a

The first thing we calculate is the helper variable a. Each event i has a <math>f_i(t_{g2}-t_{ei}) \to \mu_{\theta,post} \pm \sigma_{\theta,post}^2\!</math>. If <math>\mu_i \pm \sigma_i\!</math> are (synonyms of) these posterior mean and variance values for event i, and (g2-g1) is the measured glucose rise/fall, then:

<math>a = \frac{(g2-g1)-(\mu_e1+\mu_e2+...)}{\sigma_1^2+\sigma_2^2+...}\!</math>

2. Update event knowledge

This step is looped trough all events i in <math>\{e_1,e_2,...,e_n\}\!</math>. Furthermore this loops through composite events <math>{e_a+e_b+e_c,e_d+e_e,...}</math> which are combinations events that happen at the same time. Time t is measured in intervals, so the chance that events happen at the same t is quite big.

2a. Calculate subsample <math>s_i</math> of <math>e_i</math>

Now we can calculate the subsample <math>s_i</math> for event k. What is this? The user did a new glucose measurement, and the system sees the difference in glucose level (g2-g1): in statistical terms, (g2-g1) is our new composite sample <math>s_{tot}</math>. This sample is actually a composite sample, because it is caused by the sum of all events <math>\{e_1,e_2,...,e_n\}\!</math>. So to add a sample to each single event, the system needs to divide this composite sample into subsamples, one for each event. Using our calculated helper variable a, we do this using this simple formula:

<math>s_i = \mu_i + a \times \sigma_i \!</math>

For proof, ask me.

While <math>s_i\!</math> is the most likely subsample of <math>s_{tot}\!</math>, it is still an estimation. How well it comes close to the 'real' value of <math>s_i\!</math> depends on the precision of the posterior variables <math>\mu_{\theta,post} \pm \sigma_{\theta,post}^2\!</math>. Like written above, the initial values of these 'a posteriori' variables are close to the 'a prior' variables, so it can't be pressed enough that these prior variables are important.

(Maybe an improvement would be to store the supersample in combination with the event types somewhere. Old supersamples can then be used again to compute even more likely posterior distributions. This whole routine can then be iterated of all glucose measurements)

2b. Add <math>s_i</math> to <math>e_i</math>'s sample set

Now that we have a new subsample, we can add it to its sample set: <math>\{s_1 s_2,...,s_n,s_i\}\!</math>. Now this is used to update the posterior values of i.

2c. Update posterior values

If <math>\sigma_t^2</math> is the static event variance, and <math>\bar s</math> is the mean value of <math>\{s_1 s_2,...,s_n,s_i\}\!</math>, then:

<math>\mu_{\theta, post}=\frac{\sigma_t^2\mu_{\theta, prior}+n\sigma_{\theta, prior}^2 \bar s}{\sigma_t^2+n\sigma_{\theta, prior}^2}</math>

<math>\sigma_{\theta, post}^2=\frac{\sigma_t^2\sigma_{\theta, prior}^2}{\sigma_t^2+n\sigma_{\theta, prior}^2}</math>

For proof, see "Morris H.DeGroot and Mark J.Schervish. Probability and Statistics, third edition: blz 330".

2d. Update posterior f(x)

Now the function f(x), or its parameters, can be updated similar to the methods in "Generating of a fprior(t) or its prior parameters". The posterior function should approximate the measured samples as good as possible.

2e. Repeat

Repeat 2a-2c for each i, and all worthfull composites.