The Dynamic Cross-sectional Microsimulation Model MOSART

Size: px
Start display at page:

Download "The Dynamic Cross-sectional Microsimulation Model MOSART"

Transcription

1 Third General Conference of the International Microsimulation Association Stockholm, June 8-10, 2011 The Dynamic Cross-sectional Microsimulation Model MOSART Dennis Fredriksen, Pål Knudsen and Nils Martin Stølen Statistics Norway ABSTRACT: MOSART is an acronym for Model for microsimulation of Education, Labour supply and Social security. The model uses either the entire or a representative sample of the population in a base year and simulates the further life course for each person. In addition to research projects in Statistics Norway, The Ministry of Finance and The Ministry of Labour are the main users of the model. MOSART has extensively been used in the recent process of reforming the Norwegian public pension system. This paper provides a brief overview of the model, with emphasis on technical aspects and the base population. Address: Research Department, Unit for Public Economics Statistics Norway P.O. Box 8131 Dep. N-0033 Oslo, Norway dennis.fredriksen@ssb.no, pal.knudsen@ssb.no, nils.martin.stolen@ssb.no 1

2 OBJECTIVE OF THE MODEL MOSART is a dynamic microsimulation model with a cross-section of the Norwegian population and a comprehensive set of characteristics. The model starts with either the entire population or a representative sample of the population in a base year (currently 2005) and simulates the further life course for each individual in this initial population. Transition probabilities depending on individual characteristics are estimated from observed transitions in a recent period. Events included in the simulation are migration, deaths, births, household formation, educational activities, retirement, labour force participation, income and wealth. Public pension benefits are calculated from the simulated labour market earnings and other characteristics included in the simulation according to an accurate description of the public pension system (the National Insurance Scheme Folketrygden ). The pensions covered by the model include old age pensions, disability pensions, survival pensions and early retirement benefits. Changes in the pension system may be analysed by calculating several pension systems in parallel while keeping the stochastic events constant. TARGET AUDIENCE MOSART is operated at Statistics Norway due to technical obstacles, restrictions from the Data Authorities regarding the merged administrative registers and because understanding the full meaning of changing a parameter requires detailed knowledge of the model. In addition to analyses requested by internal research projects, the main users are the Ministry of Finance and the Ministry of Labour. Users in these ministries are either former model developers themselves or economists with a realistic sense of how economic models work. They are therefore critical and capable users of the simulation results, and this has proved beneficial to the development and validation of the model. For this reason we can also transfer the results with a low degree of preparation, often as simple tables supported by some verbal explanations. Other public institutions, private organisations and media use the results from the MOSART model occasionally. In these cases the results are handed over with a higher degree of preparation. BASE POPULATION The base population has recently been updated and now includes the entire Norwegian population. The base year is currently To be able to compute benefits for surviving 2

3 spouses and inheritance, diseased and emigrated persons are included. The total number of people in the base population is 7.16 million. For convenience we have generated random samples of 0.1, 1 and 10 per cent of this population. These samples are mostly used for debugging and testing purposes, especially the two smallest. All samples are stratified by gender, age, birth histories and household status. The samples include both spouses from all married couples and from cohabitating couples with children. The data is collected from various administrative registers in the Directorate of Taxes, the National Insurance Administration and Statistics Norway. The underlying demographic assumptions of the model are based on public population projections from Statistics Norway. The information is represented as annual data going back as far as possible, Table 1 itemises the various data sources along with which variables are gathered and the earliest possible start for the time series. Table 1: Data sources for the base population. Source Variable Start Directorate of Taxes Gender, year of birth, spouse, 1964 mother and father, marital status, country of birth, year of migration (if any), home address. National Insurance Degree of disability Administration National Insurance Pension status, time for 1967 Administration disability. Directorate of Taxes Labour income, wealth Statistics Norway Educational activities, completed education In addition to being the starting point of the simulation, the initial population is also used to estimate the transition probabilities. These probabilities may be adjusted to make the expected number of simulated events equal to some external constraints, for example the historical number of events in the same year. The underlying assumptions are generally kept up to date by using adjustment factors from the last year with historical data at an aggregate level. This is the case for aggregate observations regarding migration, periodic life expectancy at birth by gender, number of births, number of pupils and students by gender and age group, number of early retirees, retirement age, number of persons in the labour force and man-years by gender, 3

4 total labour market earnings by gender, the basic pension unit, and rules for calculating pension entitlements and benefits. At present the model is calibrated to annual data from When calibrating to new annual data we assume that the effects from different explanatory variables (gender, age, education etc.) on the transition probabilities are the same as estimated from the initial population, and that the adjustment factors capture the interesting part of time variation. The model is extensively documented in Fredriksen (1998). METHOD AND PLATFORM Being programmed in C# the model is truly multi-platform, as compilers for C# exists for virtually every operating system. This makes it possible to run the model on any available hardware. We run the model on both Linux and Microsoft Windows. On Linux we use the compiler provided by the Mono project. Mono is an open source project providing software to develop and run.net applications. Our experiences with the services from this compiler have been excellent. On the Microsoft Windows platform we use the free compiler and development tool Visual C# Express. This tool includes access to the MSDN library, which is very beneficial when programming large applications. Both compilers support version 4.0 of the.net framework. As the size of the base population is relatively large, a powerful computer is required. When transfer from disk to memory is completed it occupies approximately 30 GB of RAM in the base year, growing to 60 1 GB in year We are currently using a Linux-based server (conveniently named Amadeus) with 16 processors and 256 GB RAM. This enables exploiting the benefits of multi-threading, to be discussed later. As illustrated in Figure 1, the three main stages of the application running the model are: 1. Read data files and transition probabilities. Set up tables and data structures. 2. Perform calculations based on transition and event probabilities. 3. Print results for the year simulated. Advance to next year and resort lists. 1 This depends on the assumptions, especially regarding population growth and number of pension systems. 4

