Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Revised 13th Edition>

Instance

Hauck Investment Services designs annuities, IRAs, 401(k) plans, and other investment vehicles for investors with a variety of risk tolerances. Hauck would like to develop a portfolio model that can be used to determine an optimal portfolio involving a mix of six mutual funds. A variety of measures can be used to indicate risk, but for portfolios of financial assets all are related to variability in return. Table 5.4 shows the annual return (%) for five 1-year periods for the six mutual funds. Year 1 represents a year in which the annual returns are good for all the mutual funds. Year 2 is also a good year for most of the mutual funds. But year 3 is a bad year for the small-cap value fund; year 4 is a bad year for the intermediate-term bond fund; and year 5 is a bad year for four of the six mutual funds.

It is not possible to predict exactly the returns for any of the funds over the next 12 months, but the portfolio managers at Hauck Financial Services think that the returns for the five years shown in Table 5.4 are scenarios that can be used to represent the possibilities for the next year. For the purpose of building portfolios for their clients, Hauck’s portfolio managers will choose a mix of these six mutual funds and assume that one of the five possible scenarios will describe the return over the next 12 months.

Soultion-Conservative Portfolio

The manager’s task is to determine the proportion of the portfolio to invest in each of the six mutual funds so that the portfolio provides the best return possible with a minimum risk.

Decision variables:

FS = proportion of portfolio invested in the foreign stock mutual fund
IB = proportion of portfolio invested in the intermediate-term bond fund
LG = proportion of portfolio invested in the large-cap growth fund
LV = proportion of portfolio invested in the large-cap value fund
SG = proportion of portfolio invested in the small-cap growth fund
SV = proportion of portfolio invested in the small-cap value fund


Soultion-Moderate Risk Portfolio

Hauck’s portfolio manager would like to also construct a portfolio for clients who are willing to accept a moderate amount of risk in order to attempt to achieve better returns. Suppose that clients in this risk category are willing to accept some risk but do not want the annual return for the portfolio to drop below 2%. By setting M 2 in the minimum-return constraints in the maximin model, we can constrain the model to provide a solution with an annual return of at least 2%.

A different objective is needed for this portfolio optimization problem. A common approach is to maximize the expected value of the return for the portfolio. For instance, if we assume that the planning scenarios are equally likely, we would assign a probability of 0.20 to each scenario.

The formulation we have developed for a moderate risk portfolio can be modified to
account for other risk tolerances. If an investor can tolerate the risk of no return, the righthand
sides of the minimum-return constraints would be set to 0. If an investor can tolerate
a loss of 3%, the right-hand side of the minimum-return constraints would be set equal
to –3.

Lingo 做线性规划 - Asset allocation and Portfolio models的更多相关文章

  1. Lingo 做线性规划 - Financial Applications

    Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Rev ...

  2. Lingo 做线性规划 - Game Thoery

    Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Rev ...

  3. Lingo 做线性规划 - Revenue Management

    Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Rev ...

  4. Lingo 做线性规划 - DEA

    Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Rev ...

  5. Lingo 做线性规划 - Operation Management Applications

    Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Rev ...

  6. Lingo 做线性规划 - Marketing Applications

    Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Rev ...

  7. Lingo求解线性规划案例4——下料问题

    凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 造纸厂接到定单,所需卷纸的宽度和长度如表 卷纸的宽度 长度 5 7 9 10000 30000 20000 工 ...

  8. Lingo求解线性规划案例1——生产计划问题

    凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/ 说明: Lingo版本:                            某工厂明年根据合同,每个季度末 ...

  9. Lingo求解线性规划案例3——混料问题

    凯鲁嘎吉 - 博客园 http://www.cnblogs.com/kailugaji/  某糖果厂用原料A.B和C按不向比率混合加工而成甲.乙.丙三种糖果(假设混合加工中不损耗原料).原料A.B.C ...

随机推荐

  1. ORACLE object_id和data_object_id

    object_id和data_object_id 都是对象的唯一标识. object_id是对象的逻辑标识 data_object_id是对象的物理标识 对于没有物理存储的对象,data_object ...

  2. Ubuntu中vi常用命令

    在Ubuntu中经常需要修改某些文件,这里对vi中的一些常用操作作一下总结. 1.进入vi命令 vi filename: 打开或新建文件,并将光标置于第一行首 进入文件后,处于命令行模式(comman ...

  3. [Swift]基础

    [Swift]基础 一, 常用变量 var str = "Hello, playground" //变量 let str1="Hello xmj112288" ...

  4. 【BootStrap】 基础

    [BootStrap] 基础 一. 自适应(针对不同设备如手机平板笔电,使页面的宽度适应设备宽度) <meta name="viewport" content="w ...

  5. MVC学习地址

    http://www.cnblogs.com/n-pei/tag/Asp.net%20MVC/

  6. STS 代码提示快捷键 和 注解提示的修改

    window->Preferences window->Preferences

  7. js之正则1

      在看jquery的源码时,看到对$对象的init入口对参数解析时,正则的迷惑. 疑惑点:z = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/ a = ...

  8. linux links and lynx

    接下来,说一下links 和 lynx 的一些基本操作,首先你,需要安装这俩个软件 yum install links yum install lynx links links的功能键 一些常见功能按 ...

  9. codeforces 420B Online Meeting

    一道实现很蛋疼的题.必须静下理清思路,整理出各种情况.不然就会痛苦地陷入一大堆if..else里不能自拔. #pragma comment(linker, "/STACK:102400000 ...

  10. python 字符串函数

    split函数:将字符串分割成序列 str.split("分隔符") 一般可以这样用 list = [n  for n in str.split],这样可以得到一个新的序列 str ...