To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Freivalds' algorithm

From Wikipedia, the free encyclopedia

Freivalds' algorithm (named after Rūsiņš Mārtiņš Freivalds) is a probabilistic randomized algorithm used to verify matrix multiplication. Given three n × n matrices , , and , a general problem is to verify whether . A naïve algorithm would compute the product explicitly and compare term by term whether this product equals . However, the best known matrix multiplication algorithm runs in time.[1] Freivalds' algorithm utilizes randomization in order to reduce this time bound to [2] with high probability. In time the algorithm can verify a matrix product with probability of failure less than .

YouTube Encyclopedic

  • 1/5
    Views:
    38 885
    1 367
    12 821
    431 075
    2 447
  • 6. Randomization: Matrix Multiply, Quicksort
  • Great Ideas in Theoretical Computer Science: Randomized Algorithms (Spring 2016)
  • Randomized algorithms lecture #2 - birthday paradox, random shuffle, hashing
  • 2.9 Strassens Matrix Multiplication
  • Interactive Proofs (Part I)

Transcription

The algorithm

Input

Three n × n matrices , , and .

Output

Yes, if ; No, otherwise.

Procedure

  1. Generate an n × 1 random 0/1 vector .
  2. Compute .
  3. Output "Yes" if ; "No," otherwise.

Error

If , then the algorithm always returns "Yes". If , then the probability that the algorithm returns "Yes" is less than or equal to one half. This is called one-sided error.

By iterating the algorithm k times and returning "Yes" only if all iterations yield "Yes", a runtime of and error probability of is achieved.

Example

Suppose one wished to determine whether:

A random two-element vector with entries equal to 0 or 1 is selected – say  – and used to compute:

This yields the zero vector, suggesting the possibility that AB = C. However, if in a second trial the vector is selected, the result becomes:

The result is nonzero, proving that in fact AB ≠ C.

There are four two-element 0/1 vectors, and half of them give the zero vector in this case ( and ), so the chance of randomly selecting these in two trials (and falsely concluding that AB=C) is 1/22 or 1/4. In the general case, the proportion of r yielding the zero vector may be less than 1/2, and a larger number of trials (such as 20) would be used, rendering the probability of error very small.

Error analysis

Let p equal the probability of error. We claim that if A × B = C, then p = 0, and if A × BC, then p ≤ 1/2.

Case A × B = C

This is regardless of the value of , since it uses only that . Hence the probability for error in this case is:

Case A × BC

Let such that

Where

.

Since , we have that some element of is nonzero. Suppose that the element . By the definition of matrix multiplication, we have:

.

For some constant . Using Bayes' theorem, we can partition over :

 

 

 

 

(1)

We use that:

Plugging these in the equation (1), we get:

Therefore,

This completes the proof.

Ramifications

Simple algorithmic analysis shows that the running time of this algorithm is (in big O notation). This beats the classical deterministic algorithm's runtime of (or if using fast matrix multiplication). The error analysis also shows that if the algorithm is run times, an error bound of less than can be achieved, an exponentially small quantity. The algorithm is also fast in practice due to wide availability of fast implementations for matrix-vector products. Therefore, utilization of randomized algorithms can speed up a very slow deterministic algorithm.

Freivalds' algorithm frequently arises in introductions to probabilistic algorithms because of its simplicity and how it illustrates the superiority of probabilistic algorithms in practice for some problems.

See also

References

  1. ^ Virginia Vassilevska Williams. "Breaking the Coppersmith-Winograd barrier". CiteSeerX 10.1.1.228.9947.
  2. ^ Raghavan, Prabhakar (1997). "Randomized algorithms". ACM Computing Surveys. 28: 33–37. doi:10.1145/234313.234327. S2CID 207196543. Retrieved 2008-12-16.
This page was last edited on 12 August 2023, at 15:40
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.