5 Figure 1: Logical data flow. During a simulation Step 1 above is performed only once, while Steps 2 and 3 are repeated every simulation-year. The input data and the transition probabilities are provided as space-delimited ASCII-files. This makes it straightforward for the user to verify the contents of the files. In addition to input-files there are a few parameter-files where the user can set global variables for the simulation. This is information like i.e. the end year of the simulation, mortality and fertility rates and pension rules. These files are also space-delimited ASCII-files. The output from a simulation consist of extensive self-documentation (making the user able to find errors in the results afterwards), a set of standard tables produced by the simulation programme with aggregated figures covering most frequently asked questions and an option to produce a model population consisting of an ASCII-file with one record per selected person per selected year with selected variables. To produce special tables from this file one has to use a suitable table production programme like SAS. RECENT TECHNICAL ADVANCEMENTS New computers have multiple cores, i.e. the ability to perform calculations simultaneously. MOSART was originally programmed in a traditional style where only one event or calculation was handled at a time. Multiple cores did not reduce runtime with this approach. 5

6 The new base population included times as many persons as the former 2, and this made runtimes matter. For this reason we shifted MOSART towards multithreading. Each step of the simulation is now split into fixed set of 'jobs', e.g. the simulation of disability by groups of gender and birth year. It is mandatory that each such 'job' have no interactions whatsoever with any of the other 'jobs' 3. This requires a tidy programming style. A special problem is that each 'job' must have its own random-seed for the chosen number of cores to avoid multithreading to influence the simulation result, and make it impossible to reproduce a simulation by using identical random-seed. If the splitting into 'jobs' can be done at a higher level, the effect on the source code is moderate. This also implies that simulation steps which include multiple repeated interactions within the entire population are of no use to multithread (e.g. household formation). The simulation is carried out by specifying the number of threads (i.e. the number of cores in the computer, if this simulation is the only task at the moment). Each thread (core) will at each simulation step pick up the next 'job' in line, and repeat this until no more 'jobs' are available at the present step. With several more 'jobs' than threads, this will engage all threads fairly efficient. With a large population the run time for most multithreaded simulation steps are reduced with a factor close to the number of threads. E.g., tax calculations respond efficiently to 12 threads, and is a simulation step which is easily split into separate jobs (no interactions between tax units, i.e. households), little allocation of new memory and many trivial calculations. Some simulation steps do however not respond to multithreading at all, or they may respond only to 2-3 threads and thereby gain very little from a large number of threads. Simulation steps involved in household formation is one clear category; they are both cumbersome to multithread due to often subtle interactions between individuals, and with little or none effect on runtime. Another category is simulation steps with heavy allocation of memory, especially those which triggers memory management. A major problem is semi permanent arrays, lists 2 Prior to multithreading MOSART, the standard simulation included 1 per cent of the Norwegian population, even though we for special purposes used 12 per cent. 3 Interaction may be handled through special synchronization primitives, e.g. locks, but the general effect is very often that reductions in runtimes are lost. 6

7 and objects. We are still working on these aspects, searching for an understanding of what constitutes efficient programming in a multicore environment. Another approach is tasks, which handles all the administration of generating threads and assigning 'jobs' (each iteration is a 'job'). The effect on the source code is minimal (easy to implement). We are currently experimenting with this, either as an alternative to traditional multithreading or as a supplement. Our major problem so far is keeping the random-generator unaffected by the number of threads. One example is that while tasks are efficient at adding up individual variables, the sum is unfortunately affected. This is the case where the sum and each item in the sum have the same precision level, because the order of adding up will affect the rounding process. The effect is not large, but still sufficient to affect the random generator at some stage. We solved this by rounding all individual variables before adding, and then the sum itself afterwards. Multithreading has reduced the runtime with a factor of 4-5 when 6 threads are employed. Increasing the number of threads further has shown far less effect. Some parts of the simulation are not multithreaded, and their relative importance increases with the number of threads. Another problem is as mentioned memory management. We have also experimented with memory-mapped files. Due to the large size of the base population, it is inconvenient to load it into memory every time a simulation run is to be performed. By keeping it permanently stored in memory we avoid reading from disk, which is very slow compared to a memory-to-memory transfer. This approach significantly reduces the time used to initiate a simulation. A memory-mapped file can easily be shared among different simulations and it rarely changes. POLICY ENVIRONMENT In the last couple of years the MOSART model has been intensively used in analysing effects from reforms of the Norwegian National Insurance Scheme. As in many other countries the pension system in Norway is rather complicated, including non-linearities regarding the accumulation of pension entitlements. A microsimulation model including demographic characteristics, labour supply and an accurate description of the pension system therefore seems to be the most appropriate tool to obtain precise estimates of the direct effects on 7

8 individual benefits, government expenditures and the future pension burden. Some of the experiences from using the model to analyse these effects can be found in Fredriksen and Stølen (2007), where it is shown that results from the MOSART model have had a direct impact in the design of the new pension system. REFERENCES Fredriksen D (1998) Projections of Population, Education, Labour Supply and Public Pension Benefits. Social and Economic Studies 101, Oslo: Statistics Norway. Fredriksen D and Stølen N M (2007) Effects of Demographic Developments, Labour Supply and Pension Reforms on the Future Pension Burdon in Norway, in Harding A and Gupta A (Eds.), Modelling our future: Population ageing, social security and taxation, Oxford: Elsevier,

A more efficient sampling procedure, using loaded probabilities

A more efficient sampling procedure, using loaded probabilities INTERNATIONAL JOURNAL OF MICROSIMULATION (2012) 5(1) 21-30 A more efficient sampling procedure, using loaded probabilities J Richard Cumpston JR Cumpston Pty Ltd, 1 Talbot Street Forrest ACT, Australia

More information

Accumulated pension entitlements in Norway

Accumulated pension entitlements in Norway From chapter 5.3 i Økonomisk utsyn (Rapporter 2018/09) Accumulated pension entitlements in Norway The estimated present value of Norwegian households total accrued-to-date pension entitlements in social

More information

Life Time Pension Benefits Relative to Life Time Contributions

