نتایج جستجو برای: asymptoticprobability distribution

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

2011
Tika Ram Aryal

The aim of this paper is to apply inflated geometric distribution to study the distribution of rural out-migrants from a household. The inflated geometric distribution is found to be a reasonable approximation to describe this distribution. The estimated value of risk parameter α was found to be 0.7004229. Findings may help planners and policy makers for designing more effective and equitable r...

2008
Paul Libbrecht

Re-using e-learning content is a solution often proposed against the high-cost of the creation high-quality e-learning material, a solution with a neglectable price. In this paper we propose a content distribution model that addresses the long term evolution of content pieces whose quality raises along with re-uses. A realization of this model is presented for the ActiveMath learning environmen...

2007
Efthymios G. Tsionas

In this paper we consider the Weibull distribution as a model for technical efficiency. The distribution has a shape and scale parameter like the gamma distribution and can be a reasonable competitor in practice. The techniques are illustrated using artificial data as well as a panel of Spanish dairy farms.

Journal: :Int. J. Math. Mathematical Sciences 2006
Abdelnaser Al-Hasan Dashan Fan

for all test functions f , where y′ = y/|y| ∈ Sn−1. We denote SIΩ,h( f ) by SIΩ( f ) if h= 1. The operator SIΩ was first studied by Calderón and Zygmund in their well-known papers (see [1, 2]). They proved that SIΩ is Lp(Rn) bounded, 1 < p < ∞, provided that Ω ∈ LLog+L(Sn−1) satisfying (1.1). They also showed that the space LLog+L(Sn−1) cannot be replaced by any Orlicz space Lφ(Sn−1) with a mon...

Journal: :Chaos 2007
Hermann Riecke Alex Roxin Santiago Madruga Sara A Solla

We study the dynamical states of a small-world network of recurrently coupled excitable neurons, through both numerical and analytical methods. The dynamics of this system depend mostly on both the number of long-range connections or "shortcuts", and the delay associated with neuronal interactions. We find that persistent activity emerges at low density of shortcuts, and that the system undergo...

Journal: :Applied Mathematics and Computation 2003
Hari M. Srivastava

Journal: :Demography 2011
Thomas J Espenshade Analia S Olgiati Simon A Levin

This article decomposes total population momentum into two constituent and multiplicative parts: "nonstable" momentum and "stable" momentum. Nonstable momentum depends on deviations between a population's current age distribution and its implied stable age distribution. Stable momentum is a function of deviations between a population's implied stable and stationary age distributions. In general...

Journal: :ADS 2012
E. A. Eljamal Maslina Darus

where h and g are analytic in D. We call h the analytic part and g the coanalytic part of f . A necessary and sufficient condition for f to be locally univalent and sense preserving in D is that |h z | > |g z | for all z in D see 1 . Let H be the class of functions of the form 1.1 that are harmonic univalent and sense preserving in the unit disk U {z : |z| < 1} for which f 0 fz 0 − 1 0. Then fo...

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

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

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"; } -->