What you've all been waiting for - The Practical Application of Microsingularities in Multiversal Mechanics

  • Thread starter Thread starter Traveler 25042
  • Start date Start date
T

Traveler 25042

I personally hate Quantum Mechanics, but is important within the overall Multiversal Mechanics. Multiversal Mechanics unifies QM and GR.

I'm not even going to do the math on this one because I don't feel like it. Just take my word for it, or go 'head and crunch out some scenarios. Anyone that does it gets a golden ticket to Stephen Hawking's raging time travel party. It's in a different universe than the Lonely Stephen Hawking time travel party.

IUGW−C = f(GW,C)

Where:
  • IU = The interaction between universes
  • GW = the effect of gravitational waves
  • C = the Casimir effect
  • IU is influenced by gravitational waves (GW) interacting with the Casimir effect (C)
  • f() is the function of the properties of gravitational waves (GW,) and the specifics of the Casimir effect (C).

Anyway, as you can imagine these things are incredibly hard to work with.
You'd have to know what values to plug in for GW and C in order to hope to calculate IU.


So let's say you smash two microsingularities of known sizes near two metal plates at known distances experiencing the Casimir effect. You might be able to calculate IU, or even more :)

Spoilers Ahead:
  • The minima, trophs, or rather, low points on the Casimir Force Over Time chart, are where the barriers between universes are the thinnest.
  • The maxima, peaks, or rather, high points on the Casimir Force Over Time chart, are where the barriers between universe are the thickest.
  • The points in the middle represent changes, or fluxes.


One could build a "flux capacitor" that manipulates the Casimir effect & is influenced by predictable gravitational waves. You just need a way to predict those gravitational waves, which, conveniently (or not so conveniently) you can get by taking two microsingularities of known masses > smashing them together nearby your capacitor. You'd actually be surprised at how little tech and computing power this takes.

1708384767330.png


Since I'm feeling really frosty, here's a python script that you can play with.
I plugged in some simple values just to illustrate the graphs above. In real life it's not very simple.

Python:
import numpy as np
import matplotlib.pyplot as plt

#This nifty script will graph the Modulated Separation Over Time and Force of Casimir Effect Over Time

def casimir_force(separation):
    """
    Simplified representation of the Casimir force as a function of plate separation.
    Inverse relation for illustration purposes.
    """
    return 1 / separation

def gw_modulation(time, amplitude, frequency):
    """
    Gravitational wave effect modeled as sinusoidal modulation of the separation between plates.
    """
    return amplitude * np.sin(2 * np.pi * frequency * time)

# Simulation parameters
time = np.linspace(0, 1, 100)  # Time from 0 to 1 in arbitrary units
initial_separation = 0.1  # Initial separation in arbitrary units
gw_amplitude = 0.01  # Amplitude of gravitational wave modulation
gw_frequency = 5  # Frequency of gravitational wave modulation

# Calculate modulated separation and resulting Casimir force
modulated_separation = initial_separation + gw_modulation(time, gw_amplitude, gw_frequency)
casimir_forces = casimir_force(modulated_separation)

# Calculate a hypothetical "inter-universal interaction" value based on changes in Casimir force
iu_value = np.var(casimir_forces)

# Plotting
plt.figure(figsize=(12, 6))

# Plotting modulated separation over time
plt.subplot(1, 2, 1)
plt.plot(time, modulated_separation, label='Separation')
plt.title("Modulated Separation Over Time")
plt.xlabel("Time")
plt.ylabel("Separation")
plt.legend()

# Plotting Casimir Force over time
plt.subplot(1, 2, 2)
plt.plot(time, casimir_forces, color='orange', label='Casimir Force')
plt.title("Casimir Force Over Time")
plt.xlabel("Time")
plt.ylabel("Force")
plt.legend()

plt.tight_layout()
plt.show()

print(f"Hypothetical IU Value (based on Casimir force variance): {iu_value:.4f}")
 
Last edited by a moderator:
Let's examine the mythical microsingularity diagram a bit, shall we?
First off, whoever labeled this one sucked and got several things wrong.
Spoiler / TL:DR - This thing is basically just an xray bomb to anyone outside of the very small safe zone.

Corrected Legend:
Negative Time (#2 for the field, and #11 for the horizon on the diagram)
Null Time (#3 for the field, and #12 for the horizon on the diagram)
Positive Time (#4 for the field, and #13 for the horizon on the diagram)

#1 is the dual singularities. In the diagram they appear to be the same size, while the fields clearly asymmetric.
This is accomplished by using a forward mass distribution #9
Personally, I would have just made one singularity slightly bigger, as it would achieve a very similar result.

Anyway, the asymmetry is important to achieve this negative > null > positive field effect.
It's hard for people to conceptualize what's really happening in this diagram because we're looking at it in two dimensions.

Black holes are immense gravity wells that warp the geodesics of spacetime. This much we all surely know.
The reason why you can't escape a black hole after crossing the event horizon, is because we're more or less flatlanders in the fabric of spacetime. It's hard to escape the geodesic so unlucky travelers just follow it down to the end.

There's three horizons (negative, null, positive) here because there's two singularities.

-Negative time is the geodesic for the closer (non-mas offset) singularity. Moving within this geodesic will take you "back in time" relative to where you were. In reality you're just popping out in a similar universe that happens to be X time behind the one you were in.

-Null time is literally just the boundary between the two interacting geodesics. In null time, things are frozen. If you get stuck here you'll be frozen in time for eternity.

-Positive time is the geodesic just past the null time horizon. If you cross through null zone, you are traveling "forward in time"
Again, in reality you're just popping out in a similar universe that happens to be X time ahead of the one you were in.

All consistent with general relativity. No spooky actions needed.

Would not recommend unless you have no problem with the destruction in your old universe.

1728760938971.webp
 
Back
Top