Life Time Pension Benefits Relative to Life Time Contributions INTERNATIONAL JOURNAL OF MICROSIMULATION (2017) 10(2) 177-207 INTERNATIONAL MICROSIMULATION ASSOCIATION Dennis Fredriksen Statistics Norway, Oslo, Norway Dennis.Fredriksen@ssb.no Nils M Stølen Statistics

More information

Favourable methods for labour market projections

Favourable methods for labour market projections MUTUAL LEARNING PROGRAMME: PEER COUNTRY COMMENTS PAPER - NORWAY Favourable methods for labour market projections Peer Review on The Ageing Population and Educational Choices Finland, 14 and 15 June 2010

More information

An Oracle White Paper February Temporal Reasoning: Manage Complex Changes in Rules, Rates, and Circumstances

An Oracle White Paper February Temporal Reasoning: Manage Complex Changes in Rules, Rates, and Circumstances An Oracle White Paper February 2009 Temporal Reasoning: Manage Complex Changes in Rules, Rates, and Circumstances Executive Summary Many public and private sector organizations work in a complex environment

More information

JADE LICENSING DOCUME N T V E R S I O N 1 2 JADE SOFTWARE CORPORATION

JADE LICENSING DOCUME N T V E R S I O N 1 2 JADE SOFTWARE CORPORATION JADE LICENSING DOCUME N T V E R S I O N 1 2 JADE SOFTWARE CORPORATION 14 MARCH 2013 Jade Software Corporation Limited cannot accept any financial or other responsibilities that may be the result of your

More information

A Genetic Algorithm for the Calibration of a Micro- Simulation Model Omar Baqueiro Espinosa

A Genetic Algorithm for the Calibration of a Micro- Simulation Model Omar Baqueiro Espinosa A Genetic Algorithm for the Calibration of a Micro- Simulation Model Omar Baqueiro Espinosa Abstract: This paper describes the process followed to calibrate a microsimulation model for the Altmark region

More information

Kyrre Stensnes and Nils Martin Stølen

Kyrre Stensnes and Nils Martin Stølen Discussion Papers No. 524, December 2007 Statistics Norway, Research Department Kyrre Stensnes and Nils Martin Stølen Pension Reform in Norway Microsimulating effects on government expenditures, labour

More information

Modelling economic scenarios for IFRS 9 impairment calculations. Keith Church 4most (Europe) Ltd AUGUST 2017

Modelling economic scenarios for IFRS 9 impairment calculations. Keith Church 4most (Europe) Ltd AUGUST 2017 Modelling economic scenarios for IFRS 9 impairment calculations Keith Church 4most (Europe) Ltd AUGUST 2017 Contents Introduction The economic model Building a scenario Results Conclusions Introduction

More information

T-DYMM: Background and Challenges

T-DYMM: Background and Challenges T-DYMM: Background and Challenges Intermediate Conference Rome 10 th May 2011 Simone Tedeschi FGB-Fondazione Giacomo Brodolini Outline Institutional framework and motivations An overview of Dynamic Microsimulation

More information

EDUCATION EMPLOYMENT & TRANSITION THE AUSTRALIAN LONGITUDINAL SURVEY PROGRAM. Peter Boal. Geoff Parkinson. l.introduction

EDUCATION EMPLOYMENT & TRANSITION THE AUSTRALIAN LONGITUDINAL SURVEY PROGRAM. Peter Boal. Geoff Parkinson. l.introduction 201 YOUNG PEOPLE - EDUCATION EMPLOYMENT & TRANSITION THE AUSTRALIAN LONGITUDINAL SURVEY PROGRAM Geoff Parkinson Peter Boal l.introduction The Australian Longitudinal Survey (ALS) program began in the then

More information

v1.6 (changes from PI + v1.5)

