نتایج جستجو برای: borel cantelli

تعداد نتایج: 4457  

2014
SCOTT SCHNEIDER

Let E ⊆ F and E′ ⊆ F ′ be Borel equivalence relations on the standard Borel spaces X and Y , respectively. The pair (E,F ) is simultaneously Borel reducible to the pair (E′, F ′) if there is a Borel function f : X → Y that is both a reduction from E to E′ and a reduction from F to F ′. Simultaneous Borel embeddings and isomorphisms are defined analogously. We classify all pairs E ⊆ F of smooth ...

2006
Thomas Kahle

In this note we will study upper bounds of random variables of the type sup A∈A |ν n (A) − ν(A)| , where A is a class of sets that needs to fulll certain assumptions. These bounds are important tools in the analysis of learning processes and probabilistic theories of pattern recognition. The presentation given here is based on [DGL96].

Journal: :Topology and its Applications 2008

Journal: :Topology and its Applications 2012

Journal: :The Annals of Mathematical Statistics 1954

2010
David Jerison Lionel Levine Scott Sheffield

Let A(t) denote the cluster produced by internal diffusion limited aggregation (internal DLA) with t particles in dimension d ≥ 3. We show that A(t) is approximately spherical, up to an O( √ log t) error. In the process known as internal diffusion limited aggregation (internal DLA) one constructs for each integer time t ≥ 0 an occupied set A(t) ⊂ Zd as follows: begin with A(0) = ∅ and A(1) = {0...

2009
Satyadev Nandakumar Pavan Aduri Krishna Athreya Roger Maddux Giora Slutzki

This thesis establishes some results in algorithmic information theory. Martin-Löf in 1966 formalized the notion of what it means for a given sequence to be random, using the theory of computation. Equivalent, alternate definitions justify that this definition is robust. A finite string is called random if there is no short program which outputs the string that is, the Kolmogorov complexity of ...

2014
Ryan Martin

These notes are based on the two lectures1 I gave in Stat 501, Probability Theory I, as a substitute for Professor Cheng Ouyang. There is a brief discussion of the so-called “basic grouping lemma” concerning independent σ-algebras, followed by a more detailed discussion of the Borel–Cantelli lemma, some applications, and some elaborations on independence. Independence, and the basic grouping le...

2009
Ahto Buldas Sven Laur Margus Niitsoo

Oracle separation methods are used in cryptography to rule out blackbox reductions between cryptographic primitives. It is sufficient to find an oracle relative to which the base primitive exists but there are no secure instances of the constructed primitive. In practice, it is beyond our current reach to construct a fixed oracle with such properties for most of the reductions because it is dif...

2013
Jay Williams

Let S∞ be the group of all permutations of N and X be a standard Borel space. Then the space XN of functions from N to X is a standard Borel space, and S∞ acts on this space by permutation where given x ∈ XN and g ∈ S∞, g · x(n) = x(g−1(n)). Given any countable subgroup G of S∞, we can likewise restrict this action to G and consider the induced orbit equivalence relation on XN, which we will no...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->