This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| z = np.linspace(0, 3, 500) | |
| a = 1/(1+z) | |
| plt.figure(figsize=(8,5)) | |
| plt.plot(z, a, 'b-', label='Scale factor a(z)') | |
| plt.xlabel('Redshift z') | |
| plt.ylabel('Scale factor a') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[11pt]{article} | |
| \usepackage{amsmath,amssymb} | |
| \usepackage{hyperref} | |
| \usepackage[a4paper,margin=1in]{geometry} | |
| \title{Photonic Universe Hypothesis (PUH v6):\\Identical Redshift of Photons and Gravitational Waves} | |
| \author{Brian Martell} | |
| \date{4 December 2025} | |
| \begin{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| v_over_c = np.linspace(0, 0.999999, 500) | |
| dtau_dt = np.sqrt(1 - v_over_c**2) | |
| plt.figure(figsize=(8,5)) | |
| plt.semilogy(v_over_c, dtau_dt, 'b-') | |
| plt.xlabel('v/c') | |
| plt.ylabel('Proper time rate $d\\tau/dt$') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[11pt]{article} | |
| \usepackage{amsmath,amssymb} | |
| \usepackage{hyperref} | |
| \usepackage[a4paper,margin=1in]{geometry} | |
| \title{Photonic Universe Hypothesis (PUH v6):\\Time as Emergent Property of Lattice Folds} | |
| \author{Brian Martell} | |
| \date{4 December 2025} | |
| \begin{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| k = np.logspace(-4, 1, 500) | |
| n_s = 0.965 | |
| P_k = k**(n_s - 1) | |
| plt.figure(figsize=(8,5)) | |
| plt.loglog(k, P_k, 'b-', label='PUH v6') | |
| plt.axhline(1, color='k', ls=':', label='Perfect scale-invariant (n_s=1)') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[11pt]{article} | |
| \usepackage{amsmath,amssymb} | |
| \usepackage{hyperref} | |
| \usepackage[a4paper,margin=1in]{geometry} | |
| \title{Photonic Universe Hypothesis (PUH v6):\\Nearly Scale-Invariant Spectrum without Inflation} | |
| \author{Brian Martell} | |
| \date{4 December 2025} | |
| \begin{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| M = 1e51 # kg | |
| G = 6.6743e-11 | |
| c = 3e8 | |
| ell_P = 1.616e-35 | |
| r_S = 2 * G * M / c**2 | |
| Omega_k = (ell_P / r_S)**2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[11pt]{article} | |
| \usepackage{amsmath,amssymb} | |
| \usepackage{hyperref} | |
| \usepackage[a4paper,margin=1in]{geometry} | |
| \title{Photonic Universe Hypothesis (PUH v6):\\Flatness and Horizon Problems without Inflation} | |
| \author{Brian Martell} | |
| \date{4 December 2025} | |
| \begin{document} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| theta = np.linspace(0, np.pi, 500) | |
| A_H = 0.09 | |
| H_ratio = 1 + A_H * np.cos(theta) | |
| plt.figure(figsize=(8,5)) | |
| plt.plot(np.rad2deg(theta), H_ratio, 'b-') | |
| plt.axhline(1.09, color='r', ls='--', label='Fast pole +9%') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass[11pt]{article} | |
| } | |
| \usepackage{amsmath,amssymb} | |
| \usepackage{hyperref} | |
| \usepackage[a4paper,margin=1in]{geometry} | |
| \title{Photonic Universe Hypothesis (PUH v6):\\Definitive Tests with DESI and Euclid} | |
| \author{Brian Martell} | |
| \date{4 December 2025} |
NewerOlder