v1.6 (changes from PI + v1.5) v1.6 (changes from PI + v1.5) Major Economic Data Sources Employment County 1 State BEA SPI (summary industries; 1990-2012) 2 National BEA SPI (summary industries; 1990-2012) 3 BLS EP (detail industries;

More information

Topic 2: Define Key Inputs and Input-to-Output Logic

Topic 2: Define Key Inputs and Input-to-Output Logic Mining Company Case Study: Introduction (continued) These outputs were selected for the model because NPV greater than zero is a key project acceptance hurdle and IRR is the discount rate at which an investment

More information

Multistate Demography with R? Samir K.C. World Population Program - IIASA

Multistate Demography with R? Samir K.C. World Population Program - IIASA Multistate Demography with R? Samir K.C. World Population Program - IIASA Definition the study of populations stratified by age, sex, and one or several attributes such as region of residence marital status

More information

Reforming Public Service Pensions

Reforming Public Service Pensions elete this text box to isplay the color squar; you ay also insert an image or lient logo in this space. o delete the text box, click within ext, hit the Esc key and then the elete key 4 December 2008 Reforming

More information

Better decision making under uncertain conditions using Monte Carlo Simulation

Better decision making under uncertain conditions using Monte Carlo Simulation IBM Software Business Analytics IBM SPSS Statistics Better decision making under uncertain conditions using Monte Carlo Simulation Monte Carlo simulation and risk analysis techniques in IBM SPSS Statistics

More information

PWBM WORKING PAPER SERIES MATCHING IRS STATISTICS OF INCOME TAX FILER RETURNS WITH PWBM SIMULATOR MICRO-DATA OUTPUT.

PWBM WORKING PAPER SERIES MATCHING IRS STATISTICS OF INCOME TAX FILER RETURNS WITH PWBM SIMULATOR MICRO-DATA OUTPUT. PWBM WORKING PAPER SERIES MATCHING IRS STATISTICS OF INCOME TAX FILER RETURNS WITH PWBM SIMULATOR MICRO-DATA OUTPUT Jagadeesh Gokhale Director of Special Projects, PWBM jgokhale@wharton.upenn.edu Working

More information

Population, Labourforce and Housing Demand Projections

Population, Labourforce and Housing Demand Projections Population, Labourforce and Housing Demand Projections The National Spatial Strategy Final Report October 2001 Jonathan Blackwell and Associates in association with Roger Tym & Partners Acknowledgements

More information

How Much Should Americans Be Saving for Retirement?

How Much Should Americans Be Saving for Retirement? How Much Should Americans Be Saving for Retirement? by B. Douglas Bernheim Stanford University The National Bureau of Economic Research Lorenzo Forni The Bank of Italy Jagadeesh Gokhale The Federal Reserve

More information

Assessing Solvency by Brute Force is Computationally Tractable

Assessing Solvency by Brute Force is Computationally Tractable O T Y H E H U N I V E R S I T F G Assessing Solvency by Brute Force is Computationally Tractable (Applying High Performance Computing to Actuarial Calculations) E D I N B U R M.Tucker@epcc.ed.ac.uk Assessing

More information

Individual Asset Transfer

Individual Asset Transfer ADVISOR USE ONLY Individual Asset Transfer ADVISOR GUIDE Life s brighter under the sun INTRODUCTION If you type insurance as an asset class in your favourite internet search engine, you may be surprised

More information

World Social Security Report 2010/11 Providing coverage in times of crisis and beyond

World Social Security Report 2010/11 Providing coverage in times of crisis and beyond Executive Summary World Social Security Report 2010/11 Providing coverage in times of crisis and beyond The World Social Security Report 2010/11 is the first in a series of reports on social security coverage

More information

Reinsurance in Taiwan, Key Trends and Opportunities to 2017

Reinsurance in Taiwan, Key Trends and Opportunities to 2017 Reinsurance in Taiwan, Key Trends and Opportunities to 2017 Market Intelligence Report Reference code: IS0483MR Published: January 2014 www.timetric.com Timetric John Carpenter House 7 Carmelite Street

More information

FPS Briefcase. User Guide

FPS Briefcase. User Guide FPS Briefcase User Guide CCH Canadian Limited 2001 All rights reserved SOFTWARE LICENSE AGREEMENT The Financial Planning Solutions software (the Software), including FPS 2000, FPS Briefcase, ROI Analyst,

More information

Comparison of Logit Models to Machine Learning Algorithms for Modeling Individual Daily Activity Patterns

Comparison of Logit Models to Machine Learning Algorithms for Modeling Individual Daily Activity Patterns Comparison of Logit Models to Machine Learning Algorithms for Modeling Individual Daily Activity Patterns Daniel Fay, Peter Vovsha, Gaurav Vyas (WSP USA) 1 Logit vs. Machine Learning Models Logit Models:

More information

Pension Fiche - Norway October 2017

Pension Fiche - Norway October 2017 Pension Fiche - Norway October 2017 Part 1 Overview of the pension system Elements in the Norwegian public old age pension system The Norwegian old age pension system consists of the following elements:

More information

An Improved Framework for Assessing the Risks Arising from Elevated Household Debt

An Improved Framework for Assessing the Risks Arising from Elevated Household Debt 51 An Improved Framework for Assessing the Risks Arising from Elevated Household Debt Umar Faruqui, Xuezhi Liu and Tom Roberts Introduction Since 2008, the Bank of Canada has used a microsimulation model

More information

REPUBLIC OF CROATIA MINISTRY OF LABOUR AND PENSION SYSTEM Croatian Pension Insurance Institute. Croatia Country fiche on pension projections

REPUBLIC OF CROATIA MINISTRY OF LABOUR AND PENSION SYSTEM Croatian Pension Insurance Institute. Croatia Country fiche on pension projections REPUBLIC OF CROATIA MINISTRY OF LABOUR AND PENSION SYSTEM Croatian Pension Insurance Institute Croatia Country fiche on pension projections Prepared for the 2015 round of EPC AWG projections Version 3

More information

KEY WORDS: Microsimulation, Validation, Health Care Reform, Expenditures

KEY WORDS: Microsimulation, Validation, Health Care Reform, Expenditures ALTERNATIVE STRATEGIES FOR IMPUTING PREMIUMS AND PREDICTING EXPENDITURES UNDER HEALTH CARE REFORM Pat Doyle and Dean Farley, Agency for Health Care Policy and Research Pat Doyle, 2101 E. Jefferson St.,

More information

Sizing Strategies in Scarce Environments

Sizing Strategies in Scarce Environments 2011-8675 C Sizing Strategies in Scarce Environments Michael D. Mitchell 1, Walter E. Beyeler 1, Robert E. Glass 1, Matthew Antognoli 2, Thomas Moore 1 1 Complex Adaptive System of Systems (CASoS) Engineering

More information

Stochastic Modelling: The power behind effective financial planning. Better Outcomes For All. Good for the consumer. Good for the Industry.

Stochastic Modelling: The power behind effective financial planning. Better Outcomes For All. Good for the consumer. Good for the Industry. Stochastic Modelling: The power behind effective financial planning Better Outcomes For All Good for the consumer. Good for the Industry. Introduction This document aims to explain what stochastic modelling

More information

DRAFT. A microsimulation analysis of public and private policies aimed at increasing the age of retirement 1. April Jeff Carr and André Léonard

DRAFT. A microsimulation analysis of public and private policies aimed at increasing the age of retirement 1. April Jeff Carr and André Léonard A microsimulation analysis of public and private policies aimed at increasing the age of retirement 1 April 2009 Jeff Carr and André Léonard Policy Research Directorate, HRSDC 1 All the analysis reported

More information

STOCHASTIC COST ESTIMATION AND RISK ANALYSIS IN MANAGING SOFTWARE PROJECTS

STOCHASTIC COST ESTIMATION AND RISK ANALYSIS IN MANAGING SOFTWARE PROJECTS STOCHASTIC COST ESTIMATION AND RISK ANALYSIS IN MANAGING SOFTWARE PROJECTS Dr A.M. Connor Software Engineering Research Lab Auckland University of Technology Auckland, New Zealand andrew.connor@aut.ac.nz

More information

Retirement. Optimal Asset Allocation in Retirement: A Downside Risk Perspective. JUne W. Van Harlow, Ph.D., CFA Director of Research ABSTRACT

Retirement. Optimal Asset Allocation in Retirement: A Downside Risk Perspective. JUne W. Van Harlow, Ph.D., CFA Director of Research ABSTRACT Putnam Institute JUne 2011 Optimal Asset Allocation in : A Downside Perspective W. Van Harlow, Ph.D., CFA Director of Research ABSTRACT Once an individual has retired, asset allocation becomes a critical

More information

REPUBLIC OF BULGARIA. Country fiche on pension projections

REPUBLIC OF BULGARIA. Country fiche on pension projections REPUBLIC OF BULGARIA Country fiche on pension projections Sofia, November 2017 Contents 1 Overview of the pension system... 3 1.1 Description... 3 1.1.1 The public system of mandatory pension insurance

More information

Methods and Data for Developing Coordinated Population Forecasts

Methods and Data for Developing Coordinated Population Forecasts Methods and Data for Developing Coordinated Population Forecasts Prepared by Population Research Center College of Urban and Public Affairs Portland State University March 2017 Table of Contents Introduction...

More information

FINAL QUALITY REPORT EU-SILC

FINAL QUALITY REPORT EU-SILC NATIONAL STATISTICAL INSTITUTE FINAL QUALITY REPORT EU-SILC 2006-2007 BULGARIA SOFIA, February 2010 CONTENTS Page INTRODUCTION 3 1. COMMON LONGITUDINAL EUROPEAN UNION INDICATORS 3 2. ACCURACY 2.1. Sample

More information

Transfer Pricing Country Summary Norway

Transfer Pricing Country Summary Norway Page 1 of 5 Transfer Pricing Country Summary Norway 21 July 2015 Page 2 of 5 Legislation Existence of Transfer Pricing Laws/Guidelines The arm s-length standard for related party transactions is incorporated

More information

STOCHASTIC COST ESTIMATION AND RISK ANALYSIS IN MANAGING SOFTWARE PROJECTS

STOCHASTIC COST ESTIMATION AND RISK ANALYSIS IN MANAGING SOFTWARE PROJECTS Full citation: Connor, A.M., & MacDonell, S.G. (25) Stochastic cost estimation and risk analysis in managing software projects, in Proceedings of the ISCA 14th International Conference on Intelligent and

More information

Expert4x NoWorries EA. November 21, 2017

Expert4x NoWorries EA. November 21, 2017 Expert4x NoWorries EA November 21, 2017 Contents Copyright Notices...4 Getting Started with the NoWorries EA... 5 2.1 Installing the NoWorries EA...5 2.2 NoWorries Expert Advisor First Time Activation...8

More information

Loan Approval and Quality Prediction in the Lending Club Marketplace

Loan Approval and Quality Prediction in the Lending Club Marketplace Loan Approval and Quality Prediction in the Lending Club Marketplace Final Write-up Yondon Fu, Matt Marcus and Shuo Zheng Introduction Lending Club is a peer-to-peer lending marketplace where individual

More information

PENSIM Overview. Martin Holmer, Asa Janney, Bob Cohen Policy Simulation Group. for

PENSIM Overview. Martin Holmer, Asa Janney, Bob Cohen Policy Simulation Group. for PENSIM Overview by Martin Holmer, Asa Janney, Bob Cohen Policy Simulation Group for U.S. Department of Labor Employee Benefits Security Administration Office of Policy and Research September 2006 Preface

More information

Solutions exercises instruction 1

Solutions exercises instruction 1 Solutions exercises instruction 1 1. The re-formulated requirements, together with a motivation: a) First of all, shall be able should be avoided. Second of all, according to the syntax, we should have

