نتایج جستجو برای: discounted dividend payments

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

Journal: :Risks 2022

In this paper we consider a risk model with two independent classes of insurance risks in the presence multi-layer dividend strategy. We assume that both claim number processes are renewal phase-type inter-arrival times. By analysing Markov chains associated given distributions times, algorithmic schemes for determination explicit expressions Gerber–Shiu expected discounted penalty function, as...

2009
Stefan Thonhauser Hansjörg Albrecher

We characterize the value function of maximizing the total discounted utility of dividend payments for a compound Poisson insurance risk model when strictly positive transaction costs are included, leading to an impulse control problem. We show how to derive an optimal strategy for exponential claim amounts and construct a numerical procedure to deal with general claim amount distributions. 1 C...

2015
Hansjörg Albrecher Pablo Azcue Nora Muler

We consider a two-dimensional optimal dividend problem in the context of two insurance companies with compound Poisson surplus processes, who collaborate by paying each other’s deficit when possible. We solve the stochastic control problem of maximizing the weighted sum of expected discounted dividend payments (among all admissible dividend strategies) until ruin of both companies, by extending...

2008
Paul M. Healy Krishna G. Palepu David Mullins Paul Asquith Rick Ruback Ross Watts

This paper examines earnings changes surrounding firms' decisions to initiate or omit dividend payments. Firms that initiate (omit) dividend payments have positive (negative) earnings changes both before and after the dividend policy change. The subsequent earnings changes arc positively related to the dividend announcement return. Also, the stock price reactions at the announcement of subseque...

Journal: :Finance and Stochastics 2012
Lihua Bai Martin Hunting Jostein Paulsen

In this paper, we consider a company where surplus follows a rather general diffusion process and whose objective is to maximize expected discounted dividend payments. With each dividend payment there are transaction costs and taxes and it is shown in [7] that under some reasonable assumptions, optimality is achieved by using a lump sum dividend barrier strategy, i.e. there is an upper barrier ...

Journal: :Finance and Stochastics 2012
Zhengjun Jiang Martijn Pistorius

In this paper we investigate the problem of optimal dividend distribution in the presence of regime shifts. We consider a company whose cumulative net revenues evolve as a drifted Brownian motion modulated by a finite state Markov chain, and model the discount rate as a deterministic function of the current state of the chain. The objective is to maximize the expected cumulative discounted divi...

2007
JEAN-FRANÇOIS RENAUD XIAOWEN ZHOU Jean-François Renaud Xiaowen Zhou

In this short paper, we show how uctuation identities for Lévy processes with no positive jumps yield the distribution of the present value of dividend payments until ruin in a Lévy insurance risk model with a dividend barrier.

2004
Owain ap Gwilym James Seaton Stephen Thomas

3 ABSTRACT This paper investigates the dividend decisions of firms in the UK reporting losses after sustained periods of profitability. It is found that loss-making firms are more likely to reduce dividends compared to firms that remain profitable, although a loss is far from a guarantee that the dividend payment will be reduced. A lower propensity to reduce dividends is found in the UK relativ...

2014
S. Hutagalung M. H. Yahya F. Kamarudin Z. Osman

The purpose of this study is to identify the determinants of dividend policy in Malaysian financial institutions. Panel data set were constructed from 33 financial institutions in Malaysia for a period of 10 years (2001-2010). The results show a statistically significant positive relationship between dividend policy and profitability, which implies that Malaysian financial institutions distribu...

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

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

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