Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. You are a software developer working for a certain network security company. Your team has been tasked with developing a program to establish a baseline of network usage, produce a graphical report and approximate a mathematical function for the data. Currently, you are working on developing the reporting functionality, which should include times when network usage was abnormal. What are two ways, using calculus and without, to implement this feature? Which implementation is more efficient? Assume that any fluctuations in the baseline will result in the same value and that the baseline cannot be represented as a mathematical function (it would be too easy...).
  2. (Non-calculus) Compare two values f(t) at t. The lesser f(t) is ignored and the larger f(t) is compared to the next f(t). Iterate for all values of t in the report.
  3. (Calculus) Find the max(es) of the function by differentiating and setting f'(t) equal to 0, then solving for t.
  4. The Calculus-based implementation is more efficient because it involves less operations.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement