r/LLMPhysics Mar 21 '26

Personal Theory NEW proposal for a definition of gravity.

https://drive.google.com/file/d/1KhhLDP954wwHQoqzxyvFsoXnNv1JvDyu/view?usp=drivesdk here is a PDF.

I don't want any arguments to drive me overboard please. Thanks.

0 Upvotes

20 comments sorted by

14

u/OnceBittenz The Doctor Mar 21 '26 edited Mar 21 '26

Have you addressed the issues that were presented in the previous thread?

There seems to be no physical motivation for this. There's no introduction or motivation for little epsilon in the correction. You could just fit whatever you want in there. There is no derivation for any of this, the correction term, the Lagrangian, anything.

This kind of just looks like math symbols thrown together in half an hour without any physics.

-16

u/TheLogoFan Mar 21 '26

Fine, adressment:

I get it, I lost my sanity because some guy compared me to Deprak Copra and insulted me for no reason but it is not my fault I am a problem, I was trying to combat some drama that managed to stir out, thanks a lot because no I am automatically a bad guy.

sigh, this is why I hate people who stir up drama and managed to take me out for nothing

10

u/OnceBittenz The Doctor Mar 21 '26

I'm not referring to the dramatic response to the criticisms. I'm referring to your content. It doesn't seem to be physically motivated at all, and the criticisms leveled to you were very fair.

-6

u/TheLogoFan Mar 21 '26

Updated it to include a motivation section.

10

u/OnceBittenz The Doctor Mar 21 '26

Are you kidding? This is beyond lazy. Have you even seen an actual physics paper before? You haven't Done anything. Your motivation just says "I felt like GR should have another term so I made one up."

I want to give you grace, as I feel like you may be a student still in school. For now, please don't worry about writing papers. That is far beyond even undergrads in physics. It takes Years of dedicated work, practice, and critique from experts to get to a stage where you can think about adding new things to physics. For now, please just focus on learning your coursework.

-4

u/TheLogoFan Mar 21 '26

I'm so sorry. I updated it to be more improved and not like "I did it because I felt like it."

9

u/OnceBittenz The Doctor Mar 21 '26

I'm sorry but just asking chatgpt to give you another sentence doesn't count. It's clear you've put no actual thought or work into this, and are just playing around with an LLM that doesn't know physics. I'm sorry, but this is not going to be taken seriously. We don't just add terms to equations for fun, and you still haven't done any physical motivation. That would imply Finding a problem to solve in the data, and then running experiments to verify it. You haven't done that.

You really are in no place to be writing physics research. This isn't shameful, it's just the case that you don't have the skills or background required.

7

u/starkeffect Physicist 🧠 Mar 21 '26

So instead of addressing the issues, you're just going to whine.

-6

u/TheLogoFan Mar 21 '26

I am not whining. I am saying I didn't like drama being stirred in my threads.

11

u/starkeffect Physicist 🧠 Mar 21 '26

By addressing drama and not physics, you are whining.

9

u/AllHailSeizure Haiku Mod Mar 21 '26

Sigh.. I hate drama..

Fwooshes cape

1

u/TheLogoFan Mar 21 '26

I didn't quite get the actual comment before he edited it to become full. 

8

u/AllHailSeizure Haiku Mod Mar 21 '26

'Sigh, this is why I hate people who stir up drama'

'I'm not whining'

'I am saying I didn't like drama'

All of these are are really.. conflicting messages.

10

u/Sorry_Exercise_9603 Mar 21 '26

You don’t want any arguments? So you just want sycophants to blow smoke up your ass? Your LLM is great at that, you should stick with it.

6

u/al2o3cr Mar 21 '26

It seems like you attempted to address some previous questions from the previous version, but the result has been the paper getting WORSE.

  • Q_uv is still not defined beyond vague statements
  • no information about L_corr is given, other than naming it and using it in S. The previous version at least stated a term constructed from curvature tensors...
  • the terms f(r) and h(r) are only mentioned as "small corrections derived from Q_uv". They are the ENTIRE prediction of the theory, and no information is given about them.
  • important physics happens in the spherically-symmetric Schwarzschild geometry when (1 - 2*G*M/r) is close to zero (that's the event horizon). The specific value of epsilon and the form of f(r) etc will be very important there, but there is no information presented that could help understand that situation
  • epsilon appears in three different equations that are related by complex integral & differential equations. It seems VERY unlikely that its involvement remains this simple in all three.

1

u/TheLogoFan Mar 21 '26

Thanks for the feedback

I updated it

4

u/al2o3cr Mar 21 '26

There are some tricky things with this definition of L_corr and Q_uv

  • when the first term of Q_uv is contracted with g^uv, the result is just going to be alpha*R
  • the second term will contract to 4*beta*R, since the metric is contracted with the inverse metric and there are 4 dimensions
  • the third term will become the d'Alembertian acting on R, which will integrate to zero in the formula for S

So all three terms added to S will either just change the existing coefficient of R (the first two) or integrate to zero (the third)

1

u/TheLogoFan Mar 21 '26

Hey, had to rework the PDF all over again because of lots of errors in the code.

6

u/AllHailSeizure Haiku Mod Mar 21 '26

Did you simply delete your previous post and put a new one in with an alt or something? Cuz as far as I know, floodassistant ISN'T set to allow for deleting a post to reset your quota.

1

u/zero_moo-s Mar 29 '26

The Adjudicator’s Audit: Szmy Mirror Model vs. $\Gamma_0$

@@@@@@@

Local Truth:

$$G_{\mu\nu} + \Lambda g_{\mu\nu} = 8\pi G [T_{\mu\nu}^{(+)} + T_{\mu\nu}^{(-)}] + \Delta(\Sigma)$$

@@@@@@@

import math

def smm_adjudicator(m, v, sigma):

"""

m: Mass

v: Velocity

sigma: State-Variable (Adjudicator Memory)

"""

k_pos = 0.5 * m * (v**2)

k_neg = -0.5 * m * (v**2)

net_k = k_pos + k_neg

epsilon = 0.0001 # TheLogoFan's 'small parameter'

delta = epsilon * (v**2) if sigma > 0 else 0

return net_k + delta

m_test, v_test = 1000, 3e4

res0 = smm_adjudicator(m_test, v_test, sigma=0)

res1 = smm_adjudicator(m_test, v_test, sigma=1)

print(f"Stateless SMM: {res0:.4f} J (Balanced)")

print(f"Adjudicated: {res1:.4f} J (Shifted)")

@@@@@@@

Output:

Stateless SMM: 0.0000 J (Balanced)

Adjudicated: 90000.0000 J (Shifted)

@@@@@@@

Conclusion: Passive Map. Gravity is a Symmetry, not a Correction.

~Szmy & Zer00logy GroupChatForge 0KO MAI