由买买提看人间百态

topics

全部话题 - 话题: sieve
1 2 3 4 下页 末页 (共4页)
w**x
发帖数: 362
1
传统的 SIEVE OF ERATOSHENES
Time complexity 怎么分析? wiki 是 nloglog(n)
r**********s
发帖数: 49
2
来自主题: Texas版 - 分子筛Molecular Sieve
德州版的朋友又没有做 分子筛Molecular Sieve 贸易的?家乡有个工厂生产这个,不
知这里有没有需求? 若有信息请回复或者站内信,如果订单成行,必当重谢,谢谢
l***o
发帖数: 7937
3
(1)
Rumors swept through the mathematics community that a great advance had been
made by a researcher no one seemed to know — someone whose talents had
been so overlooked after he earned his doctorate in 1992 that he had found
it difficult to get an academic job, working for several years as an
accountant and even in a Subway sandwich shop.
“Basically, no one knows him,” said Andrew Granville, a number theorist at
the Université de Montréal. “Now, suddenly, he has proved one of the
great results... 阅读全帖
d******s
发帖数: 180
4
来自主题: Mathematics版 - Goldston撰文介绍老张的工作
http://aimath.org/news/primegaps70m/
第一段就很有料,四月后期投稿,五月中旬便接受,对于一篇55页的paper来说速度惊
人。
Zhang's Theorem on Bounded Gaps Between Primes
by Dan Goldston
In late April 2013 Yitang Zhang of the University of New Hampshire submitted
a paper to the Annals of Mathematics proving that there are infinitely many
pairs of primes that differ by less than 70 million. The proof of this
amazing result was verified with high confidence by several experts in the
field and accepted for publication. A public slightly re... 阅读全帖
d**s
发帖数: 920
5
最近又重读了一下老张的事迹, 感到老张也挺幸运的, 做研究这事也挺残酷。
老张的工作基于GPY三人10年前的工作。 GPY做出了那份工作后, 十年内这个问题的研
究停止不前,没有进展。
老张大概也思考这个问题有十年了, 改进了GPY的工作, 然后做出了他的工作。
他幸运在于, 仅仅在他做出这个工作两三个月之后, James Maynard通过完全不同的
方法,改进了GPY的工作,也解决了这个问题。
试想一下, 如果James Maynard早两三个月做出这个工作, 那么我们现在大概还不知
道老张这个人,老张还是一个不知名的屌丝。 老张至少十年的心血, 甚至一生的努
力都白辛苦了。
而且James Maynard的方法比老张的方法更简单, 容易推广,适用于更广泛的问题。
再说一句 , 老张的工作和中国解析数论学派的渊源。
当年(1966), 陈景润做出1+2. 陈的工作用了两个变量的Selberg Sieve 。按照潘承
洞,王元的观点,陈景润工作的核心也是搞出了一个(少许)加强版的bombieri-
vinogradov定理。后来, 潘承洞,王元等人把这个(少许)加强版的bombi... 阅读全帖
c******f
发帖数: 2144
6
const int size = 1024;
bitset sieve;
sieve.flip();
int finalBit = sqrt(sieve.size())+1;
for (int i=2;i if (sieve.test(i))
for(int j = 2*i;j sieve.reset(j);
Question:
In this program we set all 1024 bits as all "1"(which means 1111...111)
here we will find 2 and set all numbers like 4, 6, 8, ...,10 to 0
then find 3 and set all numbers like 6,9,12...to 0
then find 4 and set all numbers like 8,12,...to 0
until the loop is finished, we will find
l*****g
发帖数: 685
7
来自主题: JobHunting版 - Amazon电话面试第一轮
sieve of eratosthenes的空间确实是个问题。因此,如果记得住Sieve of Atkin方法
的人当然最好用Sieve of Atkin来做。
如果只记得sieve of eratosthenes的话, 我觉得可以给原算法稍微做点预处理,以减
少空间要求。
譬如把100之内的prime number先存到一个数组a里,反正数目也不大
a = {2, 3, 5, 7, ..., 97}
接下去是3种情况
1) 如果n小于100, 直接从a里搜索
2) 如果n大于100,loop i from 100-->n, 给i apply a里的所有prime numbers,如
果i最后还能漏下来,那就放到一个list b
b = { 101, 103, ...}
这一轮下来,剩下来的数字估计减少了十几倍。(没具体算过到底减少到多少,大致估
计是:1/2 * 2/3 * 4/5 * 6/7 *....*96/97, 不过这是不确切的)
3) 接下来再对b里的数字做正常的sieve of eratosthenes筛法, 当然用不着从2开始了
,可以直接从101开始。
最后的结果是a... 阅读全帖
d**********o
发帖数: 1321
8
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
所有测试文件
aamain2.c-
aamain2.expected
aamain2.in
aamain2.out
aamain2.tm
aamain3.c-
aamain3.expected
aamain3.out
aamain4.c-
aamain4.expected
aamain4.out
aamain4.tm
aamain5.c-
aamain5.expected
aamain5.out
aamain.c-
aamain.expected
aamain.out
aamain.tm
aasmaller.c-
aasmaller.expected
aasmaller.out
all.c-
allErrors2.c-
allErrors2.expected
allErrors2.in
allErrors2.out
allErrors.c-
allErrors.expected
allErrors.in
allErrors.out
all.expected
all.in
all.out
arglist2.c-
arglist2.expected
arglist2.out
arglist... 阅读全帖
d**********o
发帖数: 1321
9
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
所有测试文件
aamain2.c-
aamain2.expected
aamain2.in
aamain2.out
aamain2.tm
aamain3.c-
aamain3.expected
aamain3.out
aamain4.c-
aamain4.expected
aamain4.out
aamain4.tm
aamain5.c-
aamain5.expected
aamain5.out
aamain.c-
aamain.expected
aamain.out
aamain.tm
aasmaller.c-
aasmaller.expected
aasmaller.out
all.c-
allErrors2.c-
allErrors2.expected
allErrors2.in
allErrors2.out
allErrors.c-
allErrors.expected
allErrors.in
allErrors.out
all.expected
all.in
all.out
arglist2.c-
arglist2.expected
arglist2.out
arglist... 阅读全帖
d**s
发帖数: 920
10
最近又重读了一下老张的事迹, 感到老张也挺幸运的。
老张的工作基于GPY三人10年前的工作。 GPY做出了那份工作后, 十年内这个问题的研
究停止不前,没有进展。
老张大概也思考这个问题有十年了, 改进了GPY的工作, 然后做出了他的工作。
他幸运在于, 仅仅在他做出这个工作两三个月之后, James Maynard通过完全不同的
方法,改进了GPY的工作,也解决了这个问题。
试想一下, 如果James Maynard早两三个月做出这个工作, 那么我们现在大概还不知
道老张这个人,老张还是一个不知名的屌丝。 老张至少十年的心血, 甚至一生的努
力都白辛苦了。
而且James Maynard的方法比老张的方法更简单, 容易推广,适用于更广泛的问题。
老张的工作的核心是, 搞出了一个(少许)加强版的bombieri-vinogradov定理。由于
GPY三人用原来的bombieri-vinogradov定理, 所以他们就没法跨越最后一点“头发丝
一样细的”距离。
James Maynard的工作的核心, 是用了多变量Selberg Sieve Methods. 由于GPY三人用
单变量S... 阅读全帖
E*****m
发帖数: 25615
11
来自主题: Programming版 - functional programming?

