Posts

Showing posts from November 24, 2018

Young's Inequality for Convolutions; when $r = infty$

Image
up vote 1 down vote favorite I've been trying to prove what seems to be a little generalized version of the Young's Inequality for Convolutions. Here's the statement of the Theorem: Let $1leq p, q leq infty$ , $frac{1}{p}+frac{1}{q}geq 1$ , and $frac{1}{r}=frac{1}{p}+frac{1}{q}-1$ . If $f in L^{p}, g in L^{q}$ , then $fast g in L^{r}$ and $||fast g||_{r} leq ||f||_{p}||g||_{q}$ . First we may assume that $f,g$ are non-negative, for we can replace $f,g$ with $|f|,|g|$ if necessary. In the case where $p,q,r leq infty$ , I used the Generalized Hölder's Inequality for three functions with $frac{1}{r}+frac{1}{p_1}+frac{1}{p_2} = 1$ , where $frac{1}{p_1}=frac{1}{p}-frac{1}{r}$ , and $frac{1}{p_2}=frac{1}{q}-frac{1}{r}$ , and got my desired result. However, I'm stuck trying to prove the case when $r=infty

Rumohr

Image
Der Titel dieses Artikels ist mehrdeutig. Weitere Bedeutungen sind unter Rumohr (Begriffsklärung) aufgeführt. Wappen Deutschlandkarte 54.255555555556 10.025 28 Koordinaten: 54° 15′  N , 10° 2′  O Basisdaten Bundesland: Schleswig-Holstein Kreis: Rendsburg-Eckernförde Amt: Molfsee Höhe: 28 m ü. NHN Fläche: 8,6 km 2 Einwohner: 832 (31. Dez. 2017) [1] Bevölkerungsdichte: 97 Einwohner je km 2 Postleitzahl: 24254 Vorwahl: 04347 Kfz-Kennzeichen: RD, ECK Gemeindeschlüssel: 01 0 58 139 Adresse der Amtsverwaltung: Mielkendorfer Weg 2 24113 Molfsee Webpräsenz: www.gemeinderumohr.de Bürgermeister: Thomas Langmaack (KWG) Lage der Gemeinde Rumohr im Kreis Rendsburg-Eckernförde Rumohr ist eine Gemeinde bei Kiel im Kreis Rendsburg-Eckernförde in Schleswig-Holstein. Bornhorst, Hüttenkratt, Rotenhahn, Rumohrholz, Rumohrhütten und Sprenge liegen im Gemeindegebiet. In

A namespace declaration cannot be located prior to a class or function with which it is merged

Image
up vote 3 down vote favorite I have react app based on react-redux-typescript-boilerplate I've created this file: import * as React from 'react'; import { connect } from 'react-redux'; import { RootState } from 'app/reducers'; export namespace LasarTitle { export interface Props { title: string; loading: boolean; }; }; @connect( (state: RootState): LasarTitle.Props => { return { title: state.title, loading: state.loading }; }, () => { } ) export class LasarTitle extends React.Component<LasarTitle.Props> { static defaultProps: Partial<LasarTitle.Props> = { title: '' }; constructor(props: LasarTitle.Props, context?: any) { super(props, context); } render() { const title = this.props.loading ? 'loading...