This article will be permanently flagged as inappropriate and made unaccessible to everyone. Are you certain this article is inappropriate? Excessive Violence Sexual Content Political / Social
Email Address:
Article Id: WHEBN0030154014 Reproduction Date:
While scientific predictions of the future can never be absolutely certain,[1] present understanding in various fields allows for the prediction of far future events, if only in the broadest strokes. These fields include astrophysics, which has revealed how planets and stars form, interact, and die; particle physics, which has revealed how matter behaves at the smallest scales; evolutionary biology, which predicts how life will evolve over time; and plate tectonics, which shows how continents shift over millennia.
All projections of the future of the Earth, the Solar System, and the Universe must account for the second law of thermodynamics, which states that entropy, or a loss of the energy available to do work, must increase over time.[2] Stars eventually must exhaust their supply of hydrogen fuel and burn out. Close encounters gravitationally fling planets from their star systems, and star systems from galaxies.[3] Eventually, matter itself is expected to come under the influence of radioactive decay, as even the most stable materials break apart into subatomic particles.[4] Current data suggests that the Universe is flat, and thus, will not collapse in on itself after a finite time,[5] and the infinite future potentially allows for the occurrence of a number of massively improbable events, such as the formation of a Boltzmann brain.[6]
The timelines displayed here cover events from roughly eight thousand years from now[1] to the furthest reaches of future time. A number of alternate future events are listed to account for questions still unresolved, such as whether humans will become extinct, whether protons decay, or whether Earth will survive the Sun's expansion into a red giant.
Niagara Falls will have eroded away the remaining 32 km to Lake Erie, and ceased to exist.[12]
The many glacial lakes of the Canadian Shield will have been erased by post-glacial rebound and erosion.[13]
Even without a mass extinction, by this time most current species will have disappeared through the background extinction rate, with many clades gradually evolving into new forms.[32] (However, without a mass extinction, there will now be an ecological crisis requiring millions of years of recovery).
Africa's collision with Eurasia closes the Mediterranean Basin and creates a mountain range similar to the Himalayas.[35]
The Appalachian Mountains peaks will largely erode away,[36] weathering at 5.7 Bubnoff units, although topography will actually increase as regional valleys deepen at twice this rate.[37]
During these times, it is possible that Saturn's moon Titan could achieve surface temperatures necessary to support life.[73]
The universe's expansion, assuming a constant dark energy density, multiplies the wavelength of the cosmic microwave background by 1029, exceeding the scale of the cosmic light horizon and rendering its evidence of the Big Bang undetectable. However, it may still be possible to determine the expansion of the universe through the study of hypervelocity stars.[81]
Collisions between brown dwarfs will create new red dwarfs on a marginal level: on average, about 100 stars will be shining in the Milky Way. Collisions between stellar remnants will create occasional supernovae.[4]
By this point, the Sun will have cooled to five degrees above absolute zero.[86]
To date five spacecraft (Voyager 1, Voyager 2, Pioneer 10, Pioneer 11 and New Horizons) are on trajectories which will take them out of the Solar System and into interstellar space. Barring an extremely unlikely collision with some object, the craft should persist indefinitely.[107]
Estimated lifespan of the HD-Rosetta analog disc, an ion beam-etched writing medium on nickel plate, a technology developed at Los Alamos National Laboratory and later commercialized. (The Rosetta Project is named after and uses this technology).
Various public monuments composed of hard granite will have eroded one meter, in a moderate climate, assuming a rate of 1 Bubnoff unit (1 mm / 1,000 years, or ~1 inch / 10,000 years).[127]
Without maintenance, the Great Pyramid of Giza will erode into unrecognizability.[128]
On the Moon, Neil Armstrong's "one small step" footprint at Tranquility Base will erode by this time, along with those left by all twelve Apollo moonwalkers, due to the accumulated effects of space weathering.[129][130] (Normal erosion processes active on Earth are not present due to the Moon's almost complete lack of atmosphere).
Extremely rare astronomical events beginning at the 11th millennium AD (Year 10,001).
The Yucca Mountain nuclear waste repository is required by the U.S. Environmental Protection Agency to maintain an annual dose limit of 15 millirem until this time.[152]
For graphical, logarithmic timelines of these events see:
-- This module implements and its daughter templates such as -- , and .
-- Initialise necessary modules. require('Module:No globals') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local yesno = require('Module:Yesno')
-- Lazily initialise modules and objects we don't always need. local getArgs, makeMessageBox, lang
-- Set constants. local CONFIG_MODULE = 'Module:Protection banner/config'
-- Helper functions
local function makeCategoryLink(cat, sort) local nsText = mw.site.namespaces[14].name if cat and sort then return string.format( '%s', nsText, cat, sort ) elseif cat then return string.format( '%s:%s', nsText, cat ) else return end end
-- Validation function for the expiry and the protection date local function validateDate(dateString, dateType) lang = lang or mw.language.getContentLanguage() local success, result = pcall(lang.formatDate, lang, 'U', dateString) if success then result = tonumber(result) if result then return result end end error(string.format( 'invalid %s ("%s")', dateType, tostring(dateString) ), 4) end
local function makeFullUrl(page, query, display) return string.format( '[%s %s]', tostring(mw.uri.fullUrl(page, query)), display ) end
local function toTableEnd(t, pos) -- Sends the value at position pos to the end of array t, and shifts the -- other items down accordingly. return table.insert(t, table.remove(t, pos)) end
local function walkHierarchy(hierarchy, start) local toWalk, retval = {[start] = true}, {} while true do -- Can't use pairs() since we're adding and removing things as we're iterating local k = next(toWalk) if k == nil then break end toWalk[k] = nil retval[k] = true for _,v in ipairs(hierarchy[k]) do if not retval[v] then toWalk[v] = true end end end return retval end
-- Protection class
local Protection = {} Protection.__index = Protection
Protection.supportedActions = { edit = true, move = true, autoreview = true }
Protection.bannerConfigFields = { 'text', 'explanation', 'tooltip', 'alt', 'link', 'image' }
function Protection.new(args, cfg, title) local obj = {} obj._cfg = cfg obj.title = title or mw.title.getCurrentTitle() -- Set action if not args.action then obj.action = 'edit' elseif Protection.supportedActions[args.action] then obj.action = args.action else error(string.format( 'invalid action ("%s")', tostring(args.action) ), 3) end -- Set level obj.level = args.demolevel or effectiveProtectionLevel(obj.action, obj.title) if not obj.level or (obj.action == 'move' and obj.level == 'autoconfirmed') then -- Users need to be autoconfirmed to move pages anyway, so treat -- semi-move-protected pages as unprotected. obj.level = '*' end -- Set expiry if args.expiry then if cfg.indefStrings[args.expiry] then obj.expiry = 'indef' elseif type(args.expiry) == 'number' then obj.expiry = args.expiry else obj.expiry = validateDate(args.expiry, 'expiry date') end end -- Set reason if args[1] then obj.reason = mw.ustring.lower(args[1]) if obj.reason:find('|') then error('reasons cannot contain the pipe character ("|")', 3)
Soviet Union, United States, Solar System, Mercury (planet), Earth
A Greek–English Lexicon, Perseus Project, Ερμής (πλανήτης)
Solar System, Mars Reconnaissance Orbiter, Oxygen, Mercury (planet), Moon
Nasa, Antarctica, Solar System, Evolution, Apollo program
Star, White dwarf, Neptune, Solar luminosity, Gliese 581
Earth, Bya, Venus, Moon, Solar System
Hawaii, Midway Atoll, Hawaii hotspot, United States, Hawaii (island)
Western Australia, Jurassic, Cretaceous, Fire, Cambrian
Timeline of the formation of the Universe, Timeline of the far future, Chronology of the Universe, Timelines of world history