Question

In: Computer Science

One share of Global Core Development Systems, Inc (an imaginary company with the abbreviation: Go-CDS) stock...

One share of Global Core Development Systems, Inc (an imaginary company with the abbreviation: Go-CDS) stock was priced at $14.31 on January 1, 2015. Your tasking in this problem is to determine how long does it take for a stockholder to double their money who has invested in Go-CDS? In other words, how long until the price per share has doubled.

Here are some facts about Go-CDS:

  • Very stable company with a proven track record of manufacturing.
  • The normal growth of Go-CDS's stock has averaged a monthly growth rate of 0.5000% in the share price. (This means that the price per share goes up by 0.5000% each month over the last month's price.)
  • Beginning in March 2015, each time Go-CDS releases a quarterly report (on the 15th of the months of March, June, September and December each year), the stock share price increased immediately by 4.3000% due to the continuing, favorable outlook for Go-CDS's products in the marketplace. This trend continues throughout the time period.
  • Due to a merger with another manufacturing company in the 19th month after 1/1/2015, the monthly growth rate increased to 1.4000% until the end of THAT calendar year (the last month of that year is the 24th month). Since then, the monthly growth rate increased to 2.3000% per month.
  • Unfortunately, due to a bad set of business decisions in 2017, the Board fired the CEO which instantly cut the share price on January 5, 2017 to $3.58 (the 25th month). A new CEO was immediately hired on January 10, 2017.
  • The company growth rate reset to 0.9500% per month after the new CEO was hired due to bad press.

Problem: Write a MATLAB program to solve the following questions:

Question 1:

In what month does the stock exceed 2 times the price of $14.31?

Question 2:

Prepare a plot of the stock's per-month price movement over the course starting from the first month of year 2017 until the price has exceeded 2 times the price of $14.31. (You plot should start from month 25, and should cover the month that is the answer to Question #1.) You will need to adjust the plot routine to ONLY show these months.

To limit the plot to these months, add the following command after your xlabel and ylabel commands:

axis ([25, 41, 20, 30])
xticks (0:4:length(P))
yticks (0:2:30)

How do I code this is MATLAB?

Solutions

Expert Solution

% Global Core Develpment System

%stock pric variable sp_initial and variable t forc storing the month count from
%1/Jan/2015
sp_initial = 32.50;
t(1) = 1;
sp(1) = sp_initial;
monthly_rate = 0.001; % 0.1percent growth rate = 0.001
quarter_rate = 0.045; %4.5percent quaterly increase
%growth in first 16 month before merger on 17th month
for i = 2:16
t(i) = i;
sp(i) = sp(i-1)*(1 + monthly_rate);
  
if(mod(i,3) == 0)
sp(i) = sp(i) * (1 + quarter_rate);
end
end
%merger growth in 17th month to 24th month (end of year)
monthly_rate = 0.0115;
for i = 17:24
t(i) = i;
sp(i) = sp(i-1)*(1 + monthly_rate);
  
if(mod(i,3) == 0)
sp(i) = sp(i) * (1 + quarter_rate);
end
end

% from 25th month that is the new year monthly growth rate is 1.25%
monthly_rate = 0.0125;
for i = 25:34
t(i) = i;
sp(i) = sp(i-1)*(1 + monthly_rate);
  
if(mod(i,3) == 0)
sp(i) = sp(i) * (1 + quarter_rate);
end
end
%in 34th month CEO gets fired and stock price are by $15 and new monthly
%rate is 1.05 percent
sp(34) = sp(34) - 15;
monthly_rate = 0.0105;
for i = 35:60
t(i) = i;
sp(i) = sp(i-1)*(1 + monthly_rate);
  
if(mod(i,3) == 0)
sp(i) = sp(i) * (1 + quarter_rate);
end
end

figure
plot(t,sp)
axis([25,49,50,70])
text(40,52,'Note: Price as of 1st of the month')
xlabel('Months from Jan/2015')
ylabel('Stock Share Price($)')

%Answer 1 month when price dobles as of initial stock price
for i =1:50
  
