SShortSingh.
Back to feed

AI Runs Randomness Test on Itself, Fails in Four Statistically Measurable Ways

0
·2 views

A language model attempted to generate 100 random digits without any tools, mimicking how a human responds to a request for random numbers. Comparing its output against 2,000 sequences from a true pseudo-random number generator, the AI failed on four independent statistical metrics simultaneously. It never repeated an adjacent digit, produced an unusually high rate of perfect 10-digit permutations, and achieved near-perfect digit frequency balance — all patterns that fell outside the null distribution entirely. Rather than sampling like a die, the model appeared to shuffle like a deck of cards, drawing on memory to avoid repetition. The experiment suggests that the signature of a choosing mind may not be bias toward certain numbers, but rather an unnatural absence of the statistical lumpiness that genuine randomness produces.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

GKE Launches VPA Decision Logs to Improve Kubernetes Autoscaling Visibility

Google Kubernetes Engine (GKE) has launched a Public Preview of Vertical Pod Autoscaler (VPA) Logs, available on clusters running version 1.36.0-gke.1601000 or newer. Previously, VPA decisions were difficult to audit because standard Kubernetes events expired after roughly an hour, leaving engineers unable to diagnose unexpected pod evictions or failed in-place resizes. The new feature streams structured VPA decision events directly into Cloud Logging under the destination container.googleapis.com/vpa-controller, creating a permanent audit trail. Logs are categorized across four operations — updating recommendations, evicting pods, applying recommendations on eviction, and applying recommendations in place — each tagged with a success, skipped, or failed status. Combined with existing Horizontal Pod Autoscaler logging, GKE operators now have unified visibility across both horizontal and vertical autoscaling dimensions.

0
ProgrammingDEV Community ·

How to Structure an Elixir Project Using Mix: A Practical Guide

As Elixir projects grow beyond a few modules, managing code in IEx sessions becomes impractical due to redefinition warnings and name collisions. Mix, Elixir's built-in build tool, solves this by generating a standard project skeleton that handles compilation, testing, and dependency management. A typical Mix project organizes application code under lib/, with file paths and directory names mirroring module names — for example, LearningElixir.TodoList maps to lib/learning_elixir/todo_list.ex. Non-code assets go in priv/, while config/ separates environment-specific settings for dev, test, and prod. Although the Elixir compiler does not enforce these conventions, virtually all Elixir projects follow them, making the codebase easier to navigate and maintain as it scales.

0
ProgrammingHacker News ·

Opinion: The Modern Internet Has Become Exploitative and Toxic

A blog post by Stephen Diehl argues that the contemporary internet has devolved into a predatory environment for users. The piece, shared on Hacker News, attracted 26 upvotes and sparked discussion among readers. Diehl's essay examines how online platforms and digital ecosystems have shifted toward exploitative practices. The post reflects growing public concern about the commercialization and manipulation embedded in today's internet experience.

0
ProgrammingDEV Community ·

Why Organisational Constraints Often Matter More Than Technology Choices

Technology challenges in organisations rarely stem from technical limitations alone, according to observations from advisory firm Cralgo. Slow delivery, shifting priorities, and poor decision-making are frequently rooted in unclear ownership, misaligned teams, and weak governance rather than inadequate tools or platforms. Investments in cloud, AI, and automation only deliver value when the organisation surrounding them can effectively direct and use that capability. As companies scale, informal context-sharing breaks down, causing the original intent behind decisions to erode before reaching execution. The critical gap, the article argues, lies in the connective layer between strategy and delivery, where sound judgement must be carried consistently into action.