沒什麼是 Python (或任何 TM-complete 語言) 一定做不到的,差別
就是簡潔易懂否, 你那個 fibs 例子就長了幾倍,不是嗎?
還有個 laziness 的例子 python 更難做的, 用 sieve 來求質數
primesT = sieve [2..] where
sieve (p:xs) = p : sieve [x | x <- xs, rem x p /= 0]
然後求前 100 個質數就是
take 100 primesT
當然, 我不否認不是所有東西都需要 laziness,只是有時 laziness
會讓題目比較好解。
E*****m
发帖数: 25615
12
来自主题: Programming版 - functional programming?

沒什麼是 Python (或任何 TM-complete 語言) 一定做不到的,差別
就是簡潔易懂否, 你那個 fibs 例子就長了幾倍,不是嗎?
還有個 laziness 的例子 python 更難做的, 用 sieve 來求質數
primesT = sieve [2..] where
sieve (p:xs) = p : sieve [x | x <- xs, rem x p /= 0]
然後求前 100 個質數就是
take 100 primesT
當然, 我不否認不是所有東西都需要 laziness,只是有時 laziness
會讓題目比較好解。
s****l
发帖数: 16457
13
来自主题: Food版 - 为毛马卡龙难吃又死贵?
杏仁粉比较贵吧,还得筛半天,一半儿都粒儿太粗不能用。
如果有人自己做,我建议做这个raspberry奶油馅儿的。那个raspberry真是唇齿留香,
酸酸的味道还能平衡一下马可龙的甜味:
RASPBERRY BUTTER CREAM
1/4 cup salted butter (60g)
3/4 cup powdered sugar (75 g) (可以适当减量)
1 cup (150 g) fresh raspberries, worked through a sieve to extract 3 tbsp of
juice
Meanwhile mix the buttercream. Whip butter with an electric mixer until pale
and fluffy. Slowly add sugar. Then place sieve on top of a bowl the same
size. Work raspberries through the sieve with a spatula, pushing them
through, mash... 阅读全帖
i**********e
发帖数: 1145
14
来自主题: JobHunting版 - 一道算法题目
For the prime sieve method to work, you will need an array size of N (N is
the maximum number). Since you mentioned that the primes are between 2K and
8K, you only need array of size 8K for the prime sieve method to work.
Then you iterate through the 100K array one by one, and the prime sieve
array can tell you if a number is prime or not.
See below for code sample on how to implement. You might also want to read
Programming Pearls for a discussion of generating primes efficiently.
http://www.ih
b**********5
发帖数: 7881
15
来自主题: JobHunting版 - 求neflix mobile面经 大包子
第四面: 我反正是一面比一面糟糕。
一个有点south america口音的男的。 一上来说, 我们warm up吧。。 他妈的, 都
几轮了, 还warm up。。。
given a range from 1 to n, output kth prime... 我上来准备写sieve, 然后再
output kth in the resulting set。。。 他说, sieve太复杂, 你就直接简单计算
一个数是不是sieve就行了
然后我写了, including the following statement:
for (int i = 2; i <= (int)Math.sqrt(n); i++)
然后他看了我所有的code, 问有什么方面可以改进的。。 我坐看又看, 也没看出来
。 然后他说, assuming there's no compilor optimization。。。 其实再搞了搞
, 原来是要assign Math。sqrt的计算结果给一个variable。 他说, 要precompute
。。。
d**********o
发帖数: 1321
16
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
最终版本的compiler测试结果
=================================================
Output of Building User Code
Explode the tar
c-.l
c-.y
scanType.h
makefile
symtab.h
symtab.cpp
emitCode.h
emitCode.cpp
20131214164956-huang-CS445-F13-A5.tar: POSIX tar archive (GNU)
Tests: directory
c-.l: lex description text
c-.y: lex description text
emitCode.cpp: ASCII C++ program text
emitCode.h: ... 阅读全帖
d**********o
发帖数: 1321
17
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
最终版本的compiler测试结果
=================================================
Output of Building User Code
Explode the tar
c-.l
c-.y
scanType.h
makefile
symtab.h
symtab.cpp
emitCode.h
emitCode.cpp
20131214164956-huang-CS445-F13-A5.tar: POSIX tar archive (GNU)
Tests: directory
c-.l: lex description text
c-.y: lex description text
emitCode.cpp: ASCII C++ program text
emitCode.h: ... 阅读全帖
i****g
发帖数: 3896
18
http://blog.sina.com.cn/s/blog_c24597bf0101b871.html
致谢:I would like to thank Prof. Shing-Tung Yau for suggesting the title of

this article, Prof. William Dunham for information on the history of the
Twin Prime Conjecture, Prof. Liming Ge for biographic information about
Yitang Zhang, Prof. Shiu-Yuen Cheng for pointing out the paper of
Soundararajan cited in this article, Prof. Lo Yang for information about
Chengbiao Pan quoted below, and Prof. Yuan Wang for detailed information on
result... 阅读全帖

发帖数: 1
19
Best of Last Year—The top Phys.org articles of 2017
December 19, 2017 by Bob Yirka, Phys.org report
Study reveals substantial evidence of holographic universe
A sketch of the timeline of the holographic Universe. Time runs from left to
right. The far left denotes the holographic phase and the image is blurry
because space and time are not yet well defined. At the end of this phase (
denoted by the …more
It was another great year for science, particularly physics, as evidenced by
a study conducte... 阅读全帖
e**o
发帖数: 5509
20
来自主题: _BayAreaFishing版 - 太佩服我自己了。这个东西都能找到。
筛网原来英文就是sieve。garden sieve。RIM sieve.
下次可以去筛沙子了。
d****2
发帖数: 6250
21

管他呢,就是一fine metal sieve加一容器,俺以前用all clad metal sieve架在锅子上。
估计是greek yogurt也叫yogurt cheese吧。
z*****9
发帖数: 256
22
For more information about whether or not to rinse kefir grains:
DO I NEED TO RINSE KEFIR GRAINS OR FAST THEM IN WATER. WHAT'S BEST?
Under most circumstances kefir grains do not need to be rinsed with water [
or fresh milk] between each milk change, or fasted in fresh cold water
either. If you ever do rinse your grains with water, just be sure to use non
chlorinated, sterile, COLD water [The water should first be boiled then
cooled to room temperature]. Using fresh milk instead of water to rinse... 阅读全帖
I**********s
发帖数: 441
23
来自主题: JobHunting版 - Google点面
问了1) 研究, 2) 多线程程序设计, 3) 任意无穷字符串流, 内存有限, 找出唯一一对
重复字符串, 这个我说了哈希表和外部排序, 但是面试人说有更好的办法(后来想也许
是bloom filter), 然后追问外部排序的细节到结束. 估计要挂 :(
总结: 面试既是技术活, 又是运气活.
无论如何, 把我的准备工作放下面, 攒点rp, 希望对大家有所帮助.
Interview Qs
Data Structures
1. Integer
- find number of 1s
- next largest smaller
- smallest larger number
- determine if is palindrom
- itoa, atoi
- add 2 numbers w/o using + or arithmetic operators
- implement *, -, / using only +
- find max of two numbers w/o co... 阅读全帖
w*****e
发帖数: 158
24
来自主题: JobHunting版 - 一道算法题目
Thanks ihasleetcode,
Sieve method to find all prime numbers for n. By using it, my solution is
like following:
1. go through array A and find the maximum number MAX.
2. use sieve method to find all prime number smaller than MAX. and put
them
into a set (hashtable?)
3. go though the Array again and check whether each element is in the set.
~
O(nlogn) ?
If the array size is 100k and the numbers are between 2k to 8k. the
numbers in the set are the prime numbers in the range(2k,8k).
Correct me if I
g*****x
发帖数: 799
25
来自主题: JobHunting版 - 请教一道Amazon面世题
就是在验证K是不是质数的时候只要看是否能被比sqrt(K)小的质数整除就行了,所以查
这一个的复杂度是O(N^0.5),而共有N个数要验证,就是O(N*N^1/2)了。。。比起sieve
of eratosthenes的O(N)是要慢很多了
但是用sieve of eratosthenes的话要用N/8个byte的空间,而当N很大时质数在数据集
里的分布相当稀疏,远远没有N/8,因此如果只保存所有的质数的话可以大大节省空间
S**I
发帖数: 15689
26
☆─────────────────────────────────────☆
gzou (gzou) 于 (Thu May 12 02:26:35 2011, 美东) 提到:
马上就要G on site了,
求祝福。
下面是从本版收集到的Google的试题,便于大家查询。
申明:有的附带有解释说明的,也来自于本版或者网络,大家自己看, 不保证真确
http://www.mitbbs.com/article_t1/JobHunting/31847453_0_1.html
本人ECE fresh PhD,背景是电路/EDA,跟G业务基本没什么关系
同学内部推荐的,很简单的一次电面就给了onsite
题都不难,但是自己没把握好机会,出了一些小bug。
总的感觉,出错就是硬伤,宁可从最简单的算法写起,也不能出错。
电面:
1,Skip list, http://en.wikipedia.org/wiki/Skip_list
写code实现struct skip_list * find(struct skip_list *head, int value)
2,sorted array... 阅读全帖
S**I
发帖数: 15689
27
☆─────────────────────────────────────☆
gzou (gzou) 于 (Thu May 12 02:26:35 2011, 美东) 提到:
马上就要G on site了,
求祝福。
下面是从本版收集到的Google的试题,便于大家查询。
申明:有的附带有解释说明的,也来自于本版或者网络,大家自己看, 不保证真确
http://www.mitbbs.com/article_t1/JobHunting/31847453_0_1.html
本人ECE fresh PhD,背景是电路/EDA,跟G业务基本没什么关系
同学内部推荐的,很简单的一次电面就给了onsite
题都不难,但是自己没把握好机会,出了一些小bug。
总的感觉,出错就是硬伤,宁可从最简单的算法写起,也不能出错。
电面:
1,Skip list, http://en.wikipedia.org/wiki/Skip_list
写code实现struct skip_list * find(struct skip_list *head, int value)
2,sorted array... 阅读全帖
g**G
发帖数: 767
28
来自主题: JobHunting版 - 请教:find Kth prime number
Sieve of Eratosthenes 已经很好了,如果只是面试,这个应该足够
再优化可以看看其他的sieve方法,在wiki下面有
h********7
发帖数: 485
29
来自主题: Postdoc版 - 贡献我的豁免timeline
我豁免的理由用得是MITBBS里面的模板。你找找很多。我的见最下。
我不清楚到底你的会不会影响到DOS的判断。好像有听说过reason没写好受影响的。你
发发帖子问问怎么补救。
To Whom It May Concern:
This letter is to request a waiver for the 2-year home residence requirement
based on “No Objection Letter” that will be obtained from my home country
(P. R. China). The reasons I would like to apply for a J1 waiver are the
followings:
I have been in the U.S.A. since xxxx, after receiving my Ph.D. degree from
xxx. I am currently employed as a Postdoctoral Researcher at xxx. I am not
... 阅读全帖
m****g
发帖数: 3975
30
其实从每俩年的死亡只有一个人来将, 对一个玩白水的人来说, 是也许只有万分之一的
可能性. 死的人估计大部分是商业游客.
PIN的机制形成需要时间, 如果是冷静地落水, 作出往侧的推力, 肯定是能把自己推出
PIN的空间. 出事的因素(树除外), 要么不懂, 要么蒙了+运气不好. SIEVE出事也很常
见. 但SIEVE一般出现在IV级里.
S********t
发帖数: 18987
31
不是
The semolina is sprinkled with water and rolled with the hands to form small
pellets, sprinkled with dry flour to keep them separate, and then sieved.
Any pellets which are too small to be finished granules of couscous and fall
through the sieve are again rolled and sprinkled with dry semolina and
rolled into pellets. This process continues until all the semolina has been
formed into tiny granules of couscous. This process is very labour-intensive.
c******n
发帖数: 4965
32
来自主题: gardening版 - I am so tired
I made a sieve, and sieved the dirt in my yard for an area about 5meter x 5
meter , 1 foot deep.
damn it's so much heavy work. but it's good that I cleaned all the little
pebbles in the soil, there is so much construction junk in the yard
d**********o
发帖数: 1321
33
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
简化数据
261个test文件:
完全正确的测试文件117个,占44.8%;
完全没做的测试文件 19个,占 7.3%;
其余半对的不对的,我自己也没时间去数
就让同专业的小伙伴们帮忙来数、来作鉴定、指导我吧。
compiler框架搭起来,多少也该给些分的吧~~
我不认为难,但我真的是没有足够的时间,实在是写不完这牛毛一样多的测试~~ *_^
上一贴最后总结部分重贴如下(不同专业的读者可以完全忽略上一贴):
a00 (Output OK) a00 (Output OK)
a001 (Output OK) a001 (Output OK)
a002 (Output OK) a002 (Output OK)
a009 (Output OK) a009 (Output OK)
a01 (Output OK) ... 阅读全帖
d**********o
发帖数: 1321
34
来自主题: WebRadio版 - 潜水员冒泡兼征版友意见
简化数据
261个test文件:
完全正确的测试文件117个,占44.8%;
完全没做的测试文件 19个,占 7.3%;
其余半对的不对的,我自己也没时间去数
就让同专业的小伙伴们帮忙来数、来作鉴定、指导我吧。
compiler框架搭起来,多少也该给些分的吧~~
我不认为难,但我真的是没有足够的时间,实在是写不完这牛毛一样多的测试~~ *_^
上一贴最后总结部分重贴如下(不同专业的读者可以完全忽略上一贴):
a00 (Output OK) a00 (Output OK)
a001 (Output OK) a001 (Output OK)
a002 (Output OK) a002 (Output OK)
a009 (Output OK) a009 (Output OK)
a01 (Output OK) ... 阅读全帖
T**********e
发帖数: 29576
35

这个wiki上就有解释, gun powder corning的工艺和原理早研究好了,历史上就是采
用火药加水受潮板结的过程:
In order for gunpowder to explode effectively, the combustible mixture needs
to be reduced to the smallest possible particle sizes as intimately mixed
with one another as possible. But once mixed, for better results in a gun it
was discovered that the final product should be in the form of individual,
dense, grains (originally the size of corn) which allow the fire to spread
quickly from grain to grain, much as straw or twigs catch... 阅读全帖
a*********f
发帖数: 101
36
Science. 2011 May 13;332(6031):845-8.
Experimental evidence supports a sex-specific selective sieve in
mitochondrial genome evolution.
Abstract
Mitochondria are maternally transmitted; hence, their genome can only make a
direct and adaptive response to selection through females, whereas males
represent an evolutionary dead end. In theory, this creates a sex-specific
selective sieve, enabling deleterious mutations to accumulate in
mitochondrial genomes if they exert male-specific effects. We test... 阅读全帖
s******r
发帖数: 2876
37
这么说吧,如果有female只能生出female,那么male恐怕还是倾向于寻找正常的female
,不至于导致种族灭绝。

Science. 2011 May 13;332(6031):845-8.
Experimental evidence supports a sex-specific selective sieve in
mitochondrial genome evolution.
Abstract
Mitochondria are maternally transmitted; hence, their genome can only make a
direct and adaptive response to selection through females, whereas males
represent an evolutionary dead end. In theory, this creates a sex-specific
selective sieve, enabling deleterious mutations to accumulate in
mit... 阅读全帖
X******2
发帖数: 5859
38
http://blogs.ethz.ch/kowalski/2013/05/21/bounded-gaps-between-p
And so it came to pass, that an almost millenial quest found a safe resting
place…
Like all analytic number theorists, I’ve been amazed to learn that Yitang
Zhang has proved that there exist infinitely many pairs of prime numbers ell

So, how did he do it?
Well, since the paper just became available, I don’t have anything
intelligent to say yet on the new ideas that he introduced (but ... 阅读全帖

m****t
发帖数: 570
39
来自主题: Mathematics版 - 老张最新采访
http://nautil.us/issue/5/fame/the-twin-prime-hero

The Twin Prime Hero
–Rags, riches, and fame in mathematics

MICHAEL SEGAL

Yitang “Tom” Zhang spent the seven years following the completion of his
Ph.D. in mathematics floating between Kentucky and Queens, working for a
chain of Subway restaurants, and doing odd accounting work. Now he is on a
lecture tour that includes stops at Harvard, Columbia, Caltech, and
Princeton, is fielding multiple professorship offers, and spends two hours a
day d... 阅读全帖
x********i
发帖数: 905
40
来自主题: Mathematics版 - 2015 Shaw prize: Faltings and Iwaniec
The Shaw Prize in Mathematical Sciences 2015 is awarded to Gerd Faltings,
Managing Director at Max Planck Institute for Mathematics in Bonn, Germany,
and Henryk Iwaniec, New Jersey Professor of Mathematics at Rutgers
University, USA, for their introduction and development of fundamental tools
in number theory, allowing them as well as others to resolve some
longstanding classical problems.
Number theory concerns whole numbers, prime numbers, and polynomial
equations involving them. The central p... 阅读全帖
t***k
发帖数: 144
t****e
发帖数: 329
42
来自主题: NanoST版 - 多孔材料历史(四)
1. KRESGE CT, LEONOWICZ ME, ROTH WJ, et al.
ORDERED MESOPOROUS MOLECULAR-SIEVES SYNTHESIZED BY A LIQUID-CRYSTAL TEMPLATE
MECHANISM
NATURE 359 (6397): 710-712 OCT 22 1992
Times Cited: 5761

2. BECK JS, VARTULI JC, ROTH WJ, et al.
A NEW FAMILY OF MESOPOROUS MOLECULAR-SIEVES PREPARED WITH LIQUID-CRYSTAL
TEMPLATES
JOURNAL OF THE AMERICAN CHEMICAL SOCIETY 114 (27): 10834-10843 DEC 30 1992
Times Cited: 4485
引用次数还是Nature多的
关于MCM-50 我也没做过 但是mobil公司的人还有赵东元老师都说过这是个稳定的
mesoporous材料的, 除去模版之后,仍然保持有序结
w*******y
发帖数: 60932
43
Amazon has this Complete Sand & Water Beach Play Set: Includes Toys,
Watering Can, Bucket, Shovel and more for $8.99-
Product Description
Everything you need to have fun at the beach is right here in this bag! This
set includes: 5 inch watering can 9.5 inch shovel-sieve 9.5 inch spade 9.5
inch rake 2 sand molds bucket with a handle 6.5 inch diameter sieve All
packed into a reusable zipper bag!
Link:
http://www.amazon.com/Complete-Sand-Water-Beach-Play/dp/B000TG6IME/ref=sr_1_1?ie=UTF8&s=toys-and-
b*********f
发帖数: 1585
44
来自主题: ChinaNews版 - Re: 从哥德巴赫猜想谈民主 (转载)
【 以下文字转载自 Mathematics 讨论区 】
发信人: constantinej (Constantine), 信区: Mathematics
标 题: Re: 从哥德巴赫猜想谈民主 (转载)
发信站: BBS 未名空间站 (Mon Mar 26 17:22:39 2012, 美东)
不知道某些人是不是真是做数论的,如果真是的话,有这番言论就不应该了。公平地说,
自从改革开放以后,国内媒体对陈景润和哥德巴赫猜想的宣传确实是过头的,包括对华
罗庚的宣传也有过头之嫌。但那时是时势所迫,中国百废待兴,需要一些偶像来鼓舞士
气。这个暂且不论。
至于哥德巴赫猜想的地位,这么说吧,它绝对不是数论里面的核心问题,更不是什么皇
冠上的
明珠。但是,由于它已经被提出有两百多年了,难度摆在那里,就像Fermat's Last
Theorem,
象征意义多于它的实际意义。但是倘若有机会攻克这样的问题而不取,那肯定脑子有问
题吧。
你可能说Andrew Wiles 是证明了Taniyama-Shimura, 这个比FLT有意思多了。可是歌德
巴赫,又何尝不是如此呢。想想上世纪60,70年代的时候,... 阅读全帖
w********9
发帖数: 8613
45
关于发音,这个是最有名的诗。
Gerard Nolst Trenité - The Chaos (1922)
Dearest creature in creation
Studying English pronunciation,
I will teach you in my verse
Sounds like corpse, corps, horse and worse.
I will keep you, Susy, busy,
Make your head with heat grow dizzy;
Tear in eye, your dress you'll tear;
Queer, fair seer, hear my prayer.
Pray, console your loving poet,
Make my coat look new, dear, sew it!
Just compare heart, hear and heard,
Dies and diet, lord and word.
Sword and sward, reta... 阅读全帖
s****r
发帖数: 31686
46
我不明白, 为啥需要滤网(sieve)?

all
C********n
发帖数: 6682
47
来自主题: Military版 - 朱学勤抄袭的证据 --- 5
7.21朱学勤惊天抄袭证据(一):小女子点朱学勤的死穴
7.23朱学勤惊天抄袭证据(二):第七章第五节
7.25最新朱学勤惊天抄袭证据(三):第八章第一节
小女子

这是小女子考证的朱学勤先生的第三个章节,《道德理想国的覆灭》第八
章第一节(共8页,276页至283页)。结果与上两次考证(分别为第八章第五节——共5
页,298-302页;第七章第五节——共8页,266-273页)完全相同,这三节都来自Blum
一书。本节除了两段,所有内容出现在Blum一书。小女子本乃幽默之人(看本人的第一
篇就知道了),可是,面对这样严峻得不能再严峻的事实,已经幽默不起来鸟。
仅以小女子的这三篇考证,朱学勤抄袭一事,到此可以铁板钉钉了。这还不
包括Isaiah和邢玉思两位大哥的指控。网上有朱粉这样辩解:“像这类外国历史的出处
一般都不是原创,而是分别收集自各种不同的外文原文资料或者国内各种翻译过来的有
关资料。但又是根据各种资料结合个人的观点进行取舍的,所以很难说谁抄谁,或者,
因为作者将各种资料揉和得很好,因而有效地表达了自己的观点,应该就不... 阅读全帖
s*****V
发帖数: 21731
48
【 以下文字转载自 Mathematics 讨论区 】
发信人: constantinej (Constantine), 信区: Mathematics
标 题: Re: 从哥德巴赫猜想谈民主 (转载)
发信站: BBS 未名空间站 (Mon Mar 26 17:22:39 2012, 美东)
不知道某些人是不是真是做数论的,如果真是的话,有这番言论就不应该了。公平地说,
自从改革开放以后,国内媒体对陈景润和哥德巴赫猜想的宣传确实是过头的,包括对华
罗庚的宣传也有过头之嫌。但那时是时势所迫,中国百废待兴,需要一些偶像来鼓舞士
气。这个暂且不论。
至于哥德巴赫猜想的地位,这么说吧,它绝对不是数论里面的核心问题,更不是什么皇
冠上的
明珠。但是,由于它已经被提出有两百多年了,难度摆在那里,就像Fermat's Last
Theorem,
象征意义多于它的实际意义。但是倘若有机会攻克这样的问题而不取,那肯定脑子有问
题吧。
你可能说Andrew Wiles 是证明了Taniyama-Shimura, 这个比FLT有意思多了。可是歌德
巴赫,又何尝不是如此呢。想想上世纪60,70年代的时候,... 阅读全帖
w********9
发帖数: 8613
49
来自主题: Military版 - 惊讶于德国人的英语能力
这是Shorter Oxford American English Dictionary第五版列出的与德语或者日耳曼语
相关的英语词根或词汇。
-at, suffix2. + -dom, suffix. + -ed, suffix1. + -ed, suffix2. + -en, suffix1
+ -en, suffix2 + -en, suffix5 + -en, suffix6 + -er, suffix1. + -er, suffix3
. + -er, suffix5. + -est, suffix1. + -est, suffix2. + -et, suffix2. + -eth,
suffix1. + -hood, suffix. + -ing, suffix1. + -ing, suffix3. + -ish, suffix1.
+ -kin, suffix. + -le, suffix1 + -le, suffix3 + -less, suffix. + -ling,
suffix1. + -ling, suffix2 + -ly, suffix1. + -ly, s... 阅读全帖
t****z
发帖数: 8931
50
可怜的张汤姆,在美国被当成一个屁
被锁男,民运,轮子吹捧成具有划时代意义,人类科学发展里程碑,光照千秋,彪炳史
册。
google了ABC,CBS,NBC,fox四大新闻网,外加cnn,纽约时报,华盛顿邮报两年报道
纽约时报科学版角落里一个消息
NBC一个小新闻,下面可怜6个评论,大概是nbc历史上评论第一少的新闻吧,第一个评
论是
This is a Prime example of nobody cares
为什么说张汤姆没什么价值呢
听我娓娓道来
一个数论有怎样的价值,取决于1.新理论新思维新方法运用,2.数学其他命题相关性,
3,实际应用转化成生产力,4.对命题猜想的解决程度
1新理论新思维新方法运用
滑铁卢大学统计与精算学教授说张汤姆使用的数学技巧不具备革新性 张汤姆使用是传
统技巧,就是的筛理论Sieve theory,从维果·布朗到陈景润,用得很烂了
2.
黎曼猜想,在今天的数学文献有上千条数学命题是以黎曼猜想推广形式的成立为前提的
。 黎曼猜想及其推广形式一旦被证明, 那些数学命题就可能荣升为定理; 而张益堂
这个比较孤立偏门,没有什么影响力。
3.实际应用价值,转化成... 阅读全帖
1 2 3 4 下页 末页 (共4页)