Predict Digits of Irrational Numbers with Modular Arithmetic Summation?

AI Thread Summary
The discussion explores the possibility of using a summation of a modular function to predict the digits of irrational numbers, particularly focusing on the digits less than 1 of the square root of a number. A proposed equation involves a summation that returns fractional values, but challenges arise in developing an algorithm to remove the integer part from the result, such as in the case of sqrt(3). The use of the floor function is suggested as a method to isolate the fractional component, allowing for a clearer representation of the irrational digits. There is also contemplation on whether the greatest integer could be predicted by the same equation. Overall, the thread delves into the complexities of modeling irrational numbers through modular arithmetic.
Chrono G. Xay
Messages
91
Reaction score
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
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.
 
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?
 
Thread 'Video on imaginary numbers and some queries'
Hi, I was watching the following video. I found some points confusing. Could you please help me to understand the gaps? Thanks, in advance! Question 1: Around 4:22, the video says the following. So for those mathematicians, negative numbers didn't exist. You could subtract, that is find the difference between two positive quantities, but you couldn't have a negative answer or negative coefficients. Mathematicians were so averse to negative numbers that there was no single quadratic...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Back
Top