If the manufacturers chosen by Brad, Danny and Sam are using a specific algorithm they are likely to be using an economic order quantity (EOQ).
The economic order quantity can be described as the maximum or the optimal quantity that would help a company to reduce its total costs in terms of ordering and receiving inventory
The question says that the three persons are using an algorithm to know the quantity of inventory that they are to order.
Read more on brainly.com/question/25075133?referrer=searchResults
Answer:
Not all people but sometimes it happens
Answer:
H=(A*D)-(B*(D-1))
H = A*D- B*D+B
H-B = (A-B)*D
D= (H-B)/(A-B)
Python 3 code
import math
H=int(input('Enter Height: '))
up=int(input('Enter Number of Feet Up: '))
down=int(input('Enter Number of Feet Down: '))
D=(H-down)/(up-down)
print(math.ceil(D),' Days'
Explanation:
The output of the Program is given in the attached file.
Charles Bacheman invented the DBMS