Giant rocks from space are falling from the sky more than they used to, but don't worry.

For the past 290 million years, large asteroids have been crashing into Earth more than twice as often as they did in the previous 700 million years, according to a new study in Thursday's journal Science.

But no need to cast a wary glance up. Asteroids still only smack Earth on average every million or few million years, even with the increased crash rate. NASA's list of potential big space rock crashes shows no pending major threats. The biggest known risk is a 4,200-foot (1.3-km) wide asteroid with a 99.988 percent chance that it will miss Earth when it whizzes very near here in 861 years.

Tell that to the dinosaurs. Most scientists think dinosaurs and a lot of other species went extinct after a huge space rock crashed into Central America about 65 million years ago.

"It's just a game of probabilities," said study lead author Sara Mazrouei, a University of Toronto planetary scientist. "These events are still rare and far between that I'm not too worried about it."

Mazrouei and colleagues in the United Kingdom and United States compiled a list of impact craters on Earth and the moon that were larger than 12 miles (20 km) wide and came up with the dates of them. It takes a space rock that's half a mile (800 meters) wide to create holes that big.

The team counted 29 craters that were no older than 290 million years and nine between 291 million years and 650 million years old.

But we can see relatively few big craters on Earth because the planet is more than 70 percent ocean and past glaciers smoothed out some holes, said University of Toronto planetary scientist Rebecca Ghent, a study co-author.

Extrapolating for what can't be seen brings the total to about 260 space crashes on Earth in the last 290 million years. Adding in other factors, the science team determined that the current space crash rate is 2.6 times more than the previous 700 million years.

Craters older than 650 million years are mostly wiped off on Earth by glacial forces so the scientists used impact craters on the nearby moon as a stand-in for holes between 650 million and 1 billion years old. The moon is a good guide for estimating Earth crashes, because it is close enough to be in the same bombardment path and its craters last longer.

"Perhaps an asteroid family was broken up in the asteroid belt," Mazrouei speculated. The space rocks then headed toward the Earth and moon, and the planet got slightly more because it is a bigger target and it has higher gravity, Ghent said.

Outside scientists are split about the research. Jay Melosh at Purdue said he found the number of craters too small to come to a reasonable conclusion, but Harvard's Avi Loeb said the case was convincing.

Humans might not have emerged without mass extinctions from space rocks about 250 million and 65 million years ago, Loeb said in an email, adding, "but this enhanced impact rate poses a threat for the next mass extinction event, which we should watch for and attempt to avoid with the aid of technology."

"This demonstrates how arbitrary and fragile human life is," Loeb wrote.

L240的更多相关文章

  1. 你必须收藏的Github技巧

    一秒钟把Github项目变成前端网站 GitHub Pages大家可能都知道,常用的做法,是建立一个gh-pages的分支,通过setting里的设置的GitHub Pages模块可以自动创建该项目的 ...

  2. github使用技巧

    转自:一秒钟把Github项目变成前端网站 后面加了一些自己的东西 一秒钟把Github项目变成前端网站 GitHub Pages大家可能都知道,常用的做法,是建立一个gh-pages的分支,通过se ...

  3. Redhat Linux内核升级全记录(转)

        http://www.sina.com.cn 2001/06/15 15:38 中国电脑教育报 李红   Redhat Linux因为比较容易上手,所以用户很多.它系统配置完善,预装了丰富的应 ...

  4. Linux进程调度器的设计--Linux进程的管理与调度(十七)

    1 前景回顾 1.1 进程调度 内存中保存了对每个进程的唯一描述, 并通过若干结构与其他进程连接起来. 调度器面对的情形就是这样, 其任务是在程序之间共享CPU时间, 创造并行执行的错觉, 该任务分为 ...

  5. C#如何在VS2015 2017版本中编写WPF UI界面引入第三方SVG图形

    原文:C#如何在VS2015 2017版本中编写WPF UI界面引入第三方SVG图形 在VS2015 2017版本中编写WPF UI界面引入第三方SVG图形     最近在写WPF界面的时候遇到一个情 ...

随机推荐

  1. HDU 1213 How Many Tables(并查集模板)

    http://acm.hdu.edu.cn/showproblem.php?pid=1213 题意: 这个问题的一个重要规则是,如果我告诉你A知道B,B知道C,这意味着A,B,C知道对方,所以他们可以 ...

  2. ajax专题

    什么是ajax?他可以用来做什么? 1.首先,ajax不是一种编程语言,是一种在无需重新加载整个网页的情况下能够更新部分网页的技术. 优点:通过和后台服务器进行少量的数据交换,网页就能异步的局部跟新, ...

  3. 广州工业大学2016校赛 F 我是好人4 dfs+容斥

    Problem F: 我是好人4 Description 众所周知,我是好人!所以不会出太难的题,题意很简单 给你n个数,问你1000000000(含1e9)以内有多少个正整数不是这n个数任意一个的倍 ...

  4. shell 加法计算

    Shell 相加目前发现有 3 种写法: 1. a=10 b=20 c=`expr ${a} + ${b}` echo "$c" 2. c=$[ `expr 10 + 20` ] ...

  5. c++ primer plus 第四章 课后题答案

    #include<iostream> #include<string> using namespace std; int main() { string first_name; ...

  6. Codeforces 768B - Code For 1(分治思想)

    768B - Code For 1 思路:类似于线段树的区间查询. 代码: #include<bits/stdc++.h> using namespace std; #define ll ...

  7. php程序突然不能用file_get_contents()访问远程网址了?

    php程序用file_get_contents("http://www.***.com"),一直以来好好的,突然间就不能链接远程网址了,在shell下可以ping通远程网址,可是用 ...

  8. WPF如何给窗口Window增加阴影效果

    https://blog.csdn.net/w_sx12553/article/details/45072861

  9. LeetCode--119--杨辉三角II

    问题描述: 给定一个非负索引 k,其中 k ≤ 33,返回杨辉三角的第 k 行. 在杨辉三角中,每个数是它左上方和右上方的数的和. 示例: 输入: 3 输出: [1,3,3,1] 进阶: 你可以优化你 ...

  10. CF 711B - Chris and Magic Square

    挺简单的一道题,但是做的时候没想好就开始写代码了,导致迷之WA,还是要多练习啊. #include <iostream> #include <cstdio> #include ...