content
stringlengths
86
994k
meta
stringlengths
288
619
Number of 6's between 1 to 18000 Is there a smart way to solve this..? I can see a brute force type of way.... by looking at the number of 6's from 1-100, then 101 to 200 etc... and special cases for 601-700 etc... but it seems very long, tedius and prone to error? Thanks for any ideas. I would suspect you would work...
{"url":"http://www.purplemath.com/learning/viewtopic.php?p=4306","timestamp":"2014-04-18T13:33:42Z","content_type":null,"content_length":"25642","record_id":"<urn:uuid:dc0dcffa-2e30-46ab-92e8-5dd65da0c7f5>","cc-path":"CC-MAIN-2014-15/segments/1397609533689.29/warc/CC-MAIN-20140416005213-00326-ip-10-147-4-33.ec2.interna...
Catholic Encyclopedia (1913)/Philippe de la Hire From Wikisource Catholic Encyclopedia (1913), Volume 8 ←Jean de La Haye Philippe de la Hire Diocese of Lahore→ Mathematician, astronomer, physicist, naturalist, and painter, b. in Paris, 18 March, 1640; d. in Paris, 21 April, 1718; wa...
{"url":"http://en.wikisource.org/wiki/Catholic_Encyclopedia_(1913)/Philippe_de_la_Hire","timestamp":"2014-04-20T03:56:43Z","content_type":null,"content_length":"26212","record_id":"<urn:uuid:7799cac8-4b4c-4ed5-9a74-beda8c4adc71>","cc-path":"CC-MAIN-2014-15/segments/1397609537864.21/warc/CC-MAIN-20140416005217-00478-ip-...
Re: [svg2] radialGradient @fr constraints From: Jasper van de Gronde <[email protected]> Date: Fri, 31 Aug 2012 09:20:45 +0200 Message-ID: <[email protected]> To: [email protected] On 30-08-12 12:44, Dr. Olaf Hoffmann wrote: > Jasper van de Gronde: >> If you take the absolute value before interpolating, then ...
{"url":"http://lists.w3.org/Archives/Public/www-svg/2012Aug/0154.html","timestamp":"2014-04-20T11:47:57Z","content_type":null,"content_length":"10777","record_id":"<urn:uuid:297c3710-720f-4f38-98f1-3891711e18a7>","cc-path":"CC-MAIN-2014-15/segments/1397609538423.10/warc/CC-MAIN-20140416005218-00554-ip-10-147-4-33.ec2.i...
User-Defined Operations for Reduce and Scan Next: The Semantics of Up: Collective Communications Previous: Scan user-defined operations reduce, user-defined scan, user-defined MPI_Op_create(MPI_User_function *function, int commute, MPI_Op *op) MPI_OP_CREATE( FUNCTION, COMMUTE, OP, IERROR) EXTERNAL FUNCTION MPI_OP_...
{"url":"http://www.netlib.org/utk/papers/mpi-book/node118.html","timestamp":"2014-04-19T14:44:00Z","content_type":null,"content_length":"5984","record_id":"<urn:uuid:be984ebb-84fd-49e2-9918-b779de9ffd96>","cc-path":"CC-MAIN-2014-15/segments/1397609537271.8/warc/CC-MAIN-20140416005217-00102-ip-10-147-4-33.ec2.internal.w...
Kids.Net.Au - Encyclopedia > Disjunctive syllogism Disjunctive syllogism is a , simple argument form Either P or Q. Not P. Therefore, Q. Roughly, we are told that it has to be one or the other that is true; then we are told that it is not the one that is true; so we infer that it has to be the other that is...
{"url":"http://encyclopedia.kids.net.au/page/di/Disjunctive_syllogism","timestamp":"2014-04-16T16:26:14Z","content_type":null,"content_length":"12577","record_id":"<urn:uuid:d1a5ef73-5696-4685-86e3-dca331912813>","cc-path":"CC-MAIN-2014-15/segments/1398223205375.6/warc/CC-MAIN-20140423032005-00000-ip-10-147-4-33.ec2.in...
Franconia, VA Math Tutor Find a Franconia, VA Math Tutor ...I have taken the ASVAB myself, and I achieved a very high score. I have a knowledge base that is sufficient for taking, and doing well in, the ASVAB. As an English instructor, I can certainly help with the English sections, but I am also educated in scienc...
{"url":"http://www.purplemath.com/franconia_va_math_tutors.php","timestamp":"2014-04-18T19:23:26Z","content_type":null,"content_length":"24152","record_id":"<urn:uuid:f3ff3f87-0f7e-435f-a21d-8d49d19871e1>","cc-path":"CC-MAIN-2014-15/segments/1398223201753.19/warc/CC-MAIN-20140423032001-00248-ip-10-147-4-33.ec2.internal...
Woodacre Trigonometry Tutor ...G. has a daughter who is currently in high school. He enjoys music, hiking and geocaching.Dr. Andrew G. has a Ph.D. from Caltech in environmental engineering science with a minor in numerical 13 Subjects: including trigonometry, calculus, physics, geometry ...I am well regarded as a...
{"url":"http://www.purplemath.com/woodacre_ca_trigonometry_tutors.php","timestamp":"2014-04-19T17:36:33Z","content_type":null,"content_length":"23767","record_id":"<urn:uuid:d7217a77-4b29-432e-bcce-fdd11656fcff>","cc-path":"CC-MAIN-2014-15/segments/1398223211700.16/warc/CC-MAIN-20140423032011-00587-ip-10-147-4-33.ec2.i...
SymMath Application Orbital Graphing© Mark David Ellison Wittenberg University P. O. Box 720 Springfield, OH 45501 United States mail to: [email protected] This goal of this document is to help students become familiar with pr...
{"url":"http://www.chemeddl.org/alfresco/service/org/chemeddl/symmath/app?app_id=48&guest=true","timestamp":"2014-04-16T10:22:09Z","content_type":null,"content_length":"9147","record_id":"<urn:uuid:28fe7899-ecdf-44eb-a765-735e4f21eaf5>","cc-path":"CC-MAIN-2014-15/segments/1397609523265.25/warc/CC-MAIN-20140416005203-00...
Fast Multiplication of Normalized 16 bit Numbers with SSE2 If you are compositing pixels with 16 bits per component, you often need this computation: uint16_t a, b, r; r = (a * b + 0x7fff) / 65535; There is a well-known way to do this quickly without a division: uint32_t t; t = a * b + 0x8000; r = (t + (t >> 16)) >> 16...
{"url":"http://advogato.org/person/ssp/diary.html?start=13","timestamp":"2014-04-18T10:53:22Z","content_type":null,"content_length":"7273","record_id":"<urn:uuid:51ee6bd7-b8a1-4c42-9260-fc948c1537e4>","cc-path":"CC-MAIN-2014-15/segments/1397609533308.11/warc/CC-MAIN-20140416005213-00084-ip-10-147-4-33.ec2.internal.warc...
Semi-analytical solution for the optimal low-thrust deflection of near-Earth objects Colombo, C. and Vasile, M. and Radice, G. (2009) Semi-analytical solution for the optimal low-thrust deflection of near-Earth objects. Journal of Guidance, Control and Dynamics, 32 (3). pp. 796-809. ISSN 0731-5090 PDF (strathprints01...
{"url":"http://strathprints.strath.ac.uk/14571/","timestamp":"2014-04-25T09:38:06Z","content_type":null,"content_length":"26268","record_id":"<urn:uuid:f15225c5-b3e6-4e6b-82a1-efdec962e3ef>","cc-path":"CC-MAIN-2014-15/segments/1398223211700.16/warc/CC-MAIN-20140423032011-00047-ip-10-147-4-33.ec2.internal.warc.gz"}
MathGroup Archive: January 2004 [00647] [Date Index] [Thread Index] [Author Index] RE: Question: formatting text, sections • To: mathgroup at smc.vnet.net • Subject: [mg45938] RE: [mg45903] Question: formatting text, sections • From: "D...
{"url":"http://forums.wolfram.com/mathgroup/archive/2004/Jan/msg00647.html","timestamp":"2014-04-17T15:36:03Z","content_type":null,"content_length":"39887","record_id":"<urn:uuid:95007604-e597-48e7-87f7-3e6b8c94bf0b>","cc-path":"CC-MAIN-2014-15/segments/1397609530136.5/warc/CC-MAIN-20140416005210-00484-ip-10-147-4-33.e...
CMU Summer School Recap, Part 5 (Ashlagi and Conitzer) October 1, 2012 by timroughgarden This is the fifth and final post in a series recapping the talks at the CMU summer school on algorithmic economics (the first four: #1, #2, #3, #4). See the summer school site for abstracts, slides, and (eventually) videos. Itai As...
{"url":"http://agtb.wordpress.com/2012/10/01/cmu-summer-school-recap-part-5-ashlagi-and-conitzer/","timestamp":"2014-04-20T11:25:46Z","content_type":null,"content_length":"55817","record_id":"<urn:uuid:209dd12f-39ea-4081-adef-edaf5ae2cc9e>","cc-path":"CC-MAIN-2014-15/segments/1397609538423.10/warc/CC-MAIN-2014041600521...
An Evolutionary Framework for Association Testing in Resequencing Studies • We are sorry, but NCBI web applications do not support your browser and may not function properly. More information PLoS Genet. Nov 2010; 6(11): e1001202. An Evolutionary Framework for Association Testing in Resequencing Studies Jonathan ...
{"url":"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2978703/?tool=pubmed","timestamp":"2014-04-17T10:51:52Z","content_type":null,"content_length":"180076","record_id":"<urn:uuid:beee1580-704d-4c41-a14d-b87bfecf12f7>","cc-path":"CC-MAIN-2014-15/segments/1397609527423.39/warc/CC-MAIN-20140416005207-00578-ip-10-147-4-33.e...
Hartsdale Math Tutor Find a Hartsdale Math Tutor ...I have taught Math, ELA, Science, Social Studies, and Music for every grade from K through 5th. Additionally, three of my current Wyzant Students and two of my private students are in elementary school. I have been a very active tutor in excellent standing with Wy...
{"url":"http://www.purplemath.com/Hartsdale_Math_tutors.php","timestamp":"2014-04-16T07:51:37Z","content_type":null,"content_length":"23674","record_id":"<urn:uuid:f85ccda7-dad6-42a3-83c0-9bad0eefb75b>","cc-path":"CC-MAIN-2014-15/segments/1398223202457.0/warc/CC-MAIN-20140423032002-00333-ip-10-147-4-33.ec2.internal.war...
Exponential Functions by Amy Burke and Emily Groenink -The big difference about exponential functions is that the variable is the power rather than the base. For example, rather than looking at f(x)=x^2, expontential functions deal with things such as g (x)=2^x. Evaluating an exponential function is the same as other f...
{"url":"http://hs-mathematics.wikispaces.com/Exponential+Functions?responseToken=09d74122e35556090d635f82d55ed8827","timestamp":"2014-04-25T02:31:15Z","content_type":null,"content_length":"70932","record_id":"<urn:uuid:e0797943-5c16-4d4e-b33f-d356c6fb6386>","cc-path":"CC-MAIN-2014-15/segments/1398223207985.17/warc/CC-M...
What Is Marginal Costing? Marginal costing is the amount that the variable cost of producing an item goes up for each unit manufactured. For instance, if 20 cars are built at a cost of $10,000 US Dollars (USD), and another is built raising the cost by $4,000 USD for a total of $14,000 USD, the marginal costing for one ...
{"url":"http://www.wisegeek.com/what-is-marginal-costing.htm","timestamp":"2014-04-21T08:39:31Z","content_type":null,"content_length":"64927","record_id":"<urn:uuid:770f6be0-6627-4d7a-9466-7dbf3e2cd60e>","cc-path":"CC-MAIN-2014-15/segments/1397609539665.16/warc/CC-MAIN-20140416005219-00530-ip-10-147-4-33.ec2.internal.w...
[1] Axel Gandy and Georg Hahn. MMCTest - a safe algorithm for implementing multiple Monte Carlo tests. Scandinavian Journal of Statistics, 2014. Early View. Also available via arXiv:1209.3963 [stat.ME]. [ bib | DOI | http ] [2] F. Din-Houn Lau and Axel Gandy. Optimality of non-restarting cusum charts. Sequential ...
{"url":"http://www2.imperial.ac.uk/~agandy/lit.html","timestamp":"2014-04-19T09:37:41Z","content_type":null,"content_length":"23733","record_id":"<urn:uuid:80ca63d1-f40b-4c96-9316-fb9f61e78673>","cc-path":"CC-MAIN-2014-15/segments/1397609537097.26/warc/CC-MAIN-20140416005217-00361-ip-10-147-4-33.ec2.internal.warc.gz"}
perplexus.info :: Probability : A blue taxi A crime has occured in Carborough, involving a taxi. The police interviewed an eyewitness, who stated that the taxi involved was blue. The police know that 85% of taxis in Carborough are blue, the other 15% being green. They also know that statistically witnesses in these si...
{"url":"http://perplexus.info/show.php?pid=77&cid=251","timestamp":"2014-04-21T12:08:46Z","content_type":null,"content_length":"12716","record_id":"<urn:uuid:baade4f3-5f0a-4164-8389-fdeb927ed384>","cc-path":"CC-MAIN-2014-15/segments/1397609539776.45/warc/CC-MAIN-20140416005219-00543-ip-10-147-4-33.ec2.internal.warc.gz"...
Desoto Algebra Tutor Find a Desoto Algebra Tutor ...Thanks for WyzAnt, I could help kids around me in this area, hope I could reach you too. I have always worked with kids, And I have been enjoying working with children. So, please feel free to let me know if I can help you. 13 Subjects: including algebra 1, alge...
{"url":"http://www.purplemath.com/Desoto_Algebra_tutors.php","timestamp":"2014-04-21T02:44:49Z","content_type":null,"content_length":"23787","record_id":"<urn:uuid:87c30e3c-d776-406e-b732-78307bfc9ad9>","cc-path":"CC-MAIN-2014-15/segments/1398223201753.19/warc/CC-MAIN-20140423032001-00253-ip-10-147-4-33.ec2.internal.wa...
CGTalk - scirpted controller - shortest distance to splineShape (knots) 11-18-2010, 05:47 AM For some reason search is down... if this has been covered, I apologize. Inspired by the hexagon screen forms here. (http://www.notcot.com/archives/2010/11/mercedes-benz-sculpture-experi.php) And by the work of Ali Torabi (http...
{"url":"http://forums.cgsociety.org/archive/index.php/t-935828.html","timestamp":"2014-04-18T21:06:37Z","content_type":null,"content_length":"9166","record_id":"<urn:uuid:be749552-ffdb-4e6b-9617-3b62f0d0967a>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.9/warc/CC-MAIN-20140416005215-00141-ip-10-147-4-33.ec2.inter...
Got Homework? Connect with other students for help. It's a free community. • across MIT Grad Student Online now • laura* Helped 1,000 students Online now • Hero College Math Guru Online now Here's the question you clicked on: Whic sentence is correct? a) It's the wonderfulest recipe. b) ...
{"url":"http://openstudy.com/updates/4f04e1a9e4b075b56651f69f","timestamp":"2014-04-20T13:44:23Z","content_type":null,"content_length":"33019","record_id":"<urn:uuid:8c1a24ac-2567-44d6-b8d5-1f68aa84fcf9>","cc-path":"CC-MAIN-2014-15/segments/1397609538787.31/warc/CC-MAIN-20140416005218-00388-ip-10-147-4-33.ec2.internal....
Foundations of Algebra Chapter 12, Lesson 9 12-9.A find surface areas of familiar solid figures The side of the square base of a prism is 4.5 cm and the height of the prism is 9.5 cm. Find the surface area of the prism. 12-9.B find volumes of familiar solid figures The diameter of a sphere is 1 foot. Find the volume of...
{"url":"http://www.sadlier-oxford.com/math/mc_prerequisite.cfm?sp=student&grade=8&id=1871","timestamp":"2014-04-18T23:15:19Z","content_type":null,"content_length":"15080","record_id":"<urn:uuid:368a4915-330d-495c-a45e-c57b0fa9f263>","cc-path":"CC-MAIN-2014-15/segments/1398223211700.16/warc/CC-MAIN-20140423032011-00116-...
Math Help April 30th 2008, 04:02 PM #1 Apr 2008 help please asap 2 quick questions: Find the equation of the line tangent to the curve y^2+xy+x^3=7 at the point x=2. Given the function f(x)=ln(3+sinx) on the interval [0,7] a. at which values of x does f have local max and local min do you know ...
{"url":"http://mathhelpforum.com/calculus/36723-help-please-asap.html","timestamp":"2014-04-19T16:14:13Z","content_type":null,"content_length":"55557","record_id":"<urn:uuid:f3a0f2b4-1c31-4854-8532-def4c3776381>","cc-path":"CC-MAIN-2014-15/segments/1397609537271.8/warc/CC-MAIN-20140416005217-00457-ip-10-147-4-33.ec2.in...
Help: Poisson-based problem September 17th 2009, 05:27 PM #1 Sep 2009 Help: Poisson-based problem I have a Poisson-based question that I am not sure how to approach and solve. A processor receives groups of data bits with a Poisson arrival rate of L. The probability of an error in receiving an erroneous bit...
{"url":"http://mathhelpforum.com/advanced-statistics/102886-help-poisson-based-problem.html","timestamp":"2014-04-20T07:07:06Z","content_type":null,"content_length":"31378","record_id":"<urn:uuid:38c1c62a-6805-462b-8540-f0cba3e667f0>","cc-path":"CC-MAIN-2014-15/segments/1397609538022.19/warc/CC-MAIN-20140416005218-0019...
Diablo 3 Skills Monster Power Analysis by Drothvader When I first heard about the Monster Power system with 1.0.5 I was pretty excited. Like really excited. Not only is the game going to be more challenging, but there would be better rewards... right? I keep seeing people say "MP1 is the most efficient way to farm" and...
{"url":"http://www.diablo3skills.net/","timestamp":"2014-04-18T18:11:19Z","content_type":null,"content_length":"89557","record_id":"<urn:uuid:1b554f4e-8bf1-4eba-aef4-40782dbb60b3>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.7/warc/CC-MAIN-20140416005215-00140-ip-10-147-4-33.ec2.internal.warc.gz"}
Inductance of Composite Conductor Lines We will consider a single phase 2 wire system. It consists of two conductors say P and Q which are composite conductors. The arrangement of conductors is shown in the Fig. 1. Conductor P is consisting of x identical, parallel filaments. Each of the filament carries a current of I...
{"url":"http://yourelectrichome.blogspot.com/2011/11/inductance-of-composite-conductor-lines.html","timestamp":"2014-04-20T21:21:35Z","content_type":null,"content_length":"82174","record_id":"<urn:uuid:a6053f04-1103-4137-b918-1f00b58c9196>","cc-path":"CC-MAIN-2014-15/segments/1397609539230.18/warc/CC-MAIN-2014041600521...
Precedence for Idiots Please note that this tutorial is undergoing revision and expansion, so the comments that follow it may apply to an earlier version. This version is dated: 5-Dec-2006 The Basics - Getting Your Sums Right If, like me, you don't come from a comp-sci background, then precedence-awareness of operators...
{"url":"http://www.perlmonks.org/index.pl?node_id=587193","timestamp":"2014-04-16T14:59:32Z","content_type":null,"content_length":"46453","record_id":"<urn:uuid:0c521b21-b505-40f0-9df0-a84360f41a20>","cc-path":"CC-MAIN-2014-15/segments/1397609523429.20/warc/CC-MAIN-20140416005203-00439-ip-10-147-4-33.ec2.internal.warc....
Lines, Line Segments and Rays So, you think you know what a line is. Well, your 2nd or 3rd grader just might challenge your definition. Lines, line segments, and rays are all second and third grade math concepts, and although they are similar, they are not the same. What exactly do these geometry terms mean? Read on...
{"url":"http://www.parent-homework-help.com/2011/05/17/lines-line-segments-and-rays/","timestamp":"2014-04-18T10:34:57Z","content_type":null,"content_length":"28949","record_id":"<urn:uuid:04cd6304-17ea-4969-95e3-e1a72a65ab0b>","cc-path":"CC-MAIN-2014-15/segments/1398223202457.0/warc/CC-MAIN-20140423032002-00351-ip-10-...
Calculus (Intermediate Value Theorem) Number of results: 28,459 Verify that the Intermediate Value theorem applies to the indicated interval and find the value of c guaranteed by the theorem. f(x) = x^2 - 6x + 8, [0,3], f(c) = 0 I have no idea how to use the theorem :( Monday, September 27, 2010 at 8:09pm by Jack Math ...
{"url":"http://www.jiskha.com/search/index.cgi?query=Calculus+(Intermediate+Value+Theorem)","timestamp":"2014-04-25T06:12:49Z","content_type":null,"content_length":"38673","record_id":"<urn:uuid:16a2e14b-3581-4637-8034-e7ab616c7ffe>","cc-path":"CC-MAIN-2014-15/segments/1398223210034.18/warc/CC-MAIN-20140423032010-00084...
Bayesian game 34,117pages on this wiki Assessment | Biopsychology | Comparative | Cognitive | Developmental | Language | Individual differences | Personality | Philosophy | Social | Methods | Statistics | Clinical | Educational | Industrial | Professional items | World psychology | Cognitive Psychology: Attention · Dec...
{"url":"http://psychology.wikia.com/wiki/Bayesian_game","timestamp":"2014-04-20T13:06:14Z","content_type":null,"content_length":"86930","record_id":"<urn:uuid:69fdb44c-e80b-458b-b76b-f2f1fb4f84b1>","cc-path":"CC-MAIN-2014-15/segments/1397609538423.10/warc/CC-MAIN-20140416005218-00627-ip-10-147-4-33.ec2.internal.warc.gz...
Bellflower, CA Algebra Tutor Find a Bellflower, CA Algebra Tutor ...I am a Long Beach Poly PACE alumna and recent graduate from UCI (double majored in cognitive science and philosophy) willing to help out students K-12 with their math skills, especially those struggling in Prealgebra, Algebra, Geometry, and Algebra...
{"url":"http://www.purplemath.com/Bellflower_CA_Algebra_tutors.php","timestamp":"2014-04-20T08:38:03Z","content_type":null,"content_length":"24019","record_id":"<urn:uuid:6ea43b28-b6f3-424b-8a3c-14dac50f4d94>","cc-path":"CC-MAIN-2014-15/segments/1397609538110.1/warc/CC-MAIN-20140416005218-00390-ip-10-147-4-33.ec2.inter...
Got Homework? Connect with other students for help. It's a free community. • across MIT Grad Student Online now • laura* Helped 1,000 students Online now • Hero College Math Guru Online now Here's the question you clicked on: which equation has a semetry of x=1/5? y = −5x2 − x + 2 y = −5...
{"url":"http://openstudy.com/updates/50f1b38ae4b0abb3d86fa7f3","timestamp":"2014-04-17T18:40:10Z","content_type":null,"content_length":"47554","record_id":"<urn:uuid:17612309-f00e-4917-80a6-81a1cff2fa76>","cc-path":"CC-MAIN-2014-15/segments/1397609530895.48/warc/CC-MAIN-20140416005210-00641-ip-10-147-4-33.ec2.internal....
0802490492 isbn/isbn13 $$ Compare Prices at 110 Bookstores! New Unger's Bible Handbook discount, buy, cheap, used, books & textbooks Search Results: displaying 1 - 1 of 1 --> 0802490492 ( ISBN ) New Unger's Bible Handbook Author(s): Merrill F. F. Unger, Gary Larson ISBN: 0802490492 ISBN-13: 9780802490490 Forma...
{"url":"http://www.alldiscountbooks.net/_0802490492_i_.html","timestamp":"2014-04-18T09:19:27Z","content_type":null,"content_length":"33951","record_id":"<urn:uuid:9f33e54a-1cf1-40c5-bb46-6b8aa3cb67dc>","cc-path":"CC-MAIN-2014-15/segments/1397609533121.28/warc/CC-MAIN-20140416005213-00335-ip-10-147-4-33.ec2.internal.wa...
(All Articles will appear in a Special Issue of Journal of Engineering Mathematics in 2007) Subharmonic Resonance of a Trapped Wave Near a Vertical Cylinder by Narrow-Banded Strip Theory for Underwater Vehicles in Water of Finite Depth Free-Surface Wave Interaction with a Thick Flexible Dock or Very Large Floating Plat...
{"url":"http://web.mit.edu/flowlab/newmanbook.html","timestamp":"2014-04-19T14:32:47Z","content_type":null,"content_length":"28861","record_id":"<urn:uuid:ff3cffe4-7766-4e31-a346-66b4b2bcdb86>","cc-path":"CC-MAIN-2014-15/segments/1397609537271.8/warc/CC-MAIN-20140416005217-00356-ip-10-147-4-33.ec2.internal.warc.gz"}
vegan News • metaMDS argument noshare = 0 is now regarded as a numeric threshold that always triggers extended dissimilarities (stepacross), instead of being treated as synonymous with noshare = FALSE which always suppresses extended dissimilarities. • Nestedness discrepancy index nesteddisc gained a new argume...
{"url":"http://www.icesi.edu.co/CRAN/web/packages/vegan/news.html","timestamp":"2014-04-18T13:12:33Z","content_type":null,"content_length":"15512","record_id":"<urn:uuid:102d42d4-1980-49cb-86e5-2caf63753220>","cc-path":"CC-MAIN-2014-15/segments/1397609533689.29/warc/CC-MAIN-20140416005213-00506-ip-10-147-4-33.ec2.inter...
Got Homework? Connect with other students for help. It's a free community. • across MIT Grad Student Online now • laura* Helped 1,000 students Online now • Hero College Math Guru Online now Here's the question you clicked on: Am I right? Medal. • 2 months ago • 2 months ago Your ques...
{"url":"http://openstudy.com/updates/52dc0d50e4b05a53debd1dff","timestamp":"2014-04-18T18:26:50Z","content_type":null,"content_length":"35689","record_id":"<urn:uuid:4449fafd-47f6-43e3-88d4-d57189aad973>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.7/warc/CC-MAIN-20140416005215-00659-ip-10-147-4-33.ec2.internal.w...
Continuity Definition March 8th 2007, 03:11 PM #1 Global Moderator Nov 2005 New York City Continuity Definition Here is something that I found contradictory (or appears to be contradictory). I attached as a LaTeX to make it more readable. I do not understand what you wrote. I never studied topology....
{"url":"http://mathhelpforum.com/calculus/12340-continuity-definition.html","timestamp":"2014-04-17T20:03:44Z","content_type":null,"content_length":"37610","record_id":"<urn:uuid:c924cdf7-99ad-401e-9428-d1e0d32fb34e>","cc-path":"CC-MAIN-2014-15/segments/1397609532480.36/warc/CC-MAIN-20140416005212-00656-ip-10-147-4-33....
Counter for items in lists in lists? Ahhhh...thank you all! Actually, I wanted to be able to count the items in the list to check my thinking on a problem, and as it turns out, my thinking was incorrect. So I have a follow up question now Some background: I was given a problem by a friend. He is in a tennis group that ...
{"url":"http://www.velocityreviews.com/forums/t336213-counter-for-items-in-lists-in-lists.html","timestamp":"2014-04-24T21:37:36Z","content_type":null,"content_length":"77279","record_id":"<urn:uuid:64105f53-f667-42a1-a93c-8c979b38dcdd>","cc-path":"CC-MAIN-2014-15/segments/1398223206770.7/warc/CC-MAIN-20140423032006-00...
Cracking Random Number Generators - Part 4 In Part 3 of this series, we investigated the Mersenne Twister, and saw how with 624 consecutive integers obtained from it, we can predict every subsequent integer it will produce. In this part, we will look at how to calculate previous integers that it has produced. We will a...
{"url":"http://jazzy.id.au/default/2010/09/25/cracking_random_number_generators_part_4.html","timestamp":"2014-04-19T14:59:20Z","content_type":null,"content_length":"33383","record_id":"<urn:uuid:8c68b9f7-b017-4fcd-b55a-fe011738da29>","cc-path":"CC-MAIN-2014-15/segments/1398223206120.9/warc/CC-MAIN-20140423032006-00574...
A question about groups of intermediate growth, II up vote 2 down vote favorite This question arose in the comments of A question about groups of intermediate growth. I think it might be interesting to put it more in evidence. Let $G$ be a f.g. group with a fixed symmetric set of generators $S$ and denote by $B(n)$ the...
{"url":"http://mathoverflow.net/questions/80900/a-question-about-groups-of-intermediate-growth-ii","timestamp":"2014-04-21T01:22:27Z","content_type":null,"content_length":"58925","record_id":"<urn:uuid:d6d7578e-2a11-4482-9d0f-92ea597758b7>","cc-path":"CC-MAIN-2014-15/segments/1397609539337.22/warc/CC-MAIN-2014041600521...
Logarithms and Ropes (as found in Mathematician's Delight) I recently got a copy of Mathematician's Delight , by W. W. Sawyer. I had loved his book Vision in Elementary Mathematics , so I knew I'd like this one. I found out about it through a I stumbled upon in my wanderings, where the blogger included this:* Nearl...
{"url":"http://mathmamawrites.blogspot.com/2010/05/logarithms-and-ropes-as-found-in.html","timestamp":"2014-04-18T08:03:46Z","content_type":null,"content_length":"135004","record_id":"<urn:uuid:2bc6b809-4875-4b1f-9228-f64d38d4e425>","cc-path":"CC-MAIN-2014-15/segments/1398223206770.7/warc/CC-MAIN-20140423032006-00416-i...
MTMS: April 2005, Volume 10, Issue 8 Every Story Tells a Picture John Maus A connection between literature and mathematics through a story-graphing project. Students learn how to transfer ideas from story graphs to make them mathematical in nature. Teachers will learn how to teach students this skill and to implement i...
{"url":"http://www.nctm.org/publications/toc.aspx?jrnl=MTMS&mn=4&y=2005","timestamp":"2014-04-24T20:51:45Z","content_type":null,"content_length":"45512","record_id":"<urn:uuid:f31ab197-40e4-473e-8ab9-dceecdac0f1a>","cc-path":"CC-MAIN-2014-15/segments/1398223206672.15/warc/CC-MAIN-20140423032006-00569-ip-10-147-4-33.ec2...
Physics Forums - View Single Post - Wrong proof in textbook of optics? where k, kr and kt are wave vectors of incident, reflected and transmitted wave. ... so what is ##\vec{r}## ? I think you may have missed part of the proof out though... merely showing that three vectors have the same extent against a fourth vector...
{"url":"http://www.physicsforums.com/showpost.php?p=4265427&postcount=2","timestamp":"2014-04-20T05:48:32Z","content_type":null,"content_length":"7988","record_id":"<urn:uuid:60b7974f-1ed1-42a5-9627-9d08e8977ca8>","cc-path":"CC-MAIN-2014-15/segments/1397609538022.19/warc/CC-MAIN-20140416005218-00232-ip-10-147-4-33.ec2....
The Diminishing Marginal Utility of Hoarding: Why Being a Stingy Miser Doesn’t Pay The Diminishing Marginal Utility of Hoarding: Why Being a Stingy Miser Doesn’t Pay The other day I was playing around with an Excel spreadsheet I made. I was looking at how much you need to save to reach your retirement goals. At one po...
{"url":"http://www.providentplan.com/330/the-diminishing-marginal-utility-of-hoarding-why-being-a-stingy-miser-doesnt-pay/","timestamp":"2014-04-20T13:18:59Z","content_type":null,"content_length":"49108","record_id":"<urn:uuid:830febae-fc10-4ad1-bdef-32c5d412e580>","cc-path":"CC-MAIN-2014-15/segments/1397609538787.31/w...
“RECOMB-AB brings together leading researchers in the mathematical, computational, and life sciences to discuss interesting, challenging, and well-formulated open problems in algorithmic biology.” As someone working in the field of “algorithmic biology” (which, I guess, could be defined as the application of techniques...
{"url":"http://phylonetworks.blogspot.com/2012/03/recomb-ab.html","timestamp":"2014-04-21T03:05:18Z","content_type":null,"content_length":"103869","record_id":"<urn:uuid:cda51390-0999-4d5e-a04e-a9f7e5b4618a>","cc-path":"CC-MAIN-2014-15/segments/1397609539447.23/warc/CC-MAIN-20140416005219-00277-ip-10-147-4-33.ec2.inter...
-Metric Space Endowed with Graph Abstract and Applied Analysis Volume 2013 (2013), Article ID 967132, 9 pages Research Article Some Fixed Point Theorems in -Metric Space Endowed with Graph ^1Centre for Advanced Mathematics and Physics, National University of Sciences and Technology, Sector, H-12, Islamabad, Pakistan ^2...
{"url":"http://www.hindawi.com/journals/aaa/2013/967132/ref/","timestamp":"2014-04-17T13:22:10Z","content_type":null,"content_length":"36024","record_id":"<urn:uuid:7b334c7d-699f-41fa-a04f-5c8476598490>","cc-path":"CC-MAIN-2014-15/segments/1397609530131.27/warc/CC-MAIN-20140416005210-00287-ip-10-147-4-33.ec2.internal.w...
Got Homework? Connect with other students for help. It's a free community. • across MIT Grad Student Online now • laura* Helped 1,000 students Online now • Hero College Math Guru Online now Here's the question you clicked on: can anyone help me with a couple question's about rate of chan...
{"url":"http://openstudy.com/updates/50771326e4b02f109be3b6c4","timestamp":"2014-04-17T16:04:34Z","content_type":null,"content_length":"40065","record_id":"<urn:uuid:5ebc27c7-bd0d-4630-945a-e2211b23e136>","cc-path":"CC-MAIN-2014-15/segments/1397609530136.5/warc/CC-MAIN-20140416005210-00592-ip-10-147-4-33.ec2.internal.w...
Linear logic, coherence and dinaturality Results 11 - 20 of 24 - In Proc. Category Theory and Computer Science (CTCS'99), Electron , 1999 "... We introduce a family of explicit substitution type theories as internal languages for autonomous (or symmetric monoidal closed) and -autonomous categories, in the same sense th...
{"url":"http://citeseerx.ist.psu.edu/showciting?cid=1369735&sort=cite&start=10","timestamp":"2014-04-21T16:34:13Z","content_type":null,"content_length":"38326","record_id":"<urn:uuid:ed5ddfcd-acf2-46cd-ad78-9655f7e1864a>","cc-path":"CC-MAIN-2014-15/segments/1397609540626.47/warc/CC-MAIN-20140416005220-00115-ip-10-147-4...
Page:O. F. Owen's Organon of Aristotle Vol. 1 (1853).djvu/195 This page has been , but needs to be necessity be either true or false. From true propositions then we cannot infer a falsity, but from false premises we may infer the truth, except that not the why, but the mere that (is inferred), since there is not a syll...
{"url":"http://en.wikisource.org/wiki/Page%3AO._F._Owen's_Organon_of_Aristotle_Vol._1_(1853).djvu/195","timestamp":"2014-04-17T19:50:07Z","content_type":null,"content_length":"24502","record_id":"<urn:uuid:94e30a89-18a7-4091-884c-35bf10bc1ec6>","cc-path":"CC-MAIN-2014-15/segments/1398223206118.10/warc/CC-MAIN-201404230...
Is randomnes native to computer science - FUNDAMENTA INFORMATICAE , 2002 "... We consider the notion of algorithmic randomness relative to an oracle. We prove that the probability # that a program for infinite computations (a program that never halts) outputs a cofinite set is random in the second jump of the halting p...
{"url":"http://citeseerx.ist.psu.edu/showciting?cid=1407431","timestamp":"2014-04-16T06:23:11Z","content_type":null,"content_length":"13640","record_id":"<urn:uuid:31f38234-ff71-4fa3-a764-30c9cf23e57f>","cc-path":"CC-MAIN-2014-15/segments/1397609521512.15/warc/CC-MAIN-20140416005201-00265-ip-10-147-4-33.ec2.internal.wa...
Hi to everyone Real Member Re: Hi to everyone Something wrong? Something right too no doubt? I see clearly now, the universe have the black dots, Thus I am on my way of inventing this remedy... Re: Hi to everyone hello guys i'm new here in this forum...but i'm glad that i found you guys..hopefully i will injoy here...
{"url":"http://www.mathisfunforum.com/viewtopic.php?pid=149127","timestamp":"2014-04-17T15:58:35Z","content_type":null,"content_length":"34129","record_id":"<urn:uuid:0237e08e-90f5-4c39-9a13-9d7901f858a4>","cc-path":"CC-MAIN-2014-15/segments/1397609530136.5/warc/CC-MAIN-20140416005210-00581-ip-10-147-4-33.ec2.internal....
We'll do this example twice, once with each sort of notation. Using prime notation, take u = x v' = e^x Then u' = 1 and v = e^x. We plug all this stuff into the formula: Since the integral of e^x is e^x + C, we have We write + C instead of – C since either way we're describing the same family of functions. Using fracti...
{"url":"http://www.shmoop.com/indefinite-integrals/indefinite-integral-parts-examples.html","timestamp":"2014-04-16T22:15:40Z","content_type":null,"content_length":"29125","record_id":"<urn:uuid:6714af44-dd11-48ac-abcb-446dd9a7b9ec>","cc-path":"CC-MAIN-2014-15/segments/1397609525991.2/warc/CC-MAIN-20140416005205-00606-...
Maths in a minute: The missing pound Here's a well-known conundrum: suppose I need to buy a book from a shop that costs £7. I haven't got any money, so I borrow £5 from my brother and £5 from my sister. I buy the book and get £3 change. I give £1 back to each my brother and sister and I keep the remaining £1. I now owe...
{"url":"http://plus.maths.org/content/maths-minute-missing-pound","timestamp":"2014-04-17T09:58:53Z","content_type":null,"content_length":"18851","record_id":"<urn:uuid:1ee34f8d-a999-47a8-8a43-4b78ddbb1b4a>","cc-path":"CC-MAIN-2014-15/segments/1397609527423.39/warc/CC-MAIN-20140416005207-00245-ip-10-147-4-33.ec2.intern...
A Most Perplexing Mystery May 6, 2013 The discrete log and the factoring problem Antoine Joux is a crypto expert at Versailles Saint-Quentin-en-Yvelines University. He is also one of the crypto experts at CryptoExperts, having joined this startup company last November. His work is featured in all three of the company’s...
{"url":"http://rjlipton.wordpress.com/2013/05/06/a-most-perplexing-mystery/","timestamp":"2014-04-19T14:29:24Z","content_type":null,"content_length":"123242","record_id":"<urn:uuid:7da6e86a-40b8-4427-abe1-e2706169a897>","cc-path":"CC-MAIN-2014-15/segments/1397609537271.8/warc/CC-MAIN-20140416005217-00535-ip-10-147-4-33...
Lecture 21: Eigenvalues and eigenvectors OK. So this is the first lecture on eigenvalues and eigenvectors, and that's a big subject that will take up most of the rest of the course. It's, again, matrices are square and we're looking now for some special numbers, the eigenvalues, and some special vectors, the eigenvecto...
{"url":"http://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010/video-lectures/lecture-21-eigenvalues-and-eigenvectors/","timestamp":"2014-04-19T09:28:17Z","content_type":null,"content_length":"85833","record_id":"<urn:uuid:aa6dce06-b849-4778-959b-c1d3ca7a9633>","cc-path":"CC-MAIN-2014-15/segments/13976...
Probability and statistics blog Uncategorized — No Comments 14 Apr 14 Uncategorized — No Comments 7 Apr 14 Uncategorized — No Comments 31 Mar 14 • Are you a fan of Wes Anderson? Revoluntion Analytics shares some ideas on how you can bring his style to your own R charts, by making use of these Wes Anderson inspi...
{"url":"http://www.statisticsblog.com/category/uncategorized/","timestamp":"2014-04-21T09:46:20Z","content_type":null,"content_length":"41062","record_id":"<urn:uuid:c867b98a-3ce1-4930-9a36-4d2c5f8aac41>","cc-path":"CC-MAIN-2014-15/segments/1398223206672.15/warc/CC-MAIN-20140423032006-00639-ip-10-147-4-33.ec2.internal....
the encyclopedic entry of multimodality computer vision , sets of acquired by sampling the same scene or object at different times, or from different perspectives, will be in different coordinate systems. Image registration is the process of transforming the different sets of data into one coordinate system. Registrati...
{"url":"http://www.reference.com/browse/multimodality","timestamp":"2014-04-16T11:31:14Z","content_type":null,"content_length":"82605","record_id":"<urn:uuid:daf82e7e-4129-4378-9d5e-f9f51a7d883a>","cc-path":"CC-MAIN-2014-15/segments/1397609523265.25/warc/CC-MAIN-20140416005203-00246-ip-10-147-4-33.ec2.internal.warc.gz"...
Submitted to: Journal of Dairy Science Publication Type: Abstract Only Publication Acceptance Date: March 10, 2008 Publication Date: July 7, 2008 Silva Del Rio, N., Broderick, G.A., Fricke, P.M. 2008. Mathematical simulation to assess the validity of Bonnier's equation for estimating the frequency of monozygous twinnin...
{"url":"http://www.ars.usda.gov/research/publications/Publications.htm?seq_no_115=228246&pf=1","timestamp":"2014-04-20T03:23:23Z","content_type":null,"content_length":"21718","record_id":"<urn:uuid:6ad02c53-9eb1-4277-8783-1302f4abeb88>","cc-path":"CC-MAIN-2014-15/segments/1397609537864.21/warc/CC-MAIN-20140416005217-00...
South African Journal of Science Services on Demand Related links Print version ISSN 0038-2353 S. Afr. j. sci. vol.108 no.3-4 Pretoria 2012 ...
{"url":"http://www.scielo.org.za/scielo.php?script=sci_arttext&pid=S0038-23532012000200007&lng=en&nrm=iso","timestamp":"2014-04-18T03:56:16Z","content_type":null,"content_length":"18797","record_id":"<urn:uuid:372ef40f-fd71-49dc-aa14-5fdbadc8df09>","cc-path":"CC-MAIN-2014-15/segments/1397609532480.36/warc/CC-MAIN-20140...
Video Library Since 2002 Perimeter Institute has been recording seminars, conference talks, and public outreach events using video cameras installed in our lecture theatres. Perimeter now has 7 formal presentation spaces for its many scientific conferences, seminars, workshops and educational outreach activities, all w...
{"url":"http://www.perimeterinstitute.ca/video-library?title=&page=688&qt-videos=0","timestamp":"2014-04-21T11:53:57Z","content_type":null,"content_length":"65596","record_id":"<urn:uuid:0f37c5fa-026c-4090-9d64-644a017e527f>","cc-path":"CC-MAIN-2014-15/segments/1397609539705.42/warc/CC-MAIN-20140416005219-00207-ip-10-1...
The attempt to load metrics for this article has failed. The attempt to plot a graph for these metrics has failed. Calculated fraction of modifiers associated with network former A as a function of ΔH/kT f , where ΔH = H B − H A , k is Boltzmann's constant, and T f is the fictive temperature of the glass. Here systems ...
{"url":"http://scitation.aip.org/content/aip/journal/jcp/138/12/10.1063/1.4773356","timestamp":"2014-04-17T08:10:57Z","content_type":null,"content_length":"80289","record_id":"<urn:uuid:898cb88a-61f1-40ac-bc14-00662c0671d1>","cc-path":"CC-MAIN-2014-15/segments/1397609537864.21/warc/CC-MAIN-20140416005217-00106-ip-10-14...
A simple implicit measure of the effective bid-ask spread in an efficient market Results 1 - 10 of 157 - REVIEW OF FINANCIAL STUDIES , 1988 "... In this article we test the random walk hypothesis for weekly stock market returns by comparing variance estimators derived from data sampled at different frequencies. The ran...
{"url":"http://citeseerx.ist.psu.edu/showciting?cid=686749","timestamp":"2014-04-18T19:24:11Z","content_type":null,"content_length":"40785","record_id":"<urn:uuid:948a4758-610f-4c25-a335-a1161fc2580e>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.7/warc/CC-MAIN-20140416005215-00575-ip-10-147-4-33.ec2.internal.warc...
How to find the orbit time of this satellite? October 3rd 2009, 03:53 AM How to find the orbit time of this satellite? A satellite is in a circular orbit H km above the earth surface. In how many hours does the satellite complete one orbit? The radius of the earth is 6370 km. H[km] = 289; Could some...
{"url":"http://mathhelpforum.com/algebra/105814-how-find-orbit-time-satellite-print.html","timestamp":"2014-04-18T21:40:17Z","content_type":null,"content_length":"8652","record_id":"<urn:uuid:d240dcac-d3cc-4123-9be4-3237a330a8ff>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.9/warc/CC-MAIN-20140416005215-00208-ip-...
Passyunk, PA Precalculus Tutor Find a Passyunk, PA Precalculus Tutor ...However, I really found myself seeking a higher pursuit and many people close to me encouraged me to teach. I thought back on my first teaching experience back when I was in college. I took part in this program where students from my university...
{"url":"http://www.purplemath.com/Passyunk_PA_Precalculus_tutors.php","timestamp":"2014-04-17T16:10:04Z","content_type":null,"content_length":"24492","record_id":"<urn:uuid:fb0fc9a4-1eab-45b1-87bf-bd52457c63ec>","cc-path":"CC-MAIN-2014-15/segments/1397609530136.5/warc/CC-MAIN-20140416005210-00522-ip-10-147-4-33.ec2.int...
This Article Bibliographic References Add to: ASCII Text x Zhengguang Chen, Deng Cai, Jiawei Han, Jiajun Bu, Chun Chen, Lijun Zhang, "Locally Disc...
{"url":"http://www.computer.org/csdl/trans/tk/2012/06/ttk2012061025-abs.html","timestamp":"2014-04-20T07:00:02Z","content_type":null,"content_length":"63643","record_id":"<urn:uuid:49abc250-e0f0-4d63-9457-034236872519>","cc-path":"CC-MAIN-2014-15/segments/1397609538022.19/warc/CC-MAIN-20140416005218-00443-ip-10-147-4-3...
Fuzzy Based Multi Criteria Contingency Ranking for Voltage Stability Assessment Electric Power Systems (EPS) have become very complex from the operation, control and stability maintenance standpoints. The voltage stability problem deserves special attention, since power systems have been operating dangerously close to ...
{"url":"http://www.medwelljournals.com/fulltext/?doi=ijscomp.2010.185.193","timestamp":"2014-04-20T08:15:31Z","content_type":null,"content_length":"56033","record_id":"<urn:uuid:16566b01-b808-4cfb-9150-b3d44b812c8f>","cc-path":"CC-MAIN-2014-15/segments/1398223203422.8/warc/CC-MAIN-20140423032003-00512-ip-10-147-4-33.ec...
linear algebra with transformations and eigenvectors please help me solve the problem see the attachment step by step would help me understand it thanks Apply T to the vectors of B and write the result as a lin. combination of the vectors in C, and then take the transpose of the coefficients matrix. For example: $T\lef...
{"url":"http://mathhelpforum.com/advanced-algebra/114345-linear-algebra-transformations-eigenvectors.html","timestamp":"2014-04-21T07:35:56Z","content_type":null,"content_length":"35435","record_id":"<urn:uuid:f49569a1-c224-4ac5-8c58-6230f0bbe6fe>","cc-path":"CC-MAIN-2014-15/segments/1397609539665.16/warc/CC-MAIN-20140...
Cauchy Riemann Equations January 2nd 2009, 07:33 PM #1 Oct 2008 Cauchy Riemann Equations In deriving the necessary conditions for a function $f(x) = u(x,y) + iv(x,y)$ to be differentiable at a point $z_0$, why do we get $f'(z_0) = v_{y}(x_{0}, y_{0}) - iu_{y}(x_{0}, y_{0})$? Would not it be $f'(z_0) = u_{y}...
{"url":"http://mathhelpforum.com/calculus/66628-cauchy-riemann-equations.html","timestamp":"2014-04-16T17:35:09Z","content_type":null,"content_length":"61338","record_id":"<urn:uuid:bc3c212b-e168-4449-b20f-85c790a0da28>","cc-path":"CC-MAIN-2014-15/segments/1397609524259.30/warc/CC-MAIN-20140416005204-00348-ip-10-147-4-...
Vector on slope Posts: 196 Joined: 2002.04 I have a vector like 1.0, 0.0, 0.0 . I want to find a new vector that follows the slope of a plane that is not parallel to the old vector. How do I change the vector to the angle of the slope? Also how can I dampen or increase the vector's speed at different angles? Posts: 1,4...
{"url":"http://idevgames.com/forums/thread-4273-post-33249.html","timestamp":"2014-04-19T10:02:42Z","content_type":null,"content_length":"17051","record_id":"<urn:uuid:811322b4-b98f-465f-bc51-578c0ac84db4>","cc-path":"CC-MAIN-2014-15/segments/1398223207046.13/warc/CC-MAIN-20140423032007-00154-ip-10-147-4-33.ec2.interna...
Detecting Collisions of Two Cubes I'm trying to figure out how to detect collisions between two cubes in OpenGL. This is my code so far which doesn't work at all: void CCharacter::CheckCollision(CActiveObject *object) int w = 0; if ( ( ( GetX() + GetW() ) > ( object->GetX() - object->GetW() ) ) && ( ( GetX() - GetW() )...
{"url":"http://idevgames.com/forums/thread-6325-post-15216.html","timestamp":"2014-04-18T18:37:21Z","content_type":null,"content_length":"41284","record_id":"<urn:uuid:33d507ed-e6ad-4d9f-80b3-8efed07405af>","cc-path":"CC-MAIN-2014-15/segments/1397609537308.32/warc/CC-MAIN-20140416005217-00524-ip-10-147-4-33.ec2.interna...
guess the combination number! Re: guess the combination number! 1) Iowa 2) Alabama 3) Texas Edit: Of course London and Paris are also in Texas! Last edited by noelevans (2012-12-18 16:32:44) Writing "pretty" math (two dimensional) is easier to read and grasp than LaTex (one dimensional). LaTex is like painting on many ...
{"url":"http://www.mathisfunforum.com/viewtopic.php?pid=244332","timestamp":"2014-04-19T17:29:08Z","content_type":null,"content_length":"11849","record_id":"<urn:uuid:973805b3-a4d5-43e6-874f-ee1bd174d4d2>","cc-path":"CC-MAIN-2014-15/segments/1398223203841.5/warc/CC-MAIN-20140423032003-00445-ip-10-147-4-33.ec2.internal....
Hartshorne's proof of the birational invariance of the geometric genus up vote 2 down vote favorite I am confused about a couple of steps in the proof of the birational invariance of the geometric genus (Theorem II.8.19 in Hartshorne's Algebraic Geometry). I shall sketch the proof and highlight my doubts. Let $X,X'$ be...
{"url":"http://mathoverflow.net/questions/91256/hartshornes-proof-of-the-birational-invariance-of-the-geometric-genus","timestamp":"2014-04-24T04:00:37Z","content_type":null,"content_length":"48608","record_id":"<urn:uuid:47bc8a67-b734-47f7-bacb-9bee01ea976c>","cc-path":"CC-MAIN-2014-15/segments/1398223205137.4/warc/CC...
a challenge question - who dares? September 13th 2009, 08:31 AM a challenge question - who dares? My first every post (Hi), I have a quick one... here it comes...(Smirk) if we divide 5000 over 1250 we will get the whole integer number "4". (Talking) if we multiply 5000 by 3.68 we will get the whole integer ...
{"url":"http://mathhelpforum.com/algebra/102046-challenge-question-who-dares-print.html","timestamp":"2014-04-18T11:08:44Z","content_type":null,"content_length":"3941","record_id":"<urn:uuid:ab74133e-e4d1-4ea7-96a3-0c36c7ba6074>","cc-path":"CC-MAIN-2014-15/segments/1397609533308.11/warc/CC-MAIN-20140416005213-00576-ip-...
LaGrange Multiplier Problem May 26th 2010, 04:55 PM LaGrange Multiplier Problem I'm trying to find the minimum and maximum values of $f(x,y,z,) = (4x - 1/2y + 27/2 z)$ on the surface of $g=x^4+y^4+z^4=1$ I have already put $\bigtriangledown f = \lambda \bigtriangledown g$ Getting the following 4 equ...
{"url":"http://mathhelpforum.com/calculus/146575-lagrange-multiplier-problem-print.html","timestamp":"2014-04-19T01:56:49Z","content_type":null,"content_length":"13087","record_id":"<urn:uuid:64f963b3-b7e0-48b0-b233-e34c284f5600>","cc-path":"CC-MAIN-2014-15/segments/1397609535745.0/warc/CC-MAIN-20140416005215-00585-ip-...
JAFO: <<<IOW, benefits are (and have been tipped) in favor of low wage earners.>>> GH: {{{The "tip" is quite modest,}}} "just curious ...and numbers on how much of a 'tip'?" Almost 3:1 in favor of bottom from top to bottom and 2:1 in favor of bottom from middle to bottom and 1.5:1 in favor of middle from top to middle,...
{"url":"http://boards.fool.com/MessagePrint.aspx?mid=29028439","timestamp":"2014-04-16T17:08:58Z","content_type":null,"content_length":"6763","record_id":"<urn:uuid:a6c629a7-e8a3-4ab5-81c0-4757da2542da>","cc-path":"CC-MAIN-2014-15/segments/1397609524259.30/warc/CC-MAIN-20140416005204-00011-ip-10-147-4-33.ec2.internal.w...
Gradient of each side of a quadrilateral September 17th 2011, 11:43 AM #1 Super Member Oct 2008 Bristol, England Gradient of each side of a quadrilateral I need to find the gradient of each side of of a quadrilateral which has vertices at the points A(-7,0), B(2,3), C(5,0) and D(-1,-6). I have drawn the...
{"url":"http://mathhelpforum.com/algebra/188196-gradient-each-side-quadrilateral.html","timestamp":"2014-04-16T11:36:25Z","content_type":null,"content_length":"40754","record_id":"<urn:uuid:cd7fad6b-2d6b-4e07-b034-811c7325e45e>","cc-path":"CC-MAIN-2014-15/segments/1397609525991.2/warc/CC-MAIN-20140416005205-00291-ip-10...
Author Message This post received ventivish D Senior Manager E Joined: 20 Feb 2008 Difficulty: Posts...
{"url":"http://gmatclub.com/forum/m22-73309.html","timestamp":"2014-04-16T08:09:08Z","content_type":null,"content_length":"224477","record_id":"<urn:uuid:8be8fbb1-932e-435f-a461-436ec916a2a2>","cc-path":"CC-MAIN-2014-15/segments/1397609521558.37/warc/CC-MAIN-20140416005201-00259-ip-10-147-4-33.ec2.internal.warc.gz"}
Jamaica Beach, TX Math Tutor Find a Jamaica Beach, TX Math Tutor ...I can tutor in any math subject K-8 as well as Pre-Algebra, Algebra I and II (college algebra as well), Geometry, and even Chemistry. I also have worked with home-schooled students on some of these subjects so I can help them out, if necessary. Bei...
{"url":"http://www.purplemath.com/jamaica_beach_tx_math_tutors.php","timestamp":"2014-04-20T02:02:25Z","content_type":null,"content_length":"24246","record_id":"<urn:uuid:e5edb7bc-5855-46d8-bce6-9e84188dc0fa>","cc-path":"CC-MAIN-2014-15/segments/1397609537804.4/warc/CC-MAIN-20140416005217-00450-ip-10-147-4-33.ec2.inter...
The Nature of Statistics What is statistics Types of data Scales of measurement Copyright 1993-97 Thomas P. Sturm What is Statistics Statistics is: ...
{"url":"http://courseweb.stthomas.edu/tpsturm/private/notes/qm220/NATURE.html","timestamp":"2014-04-19T22:05:43Z","content_type":null,"content_length":"21285","record_id":"<urn:uuid:b4fed2fb-90d1-4afe-b135-399bd898ab96>","cc-path":"CC-MAIN-2014-15/segments/1397609537754.12/warc/CC-MAIN-20140416005217-00573-ip-10-147-4-...
Re: non trivial constant folding Chris F Clark <[email protected]> 6 Jan 2001 22:13:51 -0500 From comp.compilers | List of all articles for this month...
{"url":"http://compilers.iecc.com/comparch/article/01-01-029","timestamp":"2014-04-19T17:10:48Z","content_type":null,"content_length":"8702","record_id":"<urn:uuid:25445ea6-3546-485a-9832-37634af216b6>","cc-path":"CC-MAIN-2014-15/segments/1397609537308.32/warc/CC-MAIN-20140416005217-00193-ip-10-147-4-33.ec2.internal.wa...
Littleton, CO Prealgebra Tutor Find a Littleton, CO Prealgebra Tutor ...Sometimes, it is just a matter of presenting the material in a different way that allows a student to progress through the previously trouble-some material. I teach reading by finding out the students main interests and then choosing reading ma...
{"url":"http://www.purplemath.com/Littleton_CO_prealgebra_tutors.php","timestamp":"2014-04-18T03:40:24Z","content_type":null,"content_length":"24243","record_id":"<urn:uuid:30e1b4f3-cb2e-49b5-9f5a-994afd2ac8ca>","cc-path":"CC-MAIN-2014-15/segments/1398223205375.6/warc/CC-MAIN-20140423032005-00568-ip-10-147-4-33.ec2.int...
Severe Weather Help Page ** Severe Weather Options ** ** DEFINITIONS ** [CPR] = Combined probability (Prob_Field_1 x Prob_Field_2 x ... x [MAX] = Maximum from any member at each grid point [MD] = Median [MDXN] = Median value contou...
{"url":"http://www.spc.noaa.gov/exper/sref/severe_help.html","timestamp":"2014-04-17T04:44:25Z","content_type":null,"content_length":"5429","record_id":"<urn:uuid:c20cceb3-f17b-4aeb-aa71-6062e31cf8fa>","cc-path":"CC-MAIN-2014-15/segments/1397609526252.40/warc/CC-MAIN-20140416005206-00225-ip-10-147-4-33.ec2.internal.war...
Theodosius Sphaerica iii 4 Return to Vignettes of Ancient Mathematics Since the figure is somewhat complex, two view points are given, from the left and from right of arc GED. General strategy: the theorem will prove that arc GE > arc ED. The strategy will be to show that because 1. straight-line HN = straight-line MZ ...
{"url":"http://web.calstatela.edu/faculty/hmendel/Ancient%20Mathematics/Theodosius/Sphaerica/iii.4/Theod.Sph.iii.4.html","timestamp":"2014-04-16T14:07:05Z","content_type":null,"content_length":"14277","record_id":"<urn:uuid:04751b8e-268d-478c-9cea-d3bcf11cd0df>","cc-path":"CC-MAIN-2014-15/segments/1397609523429.20/warc...
Accuplacer practice exam help Hello board. I'm trying to solve the problems on the accuplacer practice exam online and am having trouble with one of the questions. It is: What is the value of the expression 2x² + 3xy – 4y² when x = 2 and y = - 4? The answer I keep coming up with is -4. The only choices are ...
{"url":"http://mathhelpforum.com/algebra/184605-accuplacer-practice-exam-help.html","timestamp":"2014-04-16T08:12:36Z","content_type":null,"content_length":"42025","record_id":"<urn:uuid:496d5c50-e4be-4ed6-879e-e3a80fe495fb>","cc-path":"CC-MAIN-2014-15/segments/1398223211700.16/warc/CC-MAIN-20140423032011-00385-ip-10-1...
Got Homework? Connect with other students for help. It's a free community. • across MIT Grad Student Online now • laura* Helped 1,000 students Online now • Hero College Math Guru Online now Here's the question you clicked on: Electrical Engineering: Microelectronics: Assuming a MOSFET ci...
{"url":"http://openstudy.com/updates/516a3703e4b015a79c1138a4","timestamp":"2014-04-17T22:11:53Z","content_type":null,"content_length":"28042","record_id":"<urn:uuid:98d35509-ffe5-4ff3-8fdb-b1d29f70e42a>","cc-path":"CC-MAIN-2014-15/segments/1397609532128.44/warc/CC-MAIN-20140416005212-00202-ip-10-147-4-33.ec2.internal....
Tatamy Algebra 1 Tutor Find a Tatamy Algebra 1 Tutor ...I am very reliable, responsible and dependable. I understand schedules need to be flexible due to our busy lifestyles - with work and our children's activities. I can accommodate to your needs and simply ask for a four-hour cancellation notice if an emergency ...
{"url":"http://www.purplemath.com/Tatamy_algebra_1_tutors.php","timestamp":"2014-04-19T15:22:25Z","content_type":null,"content_length":"24079","record_id":"<urn:uuid:fee67dc2-2d00-443a-8f68-8989b07ddfce>","cc-path":"CC-MAIN-2014-15/segments/1397609537271.8/warc/CC-MAIN-20140416005217-00629-ip-10-147-4-33.ec2.internal.w...
Making the Most of Your First Grading Period There is something about the first of every school year that has always frustrated me. It seems to me that the first two or three weeks that we spend reviewing topics from previous years is such a waste of time. Students either enter Algebra I with a good foundation on thing...
{"url":"http://mathtalesfromthespring.blogspot.com/2012/08/making-most-of-your-first-grading-period.html","timestamp":"2014-04-19T14:49:34Z","content_type":null,"content_length":"207605","record_id":"<urn:uuid:fe8c0b12-21d9-40d8-935b-71fceaa99d0b>","cc-path":"CC-MAIN-2014-15/segments/1398223207046.13/warc/CC-MAIN-20140...
Regarding my return Hello everyone. As you may recall, I am Shivam and have been fairly inactive in the recent times (especially due to the whole university transfer process). I am now successfully placed in the Massachusetts Institute of Technology (Rogers Web Key still works in the US). Nowadays, I seem to have more ...
{"url":"http://www.mathisfunforum.com/viewtopic.php?pid=252742","timestamp":"2014-04-19T07:16:58Z","content_type":null,"content_length":"36445","record_id":"<urn:uuid:3fc24ee2-22e1-4fec-bcbb-587b3b02187c>","cc-path":"CC-MAIN-2014-15/segments/1398223203841.5/warc/CC-MAIN-20140423032003-00411-ip-10-147-4-33.ec2.internal....
Math Help March 10th 2010, 07:50 PM #1 Junior Member Jan 2010 Related Rates As a circular griddle is being heated, its diameter changes at a rate of 0.01 cm/min. When the diameter is 30 cm, at what rate is the area of the griddle changing? I know my formula is V=PI*r^2 and i know since i am given a dia...
{"url":"http://mathhelpforum.com/calculus/133229-related-rates.html","timestamp":"2014-04-18T01:23:34Z","content_type":null,"content_length":"38348","record_id":"<urn:uuid:c569518f-b5b4-47ba-8f0f-3b4c5a2d80c6>","cc-path":"CC-MAIN-2014-15/segments/1397609532374.24/warc/CC-MAIN-20140416005212-00125-ip-10-147-4-33.ec2.int...
"Trellis graph" is it standard term in graph theory ? What are its properties ? up vote 1 down vote favorite In coding theory (convolutional codes) the graph called "trellis diagramm" is used to visualize something. I wonder is it a standard term in graph theory? Corresponding Wikipedia article is not convincing. If it...
{"url":"http://mathoverflow.net/questions/103344/trellis-graph-is-it-standard-term-in-graph-theory-what-are-its-properties","timestamp":"2014-04-16T14:12:53Z","content_type":null,"content_length":"55109","record_id":"<urn:uuid:8c930051-1575-415a-8bd5-b25f750f8afe>","cc-path":"CC-MAIN-2014-15/segments/1397609523429.20/w...
MathGroup Archive: July 2011 [00167] [Date Index] [Thread Index] [Author Index] Re: Numerical accuracy/precision - this is a bug or a feature? • To: mathgroup at smc.vnet.net • Subject: [mg120104] Re: Numerical accuracy/precision - this i...
{"url":"http://forums.wolfram.com/mathgroup/archive/2011/Jul/msg00167.html","timestamp":"2014-04-16T22:11:22Z","content_type":null,"content_length":"32770","record_id":"<urn:uuid:5de9ebd9-5bbe-45ed-8b95-9314c7d8ac3d>","cc-path":"CC-MAIN-2014-15/segments/1398223206672.15/warc/CC-MAIN-20140423032006-00281-ip-10-147-4-33....
Math Forum Discussions Math Forum Ask Dr. Math Internet Newsletter Teacher Exchange Search All of the Math Forum: Views expressed in these public forums are not endorsed by Drexel University or The Math Forum. Topic: Euler's Equation and the Reality of Nature. Replies: 2 Last Post: Feb 17, 2013 10:04 AM Messages...
{"url":"http://mathforum.org/kb/thread.jspa?threadID=2435310&messageID=8320336","timestamp":"2014-04-19T19:54:10Z","content_type":null,"content_length":"23371","record_id":"<urn:uuid:2d2f3f7f-1ca0-4dc7-a050-ae65a552121d>","cc-path":"CC-MAIN-2014-15/segments/1398223202774.3/warc/CC-MAIN-20140423032002-00378-ip-10-147-4-...
Got Homework? Connect with other students for help. It's a free community. • across MIT Grad Student Online now • laura* Helped 1,000 students Online now • Hero College Math Guru Online now Here's the question you clicked on: Please explain the types of these metals and Non - Metals Your...
{"url":"http://openstudy.com/updates/4e2acd680b8b3d38d3b9cada","timestamp":"2014-04-21T07:58:52Z","content_type":null,"content_length":"38183","record_id":"<urn:uuid:689135ec-533d-45a4-bcb3-40770e0d35f1>","cc-path":"CC-MAIN-2014-15/segments/1397609539665.16/warc/CC-MAIN-20140416005219-00081-ip-10-147-4-33.ec2.internal....
11.4 Other problems Next: 11.5 Applicability and efficiency Up: 11 Algorithms for groups Previous: 11.3 Pohlig-Helman factor method Once sufficiently many relations between a collection of generators of the group G has been found, we have seen above that one can ``read off'' many of the properties of G such as its ...
{"url":"http://www.imsc.res.in/~kapil/crypto/notes/node61.html","timestamp":"2014-04-19T06:05:43Z","content_type":null,"content_length":"3239","record_id":"<urn:uuid:10530d54-1a40-422c-a9ab-bae1b6f0177f>","cc-path":"CC-MAIN-2014-15/segments/1397609535775.35/warc/CC-MAIN-20140416005215-00198-ip-10-147-4-33.ec2.internal....
Xin Zhou Address: Department of Mathematics. Stanford University. Stanford, CA 94305-2125 E-mail: xzhou08 "at" math.stanford.edu Office: Mathematics Department, Building 380, 381B Curriculum Vitae I am a fifth year PhD student in Math department at Stanford University. My advisor is Richard M. Schoen. Research Interest...
{"url":"http://math.stanford.edu/~xzhou08/","timestamp":"2014-04-19T06:51:54Z","content_type":null,"content_length":"2751","record_id":"<urn:uuid:b2475740-311b-4566-9cd3-f5218f9c7f8b>","cc-path":"CC-MAIN-2014-15/segments/1398223206672.15/warc/CC-MAIN-20140423032006-00584-ip-10-147-4-33.ec2.internal.warc.gz"}
the encyclopedic entry of binary search binary search algorithm binary chop ) is a technique for locating a particular value in a sorted list of values. To cast this in the frame of the guessing game (see Example below), realize that we seek to guess the , or numbered place, of the value in the list. The method makes p...
{"url":"http://www.reference.com/browse/binary+search","timestamp":"2014-04-16T23:03:00Z","content_type":null,"content_length":"125449","record_id":"<urn:uuid:54802433-1ae9-4ecb-ba1d-3be60c6ec967>","cc-path":"CC-MAIN-2014-15/segments/1397609525991.2/warc/CC-MAIN-20140416005205-00494-ip-10-147-4-33.ec2.internal.warc.gz"...
Circle - line intersection point May 11th 2010, 08:45 PM #1 May 2010 Circle - line intersection point I have a circle with radius "r" , centre (x1, y1). I have a straight line with starting point (x2, y2) end point (x3, y3). I want to know whether this line intersects with the circle? If yes what is/are th...
{"url":"http://mathhelpforum.com/geometry/144308-circle-line-intersection-point.html","timestamp":"2014-04-21T14:04:24Z","content_type":null,"content_length":"35818","record_id":"<urn:uuid:59a50515-07fd-4f74-99dd-8bad406fb294>","cc-path":"CC-MAIN-2014-15/segments/1397609539776.45/warc/CC-MAIN-20140416005219-00662-ip-10...
setting up Constraints for a Standard Maximization problem with multiple variables December 11th 2007, 05:26 PM #1 Dec 2007 i am asked to consider the following senario: making a trail mix with particular ingredients: Peanuts, Raisins, M&Ms, Mini-preztels (x1+x2+x3+x4) respectively Calories(kcal):855 ; ...
{"url":"http://mathhelpforum.com/advanced-algebra/24738-setting-up-constraints-standard-maximization-problem-multiple-variables.html","timestamp":"2014-04-18T09:19:10Z","content_type":null,"content_length":"31078","record_id":"<urn:uuid:8e8e8277-9ca3-4d3a-8221-1706b5d3ebf3>","cc-path":"CC-MAIN-2014-15/segments/13976095...
CWU math students calculate what no mathematician has before Math students at Central Washington University say they’ve broken a 37-year-old world record for the largest weird number — a figure that stretches 226 digits long. Weird numbers — yes, that’s actually a mathematically accepted term — are numbers that can be ...
{"url":"http://www.cwu.edu/print/3854","timestamp":"2014-04-20T14:24:24Z","content_type":null,"content_length":"4894","record_id":"<urn:uuid:0fc30158-18a7-4ed6-988f-be214b60b121>","cc-path":"CC-MAIN-2014-15/segments/1397609538787.31/warc/CC-MAIN-20140416005218-00164-ip-10-147-4-33.ec2.internal.warc.gz"}
Squares and Rectangles Perimeter refers to the entire length of a figure or the distance around it. If the figure is a circle, the length is referred to as the circumference. Such lengths are always measured in linear units such as inches, feet, and centimeters. Area refers to the size of the interior of a planar (flat...
{"url":"http://www.cliffsnotes.com/math/geometry/perimeter-and-area/squares-and-rectangles","timestamp":"2014-04-21T12:19:22Z","content_type":null,"content_length":"133441","record_id":"<urn:uuid:730f7f46-c14e-422e-b8c7-4d8cedc472c5>","cc-path":"CC-MAIN-2014-15/segments/1397609539776.45/warc/CC-MAIN-20140416005219-0052...