More information

Accelerated Option Pricing Multiple Scenarios

Accelerated Option Pricing Multiple Scenarios Accelerated Option Pricing in Multiple Scenarios 04.07.2008 Stefan Dirnstorfer (stefan@thetaris.com) Andreas J. Grau (grau@thetaris.com) 1 Abstract This paper covers a massive acceleration of Monte-Carlo

More information

Effects of the Australian New Tax System on Government Expenditure; With and without Accounting for Behavioural Changes

Effects of the Australian New Tax System on Government Expenditure; With and without Accounting for Behavioural Changes Effects of the Australian New Tax System on Government Expenditure; With and without Accounting for Behavioural Changes Guyonne Kalb, Hsein Kew and Rosanna Scutella Melbourne Institute of Applied Economic

More information

Capital Stock Measurement in New Zealand

Capital Stock Measurement in New Zealand Capital Stock Conference March 1997 Agenda Item III CONFERENCE ON MEASUREMENT OF CAPITAL STOCK Canberra 10-14 March 1997 Capital Stock Measurement in New Zealand National Accounts Division Statistics New

More information

Quick Start Guide SYSTEM REQUIREMENTS GETTING STARTED NAVIGATION THE WIZARD

Quick Start Guide SYSTEM REQUIREMENTS GETTING STARTED NAVIGATION THE WIZARD SYSTEM REQUIREMENTS Windows Windows 2000 Service Pack 4 or later, XP, or Vista 500 MHz Pentium class processor or better Sun Java Runtime Environment (JRE) Version 6 Update 2 or later 256MB RAM 1024 x

More information

Her Majesty the Queen in Right of Canada (2017) All rights reserved

Her Majesty the Queen in Right of Canada (2017) All rights reserved Her Majesty the Queen in Right of Canada (2017) All rights reserved All requests for permission to reproduce this document or any part thereof shall be addressed to the Department of Finance Canada. Cette

More information

Making sense of Schedule Risk Analysis

Making sense of Schedule Risk Analysis Making sense of Schedule Risk Analysis John Owen Barbecana Inc. Version 2 December 19, 2014 John Owen - jowen@barbecana.com 2 5 Years managing project controls software in the Oil and Gas industry 28 years

More information

RISK ADVICE AND INSURANCE

RISK ADVICE AND INSURANCE RISK ADVICE AND INSURANCE Study guide: First edition Risk Advice and Insurance is designed to provide you with insurance and risk-advice knowledge and skills that are applicable to the Australian insurance

