نتایج جستجو برای: m embedded space

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

2017
ANGELO FAVINI ATSUSHI YAGI

The quasilinear degenerate evolution equation of parabolic type d(Mv) dt + L(Mv)v = F (Mv), 0 < t ≤ T considered in a Banach space X is written, putting Mv = u, in the form du dt + A(u)u 3 F (u), 0 < t ≤ T , where A(u) = L(u)M−1 are multivalued linear operators in X for u ∈ K, K being a bounded ball ‖u‖Z < R in another Banach space Z continuously embedded in X. Existence and uniqueness of the l...

2002
Andy D. Pimentel Simon Polstra Frank Terpstra A. W. van Halderen Joseph E. Coffland Louis O. Hertzberger

Modern signal processing and multimedia embedded systems increasingly have heterogeneous system architectures. In these systems, programmable processors provide flexibility to support multiple applications, while dedicated hardware blocks provide high performance for time-critical application tasks. The heterogeneity of these embedded systems and the varying demands of their growing number of t...

Journal: :bulletin of the iranian mathematical society 2011
a. aliabad m. badie

in this paper, we introduce a method by which we can find a close connection between the set of prime $z$-ideals of $c(x)$ and the same of $c(y)$, for some special subset $y$ of $x$. for instance, if $y=coz(f)$ for some $fin c(x)$, then there exists a one-to-one correspondence between the set of prime $z$-ideals of $c(y)$ and the set of prime $z$-ideals of $c(x)$ not containing $f$. moreover, c...

2004
Shigeki Aida

where FCb (Lx(M)) denotes the set of the smooth cylindrical functions and ∇(i) denotes the covariant derivative with respect to the i−th variable. Also τ(γ)t : TxM → Tγ(t)M is the stochastic parallel translation along γ. Among Riemannian connections, we restrict ourselves to the torsion skew symmetric (=TSS in short) connection, Namely the torsion T must satisfy that g(T (X, Y ), Y ) = 0. for a...

Journal: :Compositio Mathematica 2022

Let $ {\mathbb {C}}^{n+1}_o$ denote the germ of {C}}^{n+1}$ at origin. $V$ be a hypersurface in and $W$ deformation over {C}}_{o}^{m}$ . Under hypothesis that is Newton non-degenerate deformation, this article we prove $\mu$ -constant if only admits simultaneous embedded resolution. This result gives lot information about , for example, topological triviality family fact natural morphism $(\ope...

2004
A. J. Bushby V. L. Ferguson

Elastic modulus of bone was investigated by nanoindentation using common methods of sample preparation, data collection, and analysis, and compared to dynamic mechanical analysis (DMA: three-point bending) for the same samples. Nanoindentation (Berkovich, 5 m and 21 m radii spherical indenters) and DMA were performed on eight wet and dehydrated (100% ethanol), machined equine cortical bone beam...

Journal: :Advances in Mathematics 2023

Let (1→Nm→Gm→Qm→1)m∈N be a sequence of extensions finite groups such that their coarse disjoint unions have bounded geometry. In this paper, we show if the (Nm)m∈N and (Qm)m∈N are coarsely embeddable into Hilbert space, then Baum–Connes conjecture holds for union (Gm)m∈N. As an application, relative expanders constructed by G. Arzhantseva R. Tessera, special box spaces free discovered T. Delabi...

2012
A. Farhad

The slip effect on hydromagnetic rotating flow of viscous fluid through a porous space is investigated. The fluid is electrically conducting with the consideration of Hall current. The entire system rotates about the axis normal to a porous plate of uniform suction or injection with uniform angular velocity. The closed form solution is obtained using Laplace transform technique. The analytical ...

2007
Andrey Neronov

We study the localization of fermions on a brane embedded in a space-time with AdSn×M geometry. Quantum numbers of localized fermions are associated with their rotation momenta around the brane. Fermions with different quantum numbers have different higher-dimensional profiles. Fermion masses and mixings, which are proportional to the overlap of higher-dimensional profiles of the fermions, depe...

Let $R$ be an associative ring and let $M$ be a left $R$-module.Let $Spec_{R}(M)$ be the collection of all prime submodules of $M$ (equipped with classical Zariski topology). There is a conjecture which says that every irreducible closed subset of $Spec_{R}(M)$ has a generic point. In this article we give an affirmative answer to this conjecture and show that if $M$ has a Noetherian spectrum, t...

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

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

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