Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
beatriz fuertes

beatriz f.

Divider

Questions asked

BEST MATCH

2. [9 points] Suppose $\triangle ABC$ is an isosceles triangle inscribed in the circle, with $AB = AC$. If BD is a diameter, find the measures of $\angle 1$, $\angle 2$, $\angle 3$, and $\angle 4$ in terms of $\theta$. Note $\theta = \angle ACB$.

View Answer
divider
BEST MATCH

Is 8 capsules contain 110 mg how much would you need for 13 capsules

View Answer
divider
BEST MATCH

Which is greater, an acceleration from 16 km/h to 23 km/h or an acceleration from 80 km/h to 84 km/h if both occur during the same time?

View Answer
divider
BEST MATCH

A field has been completely devastated by fire. Two types of vegetation, grasses, and small shrubs will first begin to grow, but the small shrubs can take over an area only if preceded by the grasses. In FIGURE below, the transfer coefficient of 0.3 indicates that, by the end of the summer, \( 30 \% \) of the prior bare space in the field becomes occupied by grasses. (a) Find the transfer matrix \( \mathbf{T} \). (b) Suppose \( \mathbf{X}=\left(\begin{array}{r}10 \\ 0 \\ 0\end{array}\right) \) and that area is measured in acres. Use the recursion formula \( \mathbf{X}_{n+1}=\mathbf{T} \mathbf{X}_{n} \), along with a calculator or a CAS, to determine the ground cover in each of the next 6 years. (C) What happens after a long time? Justify your answer by showing a mathematical proof. (MATRIX Diagonalization.)

View Answer
divider
BEST MATCH

Find the slope of the tangent line for the curve $r = -3 - 4 \cos \theta$ when $\theta = \frac{\pi}{2}$.

View Answer
divider
BEST MATCH

Current Attempt in Progress An oscillator consists of a block of mass 0.609 kg connected to a spring. When set into oscillation with amplitude 23 cm, the oscillator repeats its motion every 0.405 s. Find the (a) period, (b) frequency, (c) angular frequency, (d) spring constant, (e) maximum speed, and (f) magnitude of the maximum force on the block from the spring. (a) Number Units

View Answer
divider
BEST MATCH

Estimate the values of the derivatives with the following characteristics using Binomial Trees with 20 steps (time steps). a. European and American call options with underlying asset IBM stock with today price S0=$60, strike price X=59, risk-free rate r=6%, dividend yield d=4% and time to maturity T=1. The volatility of the stock is 23.7%. What do you notice? What would we observe if d=0? [25%] b. Suppose we have one more asset, that of Microsoft with today's value V0=70, dividend yield d=5% and standard deviation σ=20%. The risk-free rate remains the same. To estimate the price of a derivative with the highest payoff (maximum) from the two underlying assets, IBM and Microsoft stocks (Margrabe 1978). [25%] 2. The cash-or-nothing call option pays zero if the stock price at expiration derivative is below the strike price, and pays a fixed amount Q if the stock price at the expiration of the derivative is above the strike price. Using Binomial Trees with 10 steps (time steps) to estimate the value of one cash-or-nothing call option with underlying asset IBM stock and Q equal to $55. [25%] 3. A compound option is an option with an underlying asset another option with a different underlying asset (option on option). The exercise price of a compound option is a function of the value of the other option. Thus there are 2 strike prices (X1 and X2) and 2 maturities (T1 and T2), one for each option. If X1 and X2 are 2 and 8 respectively, and T1 and T2 are 1 and 2 years respectively, calculate the value of the compound option with underlying asset of the second option, the IBM stock with the data of 1a. Both options are European.

View Answer
divider
BEST MATCH

Points Consider two firms that are identical in every way except that one has $1,600.00 of debt and 675 shares of stock outstanding, while the other is all-equity and has 750 shares of stock outstanding. Assume that the debt is a perpetuity with annual coupons at the rate of 9%. What is each firms' earnings per share if EBIT is $2,600? Assume a tax rate of 20%. Leveraged Firm All-Equity Firm EBIT $2,600 $2,600 EPS What is the earnings per share (EPS) of the leveraged firm if EBIT is $2,600? What is the earnings per share (EPS) of the all-equity firm if EBIT is $2,600?

View Answer
divider
BEST MATCH

Let A be an alphabet consisting of 8 letters. How many different strings of length 3 can be formed over this alphabet? There is no restriction on how often a particular letter appears in a string.

View Answer
divider
BEST MATCH

1 #include <iostream> 2 #include <vector> 3 using namespace std; 4 5 int main() { 6 const int NUM_VALS = 4; 7 int matchValue; 8 unsigned int i; 9 int numMatches = -99; // Assign numMatches with 0 before your for loop 10 vector<int> userValues(NUM_VALS); 11 12 cin >> matchValue; 13 14 for (i = 0; i < userValues.size(); ++i) { 15 cin >> userValues.at(i); 16 } 17 18 /* Your solution goes here */ 19 20 21 cout << "matchValue: " << matchValue << ", numMatches: " << numMatches << endl; 22 23 return 0; 24 }

View Answer
divider