sums and products of measurable functions are measurable

[[concept]]

Topics

const fieldName = "theme"; // Your field with links
const oldPrefix = "Thoughts/01 Themes/";
const newPrefix = "Digital Garden/Topics/";
 
const relatedLinks = dv.current()[fieldName];
 
if (Array.isArray(relatedLinks)) {
    // Map over the links, replace the path, and output only clickable links
    dv.el("span",
        relatedLinks
            .map(link => {
                if (link && link.path) {
                    let newPath = link.path.startsWith(oldPrefix)
                        ? link.path.replace(oldPrefix, newPrefix)
                        : link.path;
                    return dv.fileLink(newPath);
                }
            })
            .filter(Boolean).join(", ") 
	// Remove any undefined/null items
    );
} else {
    dv.el(dv.current().theme);
}
 
 

Real-Valued Functions

Theorem

Let be measurable and suppose are measurable functions, and . Then and are all measurable functions.

NOTE

this is useful because we will end up with 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)

is measurable If then is a continuous function and thus measurable

So assume . If , then Thus we have and this is measurable for any (since is measurable). Thus is measurable.

is measurable If , then

f(x) + g(x) > \alpha &\iff f(c) >\alpha-g(x) \\ &\iff f(x) > r>\alpha - g(x) \end{align}$$ Where $r$ is some rational number (since the rationals are dense in the reals +++++). Thus there exists some $r \in \mathbb{Q}$ such that $$x \in f^{-1}((r, \infty]) \cap g^{-1}((\alpha-r, \infty])$$ And since both $f$ and $g$ are measurable, this intersection is also measurable. Thus the preimage is given as $$\begin{align} (f+g)^{-1}((\alpha, \infty]) &= \bigcup_{r \in \mathbb{Q}} (f^{-1} (\,(r, \infty]\,)) \cap g^{-1} (\,(\alpha-r, \infty]\,) \end{align}$$ Which is measurable, since this is a countable union. Thus $f+g$ is [[Concept Wiki/measurable function\|measurable]]

is measurable We first show is measurable. Since is a nonnegative function, then for any we have because the entire domain maps within and so this is measurable by assumption. If instead , we have

f^2 > \alpha &\iff f(x) > \sqrt{ \alpha } \text{ or } f(x) < - \sqrt{ \alpha } \\ \implies (f^2)^{-1} ((\alpha, \infty]) &= f^{-1}((\sqrt{ \alpha }, \infty]) \;\cup \; f^{-1}([-\infty,-\sqrt{ \alpha })) \end{align}$$ And both sets on RHS are measurable, so using the [[Concept Wiki/equivalent intervals of measurability for measurable functions]], we see that the union is measurable and thus $f^2$ is measurable. Finally, we notice that $$fg = \frac{1}{4}(\,(f+g)^2 - (f-g)^2\,)$$ - And both $f+g$ and $f-g$ are measurable by the previous two proofs above.

\tag*{$\blacksquare$}

Complex-Valued Functions

Theorem

If are measurable and , 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>
}