More information

Ministry of Health, Labour and Welfare Statistics and Information Department

Ministry of Health, Labour and Welfare Statistics and Information Department Special Report on the Longitudinal Survey of Newborns in the 21st Century and the Longitudinal Survey of Adults in the 21st Century: Ten-Year Follow-up, 2001 2011 Ministry of Health, Labour and Welfare

More information

Projection Assumption Standards

Projection Assumption Standards Projection Assumption Standards Institut québécois de planification financière Nathalie Bachand, A.S.A., F.Pl. Martin Dupras, A.S.A., F.Pl., D.Fisc. Daniel Laverdière, A.S.A., F.Pl. Montreal, April 25,

More information

CHAPTER 11 CONCLUDING COMMENTS

CHAPTER 11 CONCLUDING COMMENTS CHAPTER 11 CONCLUDING COMMENTS I. PROJECTIONS FOR POLICY ANALYSIS MINT3 produces a micro dataset suitable for projecting the distributional consequences of current population and economic trends and for

More information

Benchmarks Open Questions and DOL Benchmarks

Benchmarks Open Questions and DOL Benchmarks Benchmarks Open Questions and DOL Benchmarks Iuliana Bacivarov ETH Zürich Outline Benchmarks what do we need? what is available? Provided benchmarks in a DOL format Open questions Map2Mpsoc, 29-30 June

More information

Data and Methods in FMLA Research Evidence

Data and Methods in FMLA Research Evidence Data and Methods in FMLA Research Evidence The Family and Medical Leave Act (FMLA) was passed in 1993 to provide job-protected unpaid leave to eligible workers who needed time off from work to care for

More information

Load Test Report. Moscow Exchange Trading & Clearing Systems. 07 October Contents. Testing objectives... 2 Main results... 2

Load Test Report. Moscow Exchange Trading & Clearing Systems. 07 October Contents. Testing objectives... 2 Main results... 2 Load Test Report Moscow Exchange Trading & Clearing Systems 07 October 2017 Contents Testing objectives... 2 Main results... 2 The Equity & Bond Market trading and clearing system... 2 The FX Market trading

More information

PENSIONS POLICY INSTITUTE. Automatic enrolment changes

PENSIONS POLICY INSTITUTE. Automatic enrolment changes Automatic enrolment changes This report is based upon modelling commissioned by NOW: Pensions Limited. A Technical Modelling Report by Silene Capparotto and Tim Pike. Published by the Pensions Policy

More information

Curve fitting for calculating SCR under Solvency II

Curve fitting for calculating SCR under Solvency II Curve fitting for calculating SCR under Solvency II Practical insights and best practices from leading European Insurers Leading up to the go live date for Solvency II, insurers in Europe are in search

More information

Canadian Partnership Against Cancer - Who We are

Canadian Partnership Against Cancer - Who We are Canadian Partnership Against Cancer - Who We are The Canadian Partnership Against Cancer is an independent organization funded by the federal government to accelerate action on cancer control for all Canadians.

More information

Journal of Insurance and Financial Management, Vol. 1, Issue 4 (2016)

Journal of Insurance and Financial Management, Vol. 1, Issue 4 (2016) Journal of Insurance and Financial Management, Vol. 1, Issue 4 (2016) 68-131 An Investigation of the Structural Characteristics of the Indian IT Sector and the Capital Goods Sector An Application of the

More information

B1.02: LIFE POLICY TYPES

B1.02: LIFE POLICY TYPES B1.02: LIFE POLICY TYPES SYLLABUS Term assurance Increasing, decreasing, renewal and conversion options Family Income Benefit policies Whole of life policies With profit whole of life Unit-linked whole

More information

Projection Assumption Standards

Projection Assumption Standards Projection Assumption Standards Institut québécois de planification financière Nathalie Bachand, A.S.A., F.Pl. Martin Dupras, A.S.A., F.Pl., D.Fisc. Daniel Laverdière, A.S.A., F.Pl. Montreal, April 30,

More information

IAA STANDARD OF PRACTICE for actuarial advice provided with respect to SOCIAL SECURITY SCHEMES

IAA STANDARD OF PRACTICE for actuarial advice provided with respect to SOCIAL SECURITY SCHEMES IAA STANDARD OF PRACTICE for actuarial advice provided with respect to SOCIAL SECURITY SCHEMES A- Objective Many social security systems, and especially retirement pension schemes, are presently facing

More information

MDGs Example from Latin America

MDGs Example from Latin America Financing strategies to achieve the MDGs Example from Latin America Workshop Tunis 21-24 24 January,, 2008 Rob Vos Director Development Policy and Analysis Division Department of Economic and Social Affairs

More information

MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL

MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL Isariya Suttakulpiboon MSc in Risk Management and Insurance Georgia State University, 30303 Atlanta, Georgia Email: suttakul.i@gmail.com,

More information

Reference Guide TESTAMENTARY TRUSTS

Reference Guide TESTAMENTARY TRUSTS Reference Guide TESTAMENTARY TRUSTS While most people have heard about trusts, many do not really know what they are or what benefits they offer and often incorrectly believe that trusts are only for wealthy

More information

STATUS QUO AND PROBLEM

STATUS QUO AND PROBLEM STATUS QUO AND PROBLEM 3 1. This statement considers detailed design options for implementing legislation to provide for an income-sharing tax credit for couples with dependent children in New Zealand.

More information

Documentation note. IV quarter 2008 Inconsistent measure of non-life insurance risk under QIS IV and III

Documentation note. IV quarter 2008 Inconsistent measure of non-life insurance risk under QIS IV and III Documentation note IV quarter 2008 Inconsistent measure of non-life insurance risk under QIS IV and III INDEX 1. Introduction... 3 2. Executive summary... 3 3. Description of the Calculation of SCR non-life

More information

Long-term Public Finance Projections

