<?php

header("HTTP/1.1 301 Moved Permanently");
header("Location: http://eff.org/awards/coop");
exit();

include("eff_setup2.php");


$smarty = new EFFSmarty;

$smarty->assign('title','Cooperative Computing Awards');

// if breadcrumb == true, then it fill in the right trail in the issue
// array
$smarty->assign('breadcrumb','true');

// example:
$issue = array("Awards" => "/awards/");

//Creative Commons - If you need to turn OFF the CC license, set cc = false
//$smarty->assign('cc',"false");

$smarty->assign('issue',$issue);

$content  = '

<div id="featuretext">

<DIV ALIGN="CENTER">
<IMG SRC="images/coop-map.png" ALIGN=ABSMIDDLE WIDTH="356" HEIGHT="80"
ALT="EFF Cooperative Computing Awards" usemap="#coop-map" border="0">
<MAP NAME="coop-map">
<AREA SHAPE="RECT" ALT="Intro" COORDS="9,9,350,54" HREF="coop.php">
<AREA SHAPE="rect" alt="Rules" COORDS="16,58,56,77" HREF="coop-prime-rules.php">
<AREA SHAPE="rect" ALT="Frequently Asked Questions" COORDS="63,58,216,77" HREF="coop-faq.php">
<AREA SHAPE="rect" ALT="News/Status" COORDS="225,58,270,77" HREF="coop-news.php">
<AREA SHAPE="rect" ALT="Resources" COORDS="277,58,344,77" HREF="coop-prime-info.php">
</MAP>

<BR>
</DIV>

<P>
The Electronic Frontier Foundation (EFF), the first civil liberties
group dedicated to protecting the health and growth of the Internet, is sponsoring
cooperative computing awards, with over half a million dollars in prize
money, to encourage ordinary Internet users to contribute to solving huge
scientific problems.
</P>

<P>
Through the EFF Cooperative Computing Awards, EFF will confer prizes of:</P>

<UL TYPE="SQUARE">

<LI> <B>$50,000</B> to the first individual or group who discovers<BR>
<B>a prime number with at least 1,000,000 decimal digits</B> (<A HREF="20000406_coopaward_pr.html">awarded
Apr. 6, 2000</A>)
<BR></LI>

<LI> <B>$100,000</B> to the first individual or group who discovers<BR>
<B>a prime number with at least 10,000,000 decimal digits</B>
<BR></LI>

<LI> <B>$150,000</B> to the first individual or group who discovers<BR>
<B>a prime number with at least 100,000,000 decimal digits</B>
<BR></LI>

<LI> <B>$250,000</B> to the first individual or group who discovers<BR>
<B>a prime number with at least 1,000,000,000 decimal digits</B></LI>

</UL>

<P>Please note that these awards are designed to recognize efforts in
collaborative computing, NOT mathematics research. EFF is not a
mathematics research organization and is not in a position to help
evaluate, publicize, or reward new mathematical ideas or discoveries.</P>

<P>(Prize money comes from a special donation provided by an individual EFF supporter, earmarked
specifically for this project. Prize money does NOT come from EFF membership
dues, corporate or foundation grants, or other general EFF funds.)</P>

<P>
EFF hopes to spur the technology of cooperative networking and encourage Internet users
worldwide to join together in solving scientific problems involving massive
computation.  EFF is uniquely situated to sponsor these awards, since part
of its mission is to encourage the harmonious integration of Internet
innovations into the whole of society.
</P>

<P>
"The EFF awards are about cooperation," said John Gilmore, EFF co-founder
and project leader for the awards.  "Prime numbers are important in
mathematics and encryption, but the real message is that many other
problems can be solved by similar methods."
</P>

<P>
Finding these prime numbers will be no simple task, given today\'s
computational power.  It has taken mathematicians years to uncover and
confirm new largest known primes.  However, the computer industry produces
millions of new computers each year, which sit idle much of the time,
running screen savers or waiting for the user to do something.  EFF is
encouraging people to pool their computing power over the Internet, to work
together to share this massive resource.  In the process, EFF hopes to
inspire experts to apply collaborative computing to large problems, and
thereby foster new technologies and opportunities for everyone.
</P>

<H3>For more information</H3>


<P>
<A HREF="coop-prime-release1.php">Press release about the awards program (Mar. 31, 1999)</A><BR>
<A HREF="coop-prime-rules.php">Official rules for the awards</A><BR>
<A HREF="coop-news.php">Cooperative Computing Award News</A><BR>
<A HREF="coop-faq.php">Frequently Asked Questions about the awards</A><BR>
<A HREF="coop-prime-info.php">Prime Number Resources and Information</A>
</P>

<P>
An interesting story about a recently completed venture into cooperative 
computing may be read in this:
<A HREF="http://www.nytimes.com/library/tech/99/08/biztech/articles/27code.html">
<B>New York Times article</B></A> (registration required).  The article talks of the 
importance of prime numbers in encryption.
 </P>

<P>[Note to EFF members: Your membership dues do NOT go into the Cooperative
Computing Awards fund.  The CCA program is funded entirely by a single
earmarked individual donation.]
</P>

</div>
';

global $REQUEST_URI;
$smarty->assign('content',$content);
$smarty->display('generic.tpl',$REQUEST_URI);

?>