if(sp(i) >= 2*sp_initial)
fprintf('The Month when the share price doubled is: %d \n', i);
break;
end
  
end


Related Solutions

Compare and contrast an information systems development project in a global setting to one in a...
Compare and contrast an information systems development project in a global setting to one in a single country. What unique challenges must be overcome when using information technology to support global operations of a business? 200 Words please.
Marco owns one share of stock of Platinum Water Media and one share of stock of...
Marco owns one share of stock of Platinum Water Media and one share of stock of Silver Sun Consulting. The total value of his holdings is 118.33 dollars. Both stocks pay annual dividends that are expected to continue forever. The expected return for Platinum Water Media stock is 14.42 percent and its annual dividend is expected to remain at 7.13 dollars forever. What is the expected return for Silver Sun Consulting stock if its next dividend is expected to be...
Eli owns one share of stock of Indigo River Media and one share of stock of...
Eli owns one share of stock of Indigo River Media and one share of stock of Red Royal Entertainment. The total value of his holdings is 174.83 dollars. Both stocks pay annual dividends that are expected to continue forever. The expected return for Indigo River Media stock is 15.8 percent and its annual dividend is expected to remain at 13.81 dollars forever. What is the expected return for Red Royal Entertainment stock if its next dividend is expected to be...
Pick one period of development. Share one example of an observation you made of someone's development...
Pick one period of development. Share one example of an observation you made of someone's development (not yourself) during that stage of development. Is your example physical, cognitive, or psychosocial?
1. a) Training and Development (T&D) is one of the core functions of HRD professionals. As...
1. a) Training and Development (T&D) is one of the core functions of HRD professionals. As a level 300 student of Human Resource Management, you have probably participated in a T&D programme in School or elsewhere. Describe your experience as a participant of the T&D programme in question. Make sure your description follows the order of activities at the programme. Ensure also that the name, purpose, objectives, activities, and other details of the various stages of the programme are reflected...
Dividends Per Share Lightfoot Inc., a software development firm, has stock outstanding as follows: 25,000 shares...
Dividends Per Share Lightfoot Inc., a software development firm, has stock outstanding as follows: 25,000 shares of cumulative preferred 3% stock, $25 par, and 31,000 shares of $75 par common. During its first four years of operations, the following amounts were distributed as dividends: first year, $7,250; second year, $11,750; third year, $61,120; fourth year, $99,970. Calculate the dividends per share on each class of stock for each of the four years. Round all answers to two decimal places. If...
Dividends Per Share Lightfoot Inc., a software development firm, has stock outstanding as follows: 15,000 shares...
Dividends Per Share Lightfoot Inc., a software development firm, has stock outstanding as follows: 15,000 shares of cumulative preferred 4% stock, $20 par, and 19,000 shares of $125 par common. During its first four years of operations, the following amounts were distributed as dividends: first year, $4,500; second year, $7,500; third year, $39,960; fourth year, $66,340. Calculate the dividends per share on each class of stock for each of the four years. Round all answers to two decimal places. If...
Cisco stock price is $20 per share now. Investor A expects the stock price to go...
Cisco stock price is $20 per share now. Investor A expects the stock price to go up because of the 5G technology breakthrough. With $10,000 available, investor A will choose from the following alternative investment strategies to make profit from the price change. 1) He will invest all the money buying Cisco stocks at the current price $20. In one month, if the stock price of Cisco increases to $25, what is his total dollar amount profit? (4 points) 2)...
JP Inc. is a small company in the business of producing and selling musical CDs and...
JP Inc. is a small company in the business of producing and selling musical CDs and cassettes and it is also involved in promoting concerts. JP`s stock has been listed on the NASDAQ for the last two years and is trading at twice the book value of equity. (The book value of equity is $120M). JP derives 75% of its total market value from its record/CD business and 25% from the concert business. While the price data on the company...
select one (1) organization that successfully went global and adopted global information systems. Then, explain the...
select one (1) organization that successfully went global and adopted global information systems. Then, explain the overall manner in which the organization in question has benefited from its globalization. Include at least two (2) examples of such benefits to support your response.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT