Predict Digits of Irrational Numbers with Modular Arithmetic Summation?

In summary, the conversation discusses the possibility of writing an equation that utilizes a summation of a modular function of a Cartesian function to predict the digits less than 1 of the root of a number. The conversation also brings up the use of the floor function to strip away the integer part of a number. It is suggested that some programming languages have floor() and ceil() as part of their standard libraries.
  • #1
Chrono G. Xay
92
3
Would it be possible to write an equation utilizing a summation of a modular function of a Cartesian function, whose degree is dependent upon the index of the root, in that it predicts the digits less than 1 of the root, that when summed equals the computed value sqrt( n )?

I already have what feels like a basis upon which to start,

[Summation; x=1, (inf)] \frac{(integer(f(x))mod10)}{10x}

in that it would return such values as...

0.1 + 0.02 + 0.003 + 0.0004

but am having trouble coming up with an algorithm which would strip away, for example, the 1.0 from 1.732... in sqrt( 3 ) .

It seems as though even if such a thing were doable, it would have been nice to be able to say that, with the appropriate formulae for f(x), for one, it could compute the digits of any irrational number, except that for non-root irrational numbers, such as e, θ, φ, etc. the index is arguably one (given π is obtained from a quotient, and e is obtained from the limit of an exponential...)[/sup]
 
Last edited:
Mathematics news on Phys.org
  • #2
Chrono G. Xay said:
but am having trouble coming up with an algorithm which would strip away, for example, the 1.0 from 1.732... in sqrt( 3 ) .
Use the floor function, also called the greatest integer function, and written as ##\lfloor x \rfloor##. The greatest integer in x is the largest integer that is less than or equal to x. For example, ##\lfloor 1.732 \rfloor = 1##.

To strip off the integer part, use ##x -\lfloor x \rfloor##. Some programming languages have floor() and ceil() as part of their standard libraries.
 
  • #3
Ok. I thought that might have been it, but at the same time it felt like it might have been incorrect because I would be using a term of sqrt( x ), similar to

y = 2x - | y | ...

Ok, so now we have

n^(1/m) = floor(n^(1/m)) + (Summation; x=1, (inf)] \frac{(integer(f(x))mod10)}{10x} ...

Then again, shouldn't the greatest integer also be predictable by such an equation?
 

1. What is modular arithmetic summation?

Modular arithmetic summation is a mathematical operation that involves finding the remainder when dividing two numbers. It is often used in cryptography and number theory, and is denoted by the symbol "mod".

2. Why is modular arithmetic useful for predicting digits of irrational numbers?

Modular arithmetic is useful for predicting digits of irrational numbers because it allows us to work with large numbers and still only focus on the remainder, which can provide valuable insight into the pattern and structure of the numbers.

3. Can modular arithmetic be used to predict any type of irrational number?

Yes, modular arithmetic can be used to predict digits of any type of irrational number, as long as it follows a pattern and can be expressed as a sum of modular arithmetic operations.

4. How accurate are predictions made using modular arithmetic summation?

The accuracy of predictions made using modular arithmetic summation depends on the complexity of the number and the precision of the calculations. In general, the more terms used in the summation, the more accurate the prediction will be.

5. Are there any limitations to using modular arithmetic for predicting digits of irrational numbers?

One limitation of using modular arithmetic for predicting digits of irrational numbers is that it can only provide a finite number of digits. Additionally, the accuracy of the predictions may decrease for extremely complex or random numbers.

Similar threads

Replies
1
Views
1K
Replies
25
Views
3K
Replies
14
Views
3K
  • Calculus and Beyond Homework Help
Replies
2
Views
1K
Replies
1
Views
2K
  • General Math
4
Replies
125
Views
16K
Replies
2
Views
2K
  • Math Proof Training and Practice
3
Replies
86
Views
19K
  • General Math
Replies
3
Views
4K
Back
Top