Long-term Public Finance Projections Long-term Public Finance Projections Kerstin Greb, Tom Pybus, Shaun Butcher ESRC Research Methods Festival 3 July 2008 Overview (I) Background Fiscal Framework Long-term demographic challenges Monitoring

More information

CHAPTER 7 U. S. SOCIAL SECURITY ADMINISTRATION OFFICE OF THE ACTUARY PROJECTIONS METHODOLOGY

CHAPTER 7 U. S. SOCIAL SECURITY ADMINISTRATION OFFICE OF THE ACTUARY PROJECTIONS METHODOLOGY CHAPTER 7 U. S. SOCIAL SECURITY ADMINISTRATION OFFICE OF THE ACTUARY PROJECTIONS METHODOLOGY Treatment of Uncertainty... 7-1 Components, Parameters, and Variables... 7-2 Projection Methodologies and Assumptions...

More information

Saving for Retirement: Household Bargaining and Household Net Worth

Saving for Retirement: Household Bargaining and Household Net Worth Saving for Retirement: Household Bargaining and Household Net Worth Shelly J. Lundberg University of Washington and Jennifer Ward-Batts University of Michigan Prepared for presentation at the Second Annual

More information

Core methodology I: Sector analysis of MDG determinants

Core methodology I: Sector analysis of MDG determinants UNDP UN-DESA UN-ESCAP Core methodology I: Sector analysis of MDG determinants Rob Vos (UN-DESA/DPAD) Presentation prepared for the inception and training workshop of the project Assessing Development Strategies

More information

The private long-term care (LTC) insurance industry continues

The private long-term care (LTC) insurance industry continues Long-Term Care Modeling, Part I: An Overview By Linda Chow, Jillian McCoy and Kevin Kang The private long-term care (LTC) insurance industry continues to face significant challenges with low demand and

More information

Multiple steps: Subrogation involves more than 150 activities, tasks, calculations, systems interactions and collaborative inputs over time.

Multiple steps: Subrogation involves more than 150 activities, tasks, calculations, systems interactions and collaborative inputs over time. APPLYING BUSINESS PROCESS MANAGEMENT TECHNOLOGY TO THE PRACTICE OF SUBROGATION: A REVIEW OF REAL-WORLD RECOVERIES AUTOMATION By Dr. John Kendall, Clear Technology, Inc., Westminster, Colorado In the business

More information

An overview of the financial profile fact finder

An overview of the financial profile fact finder An overview of the financial profile fact finder Functions addressed in this document: A step-by-step walk through of the financial profile fact finder. How data entry is presented to the client within

More information

Social Security Planning Strategies

Social Security Planning Strategies Private Wealth Management Products & Services Social Security Planning Strategies Basic Social Security Planning Strategies One of the biggest decisions a retiree and their family will face is when to

More information

Appendix 1V Baby Boomer Contemplating Retirement

Appendix 1V Baby Boomer Contemplating Retirement Checkpoint Contents Federal Library Federal Editorial Materials PPC's Tax and Financial Planning Library Retirement Planning Chapter 1 A Step-by-step Planning Approach Appendix 1V Baby Boomer Contemplating

More information

Murabaha Creation Oracle FLEXCUBE Universal Banking Release [December] [2012] Oracle Part Number E

Murabaha Creation Oracle FLEXCUBE Universal Banking Release [December] [2012] Oracle Part Number E Murabaha Creation Oracle FLEXCUBE Universal Banking Release 12.0.1.0.0 [December] [2012] Oracle Part Number E51465-01 Table of Contents Origination of Murabaha 1. MURABAHA ORIGINATION... 1-1 1.1 INTRODUCTION...

More information

SPAIN According to the Centre for Tax and Policy and Administration, the 2007 AW level is EUR

SPAIN According to the Centre for Tax and Policy and Administration, the 2007 AW level is EUR SPAIN 2007 1. Overview of the tax-benefit system Unemployed persons are covered by two successive benefits: a contributory unemployment insurance benefit for 120-to-720 days depending on contributions,

More information

UPDATED IAA EDUCATION SYLLABUS

UPDATED IAA EDUCATION SYLLABUS II. UPDATED IAA EDUCATION SYLLABUS A. Supporting Learning Areas 1. STATISTICS Aim: To enable students to apply core statistical techniques to actuarial applications in insurance, pensions and emerging

More information

PROJECTED BENEFIT ILLUSTRATIONS IN CONNECTION WITH RETIREMENT PLAN AMENDMENTS. Comment Deadline November 30, 2000

PROJECTED BENEFIT ILLUSTRATIONS IN CONNECTION WITH RETIREMENT PLAN AMENDMENTS. Comment Deadline November 30, 2000 PROPOSED ACTUARIAL STANDARD OF PRACTICE PROJECTED BENEFIT ILLUSTRATIONS IN CONNECTION WITH RETIREMENT PLAN AMENDMENTS Comment Deadline November 30, 2000 Developed by the Pension Committee of the Actuarial

More information

COS 318: Operating Systems. CPU Scheduling. Jaswinder Pal Singh Computer Science Department Princeton University

