sums and products of measurable functions are measurable

[[concept]]

[!themes] Topics

Evaluation Error: SyntaxError: Unexpected token '>'

at DataviewInlineApi.eval (plugin:dataview:19027:21)
at evalInContext (plugin:dataview:19028:7)
at asyncEvalInContext (plugin:dataview:19038:32)
at DataviewJSRenderer.render (plugin:dataview:19064:19)
at DataviewJSRenderer.onload (plugin:dataview:18606:14)
at DataviewJSRenderer.load (app://obsidian.md/app.js:1:1182416)
at DataviewApi.executeJs (plugin:dataview:19607:18)
at DataviewCompiler.eval (plugin:digitalgarden:10763:23)
at Generator.next (<anonymous>)
at eval (plugin:digitalgarden:90:61)

Real-Valued Functions

Theorem

Let ER be measurable and suppose f,g:ER are measurable functions, and cR. Then cf,f+g, and fg are all measurable functions.

Note

this is useful because we will end up with Lp spaces (L-p spaces) for Lebesgue integrable functions, which are often added together and multiplied.

Proof

(We just check the definition of measurable for each)

cf is measurable

If c=0 then cf=0 is a continuous function and thus measurable

So assume c0. If αR, then

cf(x)>αf(x)>αc

Thus we have (cf)1((α,])=f1((αc,]) and this is measurable for any α (since f is measurable). Thus cf is measurable.

f+g is measurable

If αR, then

f(x)+g(x)>αf(c)>αg(x)f(x)>r>αg(x)

Where r is some rational number (since the rationals are dense in the reals +++++). Thus there exists some rQ such that

xf1((r,])g1((αr,])

And since both f and g are measurable, this intersection is also measurable. Thus the preimage is given as

(f+g)1((α,])=rQ(f1((r,]))g1((αr,])

Which is measurable, since this is a countable union. Thus f+g is measurable

fg is measurable

We first show f2 is measurable. Since f2 is a nonnegative function, then for any α<0 we have

(f2)1((α,])=E

because the entire domain maps within (α,] and so this is measurable by assumption. If instead α0, we have

f2>αf(x)>α or f(x)<α(f2)1((α,])=f1((α,])f1([,α))

And both sets on RHS are measurable, so using the equivalent intervals of measurability for measurable functions, we see that the union is measurable and thus f2 is measurable.

Finally, we notice that

fg=14((f+g)2(fg)2)
  • And both f+g and fg are measurable by the previous two proofs above.

Complex-Valued Functions

Theorem

If f,g:EC are measurable and αC, then

Are all measurable as well.

Proof

Exercise

References

References

See Also

Mentions

Mentions

const modules = await cJS()

const COLUMNS = [  
	{ id: "Name", value: page => page.$link },  
	{ id: "Last Modified", value: page => modules.dateTime.getLastMod(page) },
];  
  
return function View() {  
	const current = dc.useCurrentFile();
// Selecting `#game` pages, for example. 
	let queryString = `@page and linksto(${current.$link})`;
	let pages = dc.useQuery(queryString);
	
	// check types
	pages = pages.filter( (p) => !modules.typeCheck.checkAll(p, current) ).sort()
	
	
	return <dc.Table columns={COLUMNS} rows={pages} paging={20}/>;  
}  

const { dateTime } = await cJS()

return function View() {
	const file = dc.useCurrentFile();
	return <p class="dv-modified">Created {dateTime.getCreated(file)}     ֍     Last Modified {dateTime.getLastMod(file)}</p>
}