Question: Project Activity 8 . 4 . We introduce a little notation to help us describe the efficiency of our cal - culations. We won't be

Project Activity 8.4. We introduce a little notation to help us describe the efficiency of our cal-culations. We won't be formal with this notation, rather work with it in an informal way, Big O (the letter "O") notation is used to describe the complexity of an algorithm. Generally speaking. in computer science big O notation can be used to describe the run time of an algorithm, the space used by the algorithm, or the number of computations required. The letter "O" is used because the behavior described is also called the order. Big O measures the asymptotic time of an algorithm, not its exact time. For example, if it takes 6n?- n +8 steps to complete an algorithm, then we say that the algorithm grows at the order of n?(we ignore the constants and the smaller power terms, since they become insignificant as n increases) and we describe its growth as On?). To measure the efficiency of an algorithm to determine a matrix product, we will measure the number of operations it takes to calculate the product.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!