What does 'chunked down number' mean?

  • Thread starter Thread starter mesa
  • Start date Start date
  • Tags Tags
    Mean
AI Thread Summary
The discussion centers around the concept of "chunked down numbers," a term used to describe the process of breaking large tasks, such as verifying gigantic prime numbers, into smaller, manageable parts for easier analysis. This method, related to reductionism, aims to enhance program efficiency by simplifying tasks and reducing operational cycles. However, there are concerns that chunking down could lead to erroneous outputs. The term lacks a formal definition and is gaining popularity across various fields. The conversation also touches on practical applications, such as optimizing code for prime verification and the challenges of streamlining software with academic collaboration. The Rubik's cube analogy is used to illustrate the concept of handling data in chunks.
mesa
Gold Member
Messages
694
Reaction score
36
I have been asking around campus to find software for checking 'gigantic' primes and this term popped up in my inbox today

"chunked down number'

So what in software language is a 'chunked down number'? They were concerned if using Java that this might be a problem for prime verification of gigantic values.
 
Last edited:
Technology news on Phys.org
So reductionism is a way of speeding up the program by simplifying each task that has to be performed and therefore will reduce the number of cycles per operation. The downside being it could result in erroneous outputs?

The last time we played with these the programmer sped things up by reducing witnesses but didn't mention chunking down although it seems it would have been part of his work.
 
No - reductionism is a general mindset - which is why it's an -ism.
The phrase "Chunking down" to describe the process of dividing a task into smaller bits seems to be fashionable.
ifaik it has no formal definition and is used across many fields.

Another example of chunking down is if you've ever done a 4x4 rubik's cube? There's a stage in the solution where you turn the cube in blocks of 4 faces (which is 7 sub-cubes).

It would describe anywhere you handle lots of data in chunks.
 
  • Like
Likes 1 person
Simon Bridge said:
The phrase "Chunking down" to describe the process of dividing a task into smaller bits seems to be fashionable.
ifaik it has no formal definition and is used across many fields.

Okay, so this is not usually a necessary step when writing code. I now have a program and am working with one of our campus Professors to get it streamlined for use. It looks as if there is going to be a steep learning curve ahead...

On another note, I like your Rubik's cube analogy.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top