answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Natalija
1 month ago
14

Your employer, yPlum Corporation is manufacturing two types of products: Mirabelle smartphone, and Blackamber laptop. The compan

y has a well-established position on the phone market, but has recently decided to conquer the PC market with its new product - Blackamber workstation. YPlum has very ambitious plans and is determined to become a significant player in the computer market, while maintaining its strong position in the smartphone area.Your task is to find a product mix that would maximize yPlum's profits in the next month. Since you always had interest in accounting and financial analysis, you have quickly identified the relevant information. On average, it costs the company $250 to manufacture the Mirabelle phone, and $700 to produce the Blackamber. The products are being sold for $650 and $1200 respectively. After exchanging emails with your supply chain group, you have established that the phone requires 50 days of labor, while the laptop - 70 days. The computers take longer to produce because the customers can build their own setups. Your total manufacturing capacity is 160,000 working days. Your annual materials budget is set at $12,000,000. Finally, the company's executives expect that yPlum will sell at least 1 million phones and 0.5 million computers next month.Find the optimal mix of product quantity that would maximize yPlum profits. Submit the Excel file with your solution.

Computers and Technology
1 answer:
Natasha_Volkova [1K]1 month ago
7 0

Answer:

Refer to the explanation

Explanation:

Number of Mobiles=x1

Number of Workstations=x2

Constraints:

50x1 + 70x2 <= 1,60,000

250x1 + 700x2 <= 12,000,000

x1 >= 0 x2 >= 0

Objective function N(x1, x2) = 7800000000 x1 + 7200000000 x2

Excel formulae:

G17 = D9 * E7 + F9 * G7

G18= D10 * E7 * F10 * G7

G19= E7

G20= G7

G21= I17 * E7 + I18 * G7 (This will yield the Maximum)

And E7 and G7 will be the solution.

Set up your sheet as shown in the diagram and apply the formulas.

Access the tool and select solver. Upon opening the Solver dialog, confirm ‘Assume Linear model’ and ‘assume non-negative’. Click to solve the model and keep the solution.

You might be interested in
Start with the following Python code. alphabet = "abcdefghijklmnopqrstuvwxyz" test_dups = ["zzz","dog","bookkeeper","subdermatog
maria [1035]

Answer:

alphabet = "abcdefghijklmnopqrstuvwxyz"

test_dups = ["zzz","dog","bookkeeper","subdermatoglyphic","subdermatoglyphics"]

test_miss = ["zzz","subdermatoglyphic","the quick brown fox jumps over the lazy dog"]

# From Section 11.2 of: # Downey, A. (2015). Think Python: How to think like a computer scientist. Needham, Massachusetts: Green Tree Press.

def histogram(s):

d = dict()

for c in s:

if c not in d:

d[c] = 1

else:

d[c] += 1

return d

#Part 1 Construct a function, called has_duplicates, that takes a string argument and returns True if there are any repeating characters present. If not, it should return False.

def has_duplicates(stringP):

dic = histogram(stringP)

for key,value in dic.items():

if value>1:

return True

return False

# Execute has_duplicates by building a histogram using the above histogram function. Implement a loop over the items in the test_dups list.

# Display each string and indicate whether it has duplicates based on the has_duplicates function's result for that string.

# For instance, the expected output for "aaa" and "abc" would be shown below. aaa has duplicates abc has no duplicates Display a similar message for each string within test_dups.

print("***Implementation of has_duplicates function***")

for sTr in test_dups:

if has_duplicates(sTr):

print(sTr+": has duplicates")

else:

print(sTr+": has no duplicates")

#Part 2 Develop a function named missing_letters that takes a string argument and returns a new string containing all alphabet letters absent from the input string.

#The letters in the resultant string should be arranged in alphabetical order. Your implementation must utilize the histogram from the previous function and should reference the global alphabet variable directly.

#It should iterate over the alphabet letters to figure out which are missing from the input string.

#The function missing_letters should merge the list of missing letters into a string and return it.

def missing_letters(sTr):

missingLettersList = []

dic = histogram(sTr)

for l in alphabet:

if l not in dic:

missingLettersList.append(l)

missingLettersList.sort()

return "".join(missingLettersList)

#Iterate over the strings in the test_miss list and invoke missing_letters for each one. Present a line for each string outlining the missing letters.

#For example, for the string "aaa", the output should be as follows. aaa is missing letters bcdefghijklmnopqrstuvwxyz

#Should the string encompass all alphabet letters, the output should indicate that it utilizes all the letters.

#For instance, output for the alphabet string itself would be: abcdefghijklmnopqrstuvwxyz uses all the letters

#Generate a similar line for each item in test_miss.

print("\n***Implementation of missing_letters function***")

for lTm in test_miss:

sTr = missing_letters(lTm.replace(" ",""))

if sTr!="":

print(lTm+" is missing letters "+sTr)

else:

print(lTm +" uses all the letters")

3 0
3 months ago
Find true or false. A hacker is hacking software with access in sensitive information from your computer​
Harlamova29_29 [1022]
IT'S CORRECT!! I LOOKED IT UP
7 0
2 months ago
Debug the program so it prints the factorial of a positive integer entered by the user. This is calculated by multiplying all th
Natasha_Volkova [1026]
The primary issue was declaring int prod within the while loop, which caused prod to reset to 1 each time the loop executed.
3 0
2 months ago
c++ 2.30 LAB: Phone number breakdown Given a long long integer representing a 10-digit phone number, output the area code, prefi
oksian1 [950]

Answer:

#include <iostream>

using namespace std;

int main()

{

   // Declare variables to hold entire phone number and its components

   long phone_number;

   int area_code, prefix, line_number;

   cout << "Enter 10-digit phone number:" << endl;

   // Take 10-digit phone number input

   cin >> phone_number;

   // Extract area code, prefix, and line number

   area_code = phone_number / 10000000;

   prefix = (phone_number / 10000) % 1000;

   line_number = phone_number % 10000;

   // Output phone number in desired hyphen-separated format

   cout << area_code << "-" << prefix << "-" << line_number << endl;

   return 0;

}

Output:

Enter 10-digit phone number:

8005551212

800-555-1212

Explanation:

The program takes a 10-digit phone number input from the user and stores it in the variable phone_number.

Using division and modulus operations, it separates the phone number into three parts:

area_code = phone_number / 10000000;

prefix = (phone_number / 10000) % 1000;

line_number = phone_number % 10000;

Finally, the program prints these parts joined by hyphens.

5 0
3 months ago
Other questions:
  • Accenture is helping a large retailer transform their online sales and services. The Data Analyst audits the client’s customer j
    12·1 answer
  • Which of the following statements is true regarding input and output?
    12·2 answers
  • A client is currently struggling with late-stage integration and manual deployments. They want to find another method that will
    5·1 answer
  • Strlen("seven"); what is the output?
    14·1 answer
  • How concerned are you about the security of rtos in cars smart homes and wearable technology?
    15·1 answer
  • Write a statement that reads a floating point value from standard input into temperature. Assume that temperature. has already b
    6·1 answer
  • Imagine you were using some of our pixelation tools to create an image and you posted it online for your friends to see - but, a
    11·1 answer
  • Sarah works in a coffee house where she is responsible for keying in customer orders. A customer orders snacks and coffee, but l
    13·2 answers
  • Return 1 if ptr points to an element within the specified intArray, 0 otherwise.
    7·1 answer
  • Laura has identified the job she wants, the skills needed for the position, and the areas she needs to improve in order to get i
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!