Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
All published worksheets from http://sagenb.org
Image: ubuntu2004
Discrete Log Problem:
The general problem is this: Given , solve for . This is easy for real numbers ... just use the logarithm.
Example: Find the number if .
Solution: We quickly find that (as seen in below computations).
Note: SAGE uses a rapidly-converging infinite series to compute approximations for . In other words, this computation is EASY for a computer to do. This should be expected, though, by looking at the following graph of . Notice how (1) smooth; and (2) predictable it is.
On the other hand, things get more difficult with computing "discrete" logarithms (i.e., logarithms in modular arithmetic).
Here is the formal statement of the "discrete log problem":
Discrete Log Problem: Let be a finite field (such as for some prime number ). Given and a power of , find a positive integer so that .
This is a VERY difficult problem in practice. The reason is that the (minimum) logarithm of a number mod bounces quite randomly. This behavior is illustrated in the following plot:
Fortunately (or unfortunately, depending on your perspective), there is an inefficient algorithm for computing a discrete log. We'll call this the "Brute Force" Algorithm. Simply, you try , , , etc. until you find the correct exponent so that .
Consider the following example: Find so that .
The brute force approach would be to calculate , , , until you get 18 (remember to work mod 23). SAGE can help with this:
Note: it will take a while, but you'll finally find the correct exponent:
The downside to this approach is that when is large, computing the discrete log this way soon becomes quite impractical, because increasing the number of digits of the modulus makes the computation take MUCH longer.
Note: you can save some time from having to input one computation at a time by simply constructing a FOR loop. Guess at an upper bound for your unknown power , and iterate the reduction over n=0, 1, 2, ... up to your upper bound. Then, print the results of each computation and inspect the list for the correct answer. If it doesn't show up, increase your upper bound and try again.
The previous example can be seen below. Notice that for exponent , the answer is 18, just as before.