COS 318: Operating Systems. CPU Scheduling. Jaswinder Pal Singh Computer Science Department Princeton University COS 318: Operating Systems CPU Scheduling Jaswinder Pal Singh Computer Science Department Princeton University (http://www.cs.princeton.edu/courses/cos318/) Today s Topics u CPU scheduling basics u CPU

More information

Marital Disruption and the Risk of Loosing Health Insurance Coverage. Extended Abstract. James B. Kirby. Agency for Healthcare Research and Quality

Marital Disruption and the Risk of Loosing Health Insurance Coverage. Extended Abstract. James B. Kirby. Agency for Healthcare Research and Quality Marital Disruption and the Risk of Loosing Health Insurance Coverage Extended Abstract James B. Kirby Agency for Healthcare Research and Quality jkirby@ahrq.gov Health insurance coverage in the United

More information

EstimatingFederalIncomeTaxBurdens. (PSID)FamiliesUsingtheNationalBureau of EconomicResearchTAXSIMModel

EstimatingFederalIncomeTaxBurdens. (PSID)FamiliesUsingtheNationalBureau of EconomicResearchTAXSIMModel ISSN1084-1695 Aging Studies Program Paper No. 12 EstimatingFederalIncomeTaxBurdens forpanelstudyofincomedynamics (PSID)FamiliesUsingtheNationalBureau of EconomicResearchTAXSIMModel Barbara A. Butrica and

More information

An Analysis of Public and Private Sector Earnings in Ireland

An Analysis of Public and Private Sector Earnings in Ireland An Analysis of Public and Private Sector Earnings in Ireland 2008-2013 Prepared in collaboration with publicpolicy.ie by: Justin Doran, Nóirín McCarthy, Marie O Connor; School of Economics, University

More information

St. Kitts and Nevis Economic Citizenship

St. Kitts and Nevis Economic Citizenship St. Kitts and Nevis Economic Citizenship We provide an all-inclusive service to our clients including reception upon arrival in St. Kitts by our attorney at law and public notary and accompanying the client

More information

Pension projections Denmark (AWG)

Pension projections Denmark (AWG) Pension projections Denmark (AWG) November 12 th, 2014 Part I: Overview of the Pension System The Danish pension system can be divided into three pillars: 1. The first pillar consists primarily of the

More information

Evaluation of the Uganda Social Assistance Grants For Empowerment (SAGE) Programme. What s going on?

Evaluation of the Uganda Social Assistance Grants For Empowerment (SAGE) Programme. What s going on? Evaluation of the Uganda Social Assistance Grants For Empowerment (SAGE) Programme What s going on? 8 February 2012 Contents The SAGE programme Objectives of the evaluation Evaluation methodology 2 The

More information

COS 318: Operating Systems. CPU Scheduling. Today s Topics. CPU Scheduler. Preemptive and Non-Preemptive Scheduling

COS 318: Operating Systems. CPU Scheduling. Today s Topics. CPU Scheduler. Preemptive and Non-Preemptive Scheduling Today s Topics COS 318: Operating Systems u CPU scheduling basics u CPU scheduling algorithms CPU Scheduling Jaswinder Pal Singh Computer Science Department Princeton University (http://www.cs.princeton.edu/courses/cos318/)

More information

Pennyborn s Living Trust Checklist Page 1 of 7 INSTRUCTIONS FOR USING PENNYBORN S LIVING TRUST CHECKLIST

Pennyborn s Living Trust Checklist Page 1 of 7 INSTRUCTIONS FOR USING PENNYBORN S LIVING TRUST CHECKLIST Pennyborn s Living Trust Checklist Page 1 of 7 INSTRUCTIONS FOR USING PENNYBORN S LIVING TRUST CHECKLIST 1. This Checklist only applies to Living Trusts. If you want to make any other type of Trust, do

More information

Introduction. The size of or number of individuals in a population at time t is N t.

Introduction. The size of or number of individuals in a population at time t is N t. 1 BIOL 217 DEMOGRAPHY Introduction Demography is the study of populations, especially their size, density, age and sex. The intent of this lab is to give you some practices working on demographics, and

More information

Enterprise risk management has been

Enterprise risk management has been KJETIL HØYLAND is first vice president in the Department of Asset and Risk Allocation at Gjensidige NOR Asset Management, Norway. kjetil.hoyland@dnbnor.no ERIK RANBERG is senior vice president in charge

More information

Michael Clive Gibson Resume

Michael Clive Gibson Resume Nationality: Australian/British Mobile: +44 (0) 7766642218 Michael Clive Gibson Resume www.gibsonactuarial.com Email: michael_c_gibson@hotmail.com Key Strengths Strong technical skills excellent understanding

More information

Ram M. Pendyala and Karthik C. Konduri School of Sustainable Engineering and the Built Environment Arizona State University, Tempe

Ram M. Pendyala and Karthik C. Konduri School of Sustainable Engineering and the Built Environment Arizona State University, Tempe Ram M. Pendyala and Karthik C. Konduri School of Sustainable Engineering and the Built Environment Arizona State University, Tempe Using Census Data for Transportation Applications Conference, Irvine,

More information

Distribution of state of nature: Main problem

Distribution of state of nature: Main problem State of nature concept Monte Carlo Simulation II Advanced Herd Management Anders Ringgaard Kristensen The hyper distribution: An infinite population of flocks each having its own state of nature defining

More information

Domokos Vermes. Min Zhao

Domokos Vermes. Min Zhao Domokos Vermes and Min Zhao WPI Financial Mathematics Laboratory BSM Assumptions Gaussian returns Constant volatility Market Reality Non-zero skew Positive and negative surprises not equally likely Excess

More information

Heuristics in Rostering for Call Centres

Heuristics in Rostering for Call Centres Heuristics in Rostering for Call Centres Shane G. Henderson, Andrew J. Mason Department of Engineering Science University of Auckland Auckland, New Zealand sg.henderson@auckland.ac.nz, a.mason@auckland.ac.nz

More information

FAILURE RATE TRENDS IN AN AGING POPULATION MONTE CARLO APPROACH

FAILURE RATE TRENDS IN AN AGING POPULATION MONTE CARLO APPROACH FAILURE RATE TRENDS IN AN AGING POPULATION MONTE CARLO APPROACH Niklas EKSTEDT Sajeesh BABU Patrik HILBER KTH Sweden KTH Sweden KTH Sweden niklas.ekstedt@ee.kth.se sbabu@kth.se hilber@kth.se ABSTRACT This

More information

Anne Bracy CS 3410 Computer Science Cornell University

Anne Bracy CS 3410 Computer Science Cornell University Anne Bracy CS 3410 Computer Science Cornell University These slides are the product of many rounds of teaching CS 3410 by Professors Weatherspoon, Bala, Bracy, and Sirer. Complex question How fast is the

More information

Homeowners Ratemaking Revisited

Homeowners Ratemaking Revisited Why Modeling? For lines of business with catastrophe potential, we don t know how much past insurance experience is needed to represent possible future outcomes and how much weight should be assigned to

More information