content stringlengths 86 994k | meta stringlengths 288 619 |
|---|---|
Learning Algebra books
Hey, I wanted to know if anyone knew of any good books for self teaching Algebra. I am currently using Khan academy and The complete idiots guide to Algebra (The sources are not bad when combined) I
was wondering if anyone had any more books or websites such as those to reaffirm my grasp on algeb... | {"url":"http://www.physicsforums.com/showthread.php?s=0062868ca59b17772da8b114874e57b6&p=4593981","timestamp":"2014-04-20T14:17:54Z","content_type":null,"content_length":"29144","record_id":"<urn:uuid:c544bd11-6ca2-42a9-a0fe-adc168a24ad9>","cc-path":"CC-MAIN-2014-15/segments/1397609538787.31/warc/CC-MAIN-20140416005218... |
Math Help
July 16th 2008, 05:25 AM #1
Nov 2006
I was wondering if someone could show me how to do prove these in a Euclidean way:
I need to show that the following three statements are equivalent for the triangle ABC,
gamma (the angle opposite AB) = 90 degrees
C is the orthocenter of ABC
the mi... | {"url":"http://mathhelpforum.com/geometry/43821-geometry.html","timestamp":"2014-04-16T12:11:06Z","content_type":null,"content_length":"43747","record_id":"<urn:uuid:d9ca7f96-7aa2-40b3-836c-1d4fe5e36e6e>","cc-path":"CC-MAIN-2014-15/segments/1397609523265.25/warc/CC-MAIN-20140416005203-00266-ip-10-147-4-33.ec2.internal.... |
What is the difference between DTFT and DFT?
Suppose you have discrete signal $x[n], n=0..N-1$ and you need to decompose it in the sum of $N$sine waves (different amplitudes and phase) (again discrete and again having $N$ points) with periods
from $N$ points up to 2 points + constant discrete value signal (because our ... | {"url":"https://www.classle.net/faq/what-difference-between-dtft-and-dft","timestamp":"2014-04-20T21:08:10Z","content_type":null,"content_length":"65135","record_id":"<urn:uuid:1b43e15d-eb36-4557-904f-834db1fe717e>","cc-path":"CC-MAIN-2014-15/segments/1397609539230.18/warc/CC-MAIN-20140416005219-00560-ip-10-147-4-33.ec... |
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:
use Logarthmic Differentiation to solve: y=(sin(3x))^ln(x)
You... | {"url":"http://openstudy.com/updates/4e9a31410b8ba77642a9c5ee","timestamp":"2014-04-20T10:57:12Z","content_type":null,"content_length":"42096","record_id":"<urn:uuid:916992b8-8714-4a18-98f0-92d3c3d750ec>","cc-path":"CC-MAIN-2014-15/segments/1398223211700.16/warc/CC-MAIN-20140423032011-00120-ip-10-147-4-33.ec2.internal.... |
Does the Bible Contain a Mathematically Incorrect Value for "Pi"?
by John D. Morris, Ph.D.
Does the Bible contain errors in math? If it does, this calls into question its moral and spiritual authority. Much is at stake. Let's carefully examine one of the most frequent charges of error.
When describing Solomon's Temple ... | {"url":"http://www.icr.org/article/524/2/","timestamp":"2014-04-19T09:24:28Z","content_type":null,"content_length":"21170","record_id":"<urn:uuid:354f8f13-923a-4ab6-b707-1b2eb5262d00>","cc-path":"CC-MAIN-2014-15/segments/1397609537097.26/warc/CC-MAIN-20140416005217-00287-ip-10-147-4-33.ec2.internal.warc.gz"} |
Pot Odds 101 - an introduction
For some poker players the term ‘pot odds’ may appear intimidating, and for the uninitiated it can sound like you need a degree in mathematics to understand the basic principles. Anyone who regularly
watches poker on TV may have heard the commentators talking about, ‘implied odds’, ‘game ... | {"url":"http://www.pokereverything.com/articles/mathematics/pot-odds-101-an-introduction.html","timestamp":"2014-04-18T20:43:40Z","content_type":null,"content_length":"94118","record_id":"<urn:uuid:003c9983-6861-44de-b6e3-1dcfd741d868>","cc-path":"CC-MAIN-2014-15/segments/1398223203422.8/warc/CC-MAIN-20140423032003-000... |
Barto Math Tutor
Find a Barto Math Tutor
...After spending four years assisting teachers in the Algebra 1 classroom, I am confident in my knowledge of the subject and of my ability to help your student succeed. I know how frustrating in
can be to struggle with a subject matter, and would love to help ease your stud... | {"url":"http://www.purplemath.com/Barto_Math_tutors.php","timestamp":"2014-04-19T17:41:04Z","content_type":null,"content_length":"23399","record_id":"<urn:uuid:4dec109c-6b52-43ea-9dc2-501258ccfcbd>","cc-path":"CC-MAIN-2014-15/segments/1397609537308.32/warc/CC-MAIN-20140416005217-00541-ip-10-147-4-33.ec2.internal.warc.g... |
Matlab question
Hey guys,
I was just wondering if anyone knows how to set the initial conditions for ode45() if you know f(1.5) but NOT f(0)
Currently I have
>> ode45(f, [0 1 1.8 2.1], [1.5 .5])
But this creates the following error:
??? Error using ==> funfun/private/odearguments
@(T,Y) (T-EXP(-T))/(Y+EXP(Y)) must retu... | {"url":"http://www.physicsforums.com/showthread.php?t=218659","timestamp":"2014-04-17T09:57:26Z","content_type":null,"content_length":"31977","record_id":"<urn:uuid:a0f81daf-1303-49c1-a336-ae7dff971e8c>","cc-path":"CC-MAIN-2014-15/segments/1397609527423.39/warc/CC-MAIN-20140416005207-00069-ip-10-147-4-33.ec2.internal.w... |
— Functions creating iterators for efficient looping
def take(n, iterable):
"Return first n items of the iterable as a list"
return list(islice(iterable, n))
def tabulate(function, start=0):
"Return function(0), function(1), ..."
return map(function, count(start))
def consume(iterator, n):
"Advance ... | {"url":"http://www.wingware.com/psupport/python-manual/3.4/library/itertools.html","timestamp":"2014-04-19T02:02:36Z","content_type":null,"content_length":"117859","record_id":"<urn:uuid:53b9c202-938e-4c36-8502-2a8ad591e7d2>","cc-path":"CC-MAIN-2014-15/segments/1397609535745.0/warc/CC-MAIN-20140416005215-00364-ip-10-14... |
Pyramid scheme formula in PHP?
up vote 3 down vote favorite
I'm working on a referral system - the formula is exactly like the pyramid/ponzi scheme.
The system works like this:
The initial user signs up (tier 1)
The initial user refers 3 friends (tier 2)
Each of those 3 friends refer another 3, (tier3)
What would be th... | {"url":"http://stackoverflow.com/questions/5369269/pyramid-scheme-formula-in-php?answertab=votes","timestamp":"2014-04-24T08:32:47Z","content_type":null,"content_length":"69691","record_id":"<urn:uuid:7ae04f88-e0a0-43aa-abd5-84f39e888d1e>","cc-path":"CC-MAIN-2014-15/segments/1398223206118.10/warc/CC-MAIN-20140423032006... |
Neural Networks
NCGIA Core Curriculum in Geographic Information Science
URL: "http://www.ncgia.ucsb.edu/giscc/units/u188/u188.html"
... | {"url":"http://www.ncgia.ucsb.edu/giscc/units/u188/u188.html","timestamp":"2014-04-18T15:59:24Z","content_type":null,"content_length":"30349","record_id":"<urn:uuid:57ec9c56-ffed-4339-9860-c88d2bd36143>","cc-path":"CC-MAIN-2014-15/segments/1397609533957.14/warc/CC-MAIN-20140416005213-00542-ip-10-147-4-33.ec2.internal.w... |
Aharonov-Bohm topological explanation
So we have a situation for the AB experimental setup in which something is switched off, where the EM-field is zero for the electrons and there's no A-field, and a situation in which something is
switched on where the EM field is still zero for the electrons but the A-field is nonz... | {"url":"http://www.physicsforums.com/showthread.php?p=4186686","timestamp":"2014-04-20T23:39:23Z","content_type":null,"content_length":"91814","record_id":"<urn:uuid:28ee7eae-0cac-490e-93b5-c0f9443ac447>","cc-path":"CC-MAIN-2014-15/segments/1397609539337.22/warc/CC-MAIN-20140416005219-00113-ip-10-147-4-33.ec2.internal.... |
MATH...somewhat urgent
Posted by Lisa on Sunday, November 22, 2009 at 5:36pm.
I have three problems I would like checked please.1: I need to graph and find the y intercept of 6y+5x=-18
First I want to solve for y therefore I will let x be 0: 6y+5(0)=-18
6y=-18...I will now divide
y=-3 Therfore the first set to plot wou... | {"url":"http://www.jiskha.com/display.cgi?id=1258929371","timestamp":"2014-04-18T18:56:46Z","content_type":null,"content_length":"9928","record_id":"<urn:uuid:ded45bdf-4781-45a6-a71c-d8f781e4c047>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.7/warc/CC-MAIN-20140416005215-00473-ip-10-147-4-33.ec2.internal.warc.gz"... |
Geochemistry quick tips: Activity, Molality, Normality calculations for most common water quality parameters.
Geochemistry quick tips: Activity, Molality, Normality calculations for most common water quality parameters.
Simple thing that might be useful! Just my tips to all young geochemist starting their job and looki... | {"url":"http://www.coalgeology.com/geochemistry-quick-tips-activity-molality-normality-calculations-for-most-common-water-quality-parameters/30/","timestamp":"2014-04-18T08:03:39Z","content_type":null,"content_length":"39706","record_id":"<urn:uuid:270be927-bbda-4c76-80de-2cecbd010c70>","cc-path":"CC-MAIN-2014-15/segme... |
Comment on
I'm using some because the parent used sum. And s/he's using sum because s/he is emulating tye's addition of booleans.
You're right that !! screams boolean. However, that's not what is happening here. We are adding numbers here. Let me ask you what "true + false + true" is. That's just nonsensical. Programme... | {"url":"http://www.perlmonks.org/?parent=502316;node_id=3333","timestamp":"2014-04-17T11:27:53Z","content_type":null,"content_length":"21667","record_id":"<urn:uuid:a0ce123a-534d-436a-8652-d5d9ea20aba6>","cc-path":"CC-MAIN-2014-15/segments/1397609527423.39/warc/CC-MAIN-20140416005207-00559-ip-10-147-4-33.ec2.internal.w... |
7 Utilities
Signals and Systems provides a variety of operations that are useful for signal processing, but are extensions of the included functionality that are difficult to classify. These utilities provide
features such as connectivity with other packages, enhancements to TeX formatting, polygon manipulation, and mo... | {"url":"http://reference.wolfram.com/legacy/applications/signals/Utilities.html","timestamp":"2014-04-20T16:27:28Z","content_type":null,"content_length":"60416","record_id":"<urn:uuid:31c8d912-e6ee-4028-9ed6-7184d0a75b47>","cc-path":"CC-MAIN-2014-15/segments/1397609538824.34/warc/CC-MAIN-20140416005218-00157-ip-10-147-... |
The komplex plane
The e^x joke
The cocky exponential function e^x is strolling along the road insulting the functions he sees walking by. He scoffs at a wandering polynomial for the shortness of its Taylor series. He snickers at a
passing smooth function of compact support and its glaring lack of a convergent power ser... | {"url":"http://www.komplexify.com/math/jokes/TheEToTheXJoke.html","timestamp":"2014-04-20T20:55:26Z","content_type":null,"content_length":"3945","record_id":"<urn:uuid:af13d76a-9376-4eae-9188-6ca3378d1f55>","cc-path":"CC-MAIN-2014-15/segments/1397609539230.18/warc/CC-MAIN-20140416005219-00146-ip-10-147-4-33.ec2.interna... |
Formal Solution to Systems of Interval Linear or Non-Linear Equations
- Reliable Computing
"... Modal interval theory is an extension of classical interval theory which provides richer interpretations (including in particular inner and outer approximations of the ranges of real functions).
In spite of its promising pot... | {"url":"http://citeseerx.ist.psu.edu/showciting?cid=3982456","timestamp":"2014-04-17T07:34:14Z","content_type":null,"content_length":"32575","record_id":"<urn:uuid:82a4990b-33e2-4579-8588-8cc4a59f13ec>","cc-path":"CC-MAIN-2014-15/segments/1397609526311.33/warc/CC-MAIN-20140416005206-00414-ip-10-147-4-33.ec2.internal.wa... |
Geometric Sequences
A geometric sequence is a sequence of numbers in which the ratio between consecutive terms is constant.
We can write a formula for the n^th term of a geometric sequence in the form
a[n] = cr^n,
where r is the common ratio between successive terms.
Example 1:
{2, 6, 18, 54, 162, 486, 1458, ...}
is a ... | {"url":"http://hotmath.com/hotmath_help/topics/geometric-sequences.html","timestamp":"2014-04-19T09:46:54Z","content_type":null,"content_length":"5145","record_id":"<urn:uuid:5c2a1b6b-dfeb-4415-8d08-e2e7033ee984>","cc-path":"CC-MAIN-2014-15/segments/1398223206672.15/warc/CC-MAIN-20140423032006-00202-ip-10-147-4-33.ec2.... |
Is the support of a flat sheaf flat?
up vote 6 down vote favorite
Note: in the following, all scheme/algebra morphisms should be assumed essentially of finite type.
Geometric version: Let $X$ be a scheme flat over $S$ (both noetherian), and let $\mathscr{F}$ be a coherent sheaf on $X$, also flat over $S$. The schem... | {"url":"http://mathoverflow.net/questions/88138/is-the-support-of-a-flat-sheaf-flat","timestamp":"2014-04-18T00:27:05Z","content_type":null,"content_length":"64704","record_id":"<urn:uuid:d5f60968-7ba7-44c0-ac5c-36bf594d84b3>","cc-path":"CC-MAIN-2014-15/segments/1397609532374.24/warc/CC-MAIN-20140416005212-00160-ip-10-... |
Re: Re:Book: symbol table, type system, code generation?
anton@mips.complang.tuwien.ac.at (Anton Ertl)
30 May 1998 11:57:00 -0400
From comp.compilers
... | {"url":"http://compilers.iecc.com/comparch/article/98-05-140","timestamp":"2014-04-19T17:11:08Z","content_type":null,"content_length":"8895","record_id":"<urn:uuid:3b2d1bad-0b86-4682-b050-3f207a408b47>","cc-path":"CC-MAIN-2014-15/segments/1398223206147.1/warc/CC-MAIN-20140423032006-00125-ip-10-147-4-33.ec2.internal.war... |
Stat attack- Fastest Laps - Racing Comments Archive
If anyone is interested:
Fastest laps this year with two races to go are split between 10 different drivers...
From looking at previous seasons I can only see that 1982 equals this with 10 different drivers picking up fastest laps also.
I haven't looked further back a... | {"url":"http://forums.autosport.com/topic/116502-stat-attack-fastest-laps/","timestamp":"2014-04-17T07:37:44Z","content_type":null,"content_length":"219156","record_id":"<urn:uuid:e98d1b9f-d962-4c36-bef5-3464ed80170b>","cc-path":"CC-MAIN-2014-15/segments/1397609526311.33/warc/CC-MAIN-20140416005206-00598-ip-10-147-4-33... |
[BioC] Multiple test question in micrarray- FDR
Naomi Altman naomi at stat.psu.edu
Mon Dec 15 01:20:44 CET 2008
I want to reiterate - a q-value is related to FDR. This is the
expected percentage of false positives in your gene list if you
reject at this p-value or less. It is not the statistical
significance of any g... | {"url":"https://stat.ethz.ch/pipermail/bioconductor/2008-December/025557.html","timestamp":"2014-04-19T10:02:50Z","content_type":null,"content_length":"12542","record_id":"<urn:uuid:f8d603ce-6b1e-438a-999e-c3f4479130de>","cc-path":"CC-MAIN-2014-15/segments/1397609537097.26/warc/CC-MAIN-20140416005217-00405-ip-10-147-4-... |
Posts by
Total # Posts: 214
Thank you very much. This helps a lot. Marcus, age 10
Why is Venus hotter than Mercury even though Mercury is closest to the Sun?
How would day and night be different if Earth's axis were not tilted?
Math: Geometry
The circumference of the base of a cylinder is 16 cm. The height of the cyli... | {"url":"http://www.jiskha.com/members/profile/posts.cgi?name=marcus&page=3","timestamp":"2014-04-16T10:55:37Z","content_type":null,"content_length":"8835","record_id":"<urn:uuid:519c53bf-fb59-489f-a2c2-c086a1e73c3b>","cc-path":"CC-MAIN-2014-15/segments/1397609539493.17/warc/CC-MAIN-20140416005219-00403-ip-10-147-4-33.e... |
Wave-based numerical methods for acoustics
Astley, R.J., Gamallo, P. and Gabard, G. (2008) Wave-based numerical methods for acoustics. In, 8th.World Congress on Computational Mechanics (WCCM8): 5th European Congress on Computational Methods
in Applied Sciences and Engineeering (ECCOMAS 2008), Venice, Italy, 30 Jun - 05... | {"url":"http://eprints.soton.ac.uk/63665/","timestamp":"2014-04-21T14:59:46Z","content_type":null,"content_length":"32561","record_id":"<urn:uuid:fa9c8803-6e4c-42ac-a65d-9601c3043ccc>","cc-path":"CC-MAIN-2014-15/segments/1397609540626.47/warc/CC-MAIN-20140416005220-00263-ip-10-147-4-33.ec2.internal.warc.gz"} |
Figure 1
Genome assembly graph complexity is reduced as sequence length increases.
Three de Bruijn graphs for
E. coli
K12 are shown for
of 50, 1,000, and 5,000. The graphs are constructed from the reference and are error-free following the methodology of Kingsford
et al.
]. Non-branching paths have been collapsed, so e... | {"url":"http://genomebiology.com/2013/14/9/R101/figure/F1","timestamp":"2014-04-20T00:51:09Z","content_type":null,"content_length":"12432","record_id":"<urn:uuid:edcd18e9-4fea-4ff9-9ec3-a3e1b9d0baad>","cc-path":"CC-MAIN-2014-15/segments/1397609537804.4/warc/CC-MAIN-20140416005217-00337-ip-10-147-4-33.ec2.internal.warc.... |
Summary: Inplace RunLength 2d Compressed Search
Amihood Amir \Lambda Gad M. Landau y Dina Sokol z
1 Introduction
Recent developments in multimedia have led to a vast
increase in the amount of stored data. This increase
has made it critically important to store and transmit
files in a compressed form. The need to quick... | {"url":"http://www.osti.gov/eprints/topicpages/documents/record/806/3750337.html","timestamp":"2014-04-17T22:16:52Z","content_type":null,"content_length":"8089","record_id":"<urn:uuid:da768857-f245-445c-acdf-f3ed17a25493>","cc-path":"CC-MAIN-2014-15/segments/1397609532128.44/warc/CC-MAIN-20140416005212-00561-ip-10-147-... |
Approximate Construction of Regular Polygons: Two Renaissance Artists - Introduction
Regular polygons and polyhedra have interested mathematicians at least since Euclid (c. 300 BCE), who dedicated Books IV and XIII of his Elements to them. (In fact, much of the knowledge contained in
Book XIII had come down to him from... | {"url":"http://www.maa.org/publications/periodicals/convergence/approximate-construction-of-regular-polygons-two-renaissance-artists-introduction","timestamp":"2014-04-19T06:04:34Z","content_type":null,"content_length":"100773","record_id":"<urn:uuid:f3f501f3-8168-4b75-966c-a54271335308>","cc-path":"CC-MAIN-2014-15/seg... |
Need help with a homework problem
June 18th, 2013, 04:46 AM
x 0i
Need help with a homework problem
Having trouble with this one...
Write a Java program that will distribute the total amount of money found in a piggy bank into the following currencies: half dollars, quarters, dimes, nickels and pennies. The dist... | {"url":"http://forums.codeguru.com/printthread.php?t=537863&pp=15&page=1","timestamp":"2014-04-24T09:34:00Z","content_type":null,"content_length":"8247","record_id":"<urn:uuid:ff39c951-19ab-4995-bd9d-7b908af6be79>","cc-path":"CC-MAIN-2014-15/segments/1398223206118.10/warc/CC-MAIN-20140423032006-00016-ip-10-147-4-33.ec2... |
Random turtles in the hyperbolic plane
My eldest daughter Lisa recently brought home a note from her school from her computer class teacher. Apparently, the 5th grade kids have been learning to program in Logo, in the MicroWorlds
programming environment. I have very pleasant memories of learning to program in Logo back... | {"url":"http://lamington.wordpress.com/2012/12/15/random-turtles-in-the-hyperbolic-plane/","timestamp":"2014-04-17T07:22:40Z","content_type":null,"content_length":"97135","record_id":"<urn:uuid:471195d6-c98e-4ca9-b668-c7d39294cfeb>","cc-path":"CC-MAIN-2014-15/segments/1398223204388.12/warc/CC-MAIN-20140423032004-00163-... |
User-Defined Methods
July 25th, 2011, 11:13 PM
User-Defined Methods
I am writing a program for my Java class that takes the length of two sides of a right triangle, and calculates the hypotenuse, as well as the sine, cosine, and tangent of each non-right angle of
the right triangle. The calculations for the hyp... | {"url":"http://www.javaprogrammingforums.com/%20whats-wrong-my-code/10084-user-defined-methods-printingthethread.html","timestamp":"2014-04-19T20:48:30Z","content_type":null,"content_length":"20615","record_id":"<urn:uuid:ccc59c5c-a854-4fa3-8dfa-c13e00f1f5e9>","cc-path":"CC-MAIN-2014-15/segments/1397609537376.43/warc/C... |
Alviso Precalculus Tutor
Find an Alviso Precalculus Tutor
...I have tutored many students over the years, including my son, who is now in the twelfth grade. I can offer tutoring in many subjects, but my specialties are science, math, and computer
programming (I favor Python). I hope to teach you more than just what... | {"url":"http://www.purplemath.com/Alviso_precalculus_tutors.php","timestamp":"2014-04-16T10:48:44Z","content_type":null,"content_length":"23881","record_id":"<urn:uuid:a1f3ee2c-4fbb-4d40-a7cb-1171dcf8ba3f>","cc-path":"CC-MAIN-2014-15/segments/1398223202548.14/warc/CC-MAIN-20140423032002-00142-ip-10-147-4-33.ec2.interna... |
Analysing the benefits of Dodge/Parry and Mastery(Editing)
12-29-2010, 12:07 AM
Analysing the benefits of Dodge/Parry and Mastery(Editing)
First of all,we must know how to calculate the Dodge/Parry/Mastery on your character sheet
Parry = 5%+ parry(after DR)
Dodge = 3.9% +dodge(after DR)
Block = 5%+15%(S... | {"url":"http://www.tankspot.com/printthread.php?t=72913&pp=20&page=1","timestamp":"2014-04-19T03:20:20Z","content_type":null,"content_length":"22586","record_id":"<urn:uuid:38f0d0c5-8cfb-43f0-927d-a12b1d5b9890>","cc-path":"CC-MAIN-2014-15/segments/1397609535745.0/warc/CC-MAIN-20140416005215-00091-ip-10-147-4-33.ec2.int... |
Disagreement with the Duocylinder
I was thinking about the rotachora, trying to get a picture in my head about how they're formed when I noticed that I found out how to get every single rotachoron except the duocylinder. Hmm...
I finally reached this conclusion after some thought:
On the rotatopes page they say that a ... | {"url":"http://hddb.teamikaria.com/forum/viewtopic.php?f=24&t=409","timestamp":"2014-04-17T00:56:28Z","content_type":null,"content_length":"104175","record_id":"<urn:uuid:a74f9189-1d4f-452e-89b3-c5fd5740cb69>","cc-path":"CC-MAIN-2014-15/segments/1398223206120.9/warc/CC-MAIN-20140423032006-00433-ip-10-147-4-33.ec2.inter... |
a Barlow
This page last modified 2003 Aug 04
Barlow Lenses
What is a Barlow Lens?
A Barlow is a negative (diverging) lens that is placed between the objective lens (or primary mirror — from now on these words will be used interchangeably) and the eyepiece of a telescope. It
increases the effective focal length of an o... | {"url":"http://astunit.com/astunit_tutorial.php?topic=barlow","timestamp":"2014-04-19T17:31:52Z","content_type":null,"content_length":"21669","record_id":"<urn:uuid:f0e49d86-4c9a-4b55-bd4a-d78c80ddc6e3>","cc-path":"CC-MAIN-2014-15/segments/1397609537308.32/warc/CC-MAIN-20140416005217-00614-ip-10-147-4-33.ec2.internal.w... |
hemisphere flux for exams
June 12th 2013, 03:02 AM #1
May 2013
hemisphere flux for exams
I require help with this q.thanks.
find the flux of F= (xz²+y )i+( x²y-z)j +(xy²+y²z)k
outwards across the entire surface of the hemispherial region bounded by
z=(1-x²-y²)^½ and z=0
Re: hemisphere flux for exams... | {"url":"http://mathhelpforum.com/calculus/219763-hemisphere-flux-exams.html","timestamp":"2014-04-17T19:21:38Z","content_type":null,"content_length":"31059","record_id":"<urn:uuid:611aef32-2724-495d-8f72-347b6acecc89>","cc-path":"CC-MAIN-2014-15/segments/1397609530895.48/warc/CC-MAIN-20140416005210-00197-ip-10-147-4-33... |
An Isaac Newton Institute Workshop
First-Passage and Extreme Value Problems in Random Processes
The statistics of occupation times
29th June 2006
Author: Godreche, C (CEA Saclay)
I will present a mini-review of some results on the statistics of occupation times for coarsening systems (spin systems, diffusion equation),... | {"url":"http://www.newton.ac.uk/programmes/PDS/Abstract3/godreche.html","timestamp":"2014-04-18T15:43:36Z","content_type":null,"content_length":"2291","record_id":"<urn:uuid:a5b39084-0d29-47e7-9b34-fdfa784a8299>","cc-path":"CC-MAIN-2014-15/segments/1397609533957.14/warc/CC-MAIN-20140416005213-00194-ip-10-147-4-33.ec2.i... |
May 20th 2010, 12:00 PM #1
Nov 2008
Let K be a field, and (x) -> K[x] be an injective map where (x) is the principal ideal generated by x.
(i) Prove that the quotient K[x]-module, K[x]/(x), is isomorphic to K as an abelian group and also as a K-vector space.
Hence there is an exact sequence of K[x]-modu... | {"url":"http://mathhelpforum.com/advanced-algebra/145736-k-x-module.html","timestamp":"2014-04-17T22:40:14Z","content_type":null,"content_length":"37349","record_id":"<urn:uuid:69c9f8f0-eaf4-4e2e-8b89-446b5df95ffb>","cc-path":"CC-MAIN-2014-15/segments/1397609532128.44/warc/CC-MAIN-20140416005212-00054-ip-10-147-4-33.ec... |
Mathematician Fills in a Blank for a Fresh Insight on Art
Titled "Print Gallery," it provides a glimpse through a row of arching windows into an art gallery, where a man is gazing at a picture on the wall. The picture depicts a row of Mediterranean-style
buildings with turrets and balconies, fronting a quay on the isla... | {"url":"http://www.msri.org/people/members/sara/articles/escher.html","timestamp":"2014-04-20T23:28:51Z","content_type":null,"content_length":"64839","record_id":"<urn:uuid:c54aa7be-dab1-4d82-a039-19a56cf68d4d>","cc-path":"CC-MAIN-2014-15/segments/1397609539337.22/warc/CC-MAIN-20140416005219-00399-ip-10-147-4-33.ec2.in... |
Loading the player ...
Download list:
This podcast is part of the series: Alabama Quality Teaching Standards Demonstration Lessons
Suzanne Culbreath
Governors Commission on Quality Teaching in cooperation with Spain Park High School, Hoover City Schools
Part 1 of 2: This video begins with a thought jogger exercise to r... | {"url":"http://alex.state.al.us/podcast_view.php?podcast_id=458","timestamp":"2014-04-16T04:11:16Z","content_type":null,"content_length":"11892","record_id":"<urn:uuid:10d6d6f9-8fcf-4650-98c6-fe859ca457d0>","cc-path":"CC-MAIN-2014-15/segments/1397609521512.15/warc/CC-MAIN-20140416005201-00027-ip-10-147-4-33.ec2.interna... |
Some Random Questions....
October 28th 2006, 07:58 AM
Some Random Questions....
Hello! I'm having some difficulty with these questions. Thanks for the help!
If a = 2j - 3k
b = 3i - 3j + ck
abs(a+b) = root35
Then c is equal?
The angle between vectors a and b is 120 and abs of a = abs of b. The an... | {"url":"http://mathhelpforum.com/math-topics/6952-some-random-questions-print.html","timestamp":"2014-04-18T09:53:32Z","content_type":null,"content_length":"12600","record_id":"<urn:uuid:689f18b2-5562-46e2-9d99-2423c2da7608>","cc-path":"CC-MAIN-2014-15/segments/1397609533121.28/warc/CC-MAIN-20140416005213-00551-ip-10-1... |
How the Concept of Average Might be Tested on the ACT or SAT
Figuring out the average of a group of numbers is easy. We have learned since middle school to add up the numbers and divide by however many numbers we have. This gives us the average. SAT and ACT
math tests often try to be tricky and ask us to use this avera... | {"url":"http://info.methodtestprep.com/blog/bid/63424/How-the-Concept-of-Average-Might-be-Tested-on-the-ACT-or-SAT","timestamp":"2014-04-19T11:57:56Z","content_type":null,"content_length":"47927","record_id":"<urn:uuid:6395ee18-30e7-4dc7-9f86-7a73931408cf>","cc-path":"CC-MAIN-2014-15/segments/1397609537186.46/warc/CC-M... |
Is this cool with you?
Re: Is this cool with you?
Yes, that book has a good collection of problems!
"Believe nothing, no matter where you read it, or who said it, no matter if I have said it, unless it agrees with your own reason and your own common sense" - Buddha?
"Data! Data! Data!" he cried impatiently. "I can't ma... | {"url":"http://www.mathisfunforum.com/viewtopic.php?id=12832&p=50","timestamp":"2014-04-20T21:26:43Z","content_type":null,"content_length":"37407","record_id":"<urn:uuid:b0e1419c-bb03-48a7-a93e-ff73bcd967bc>","cc-path":"CC-MAIN-2014-15/segments/1398223206770.7/warc/CC-MAIN-20140423032006-00431-ip-10-147-4-33.ec2.intern... |
Antonio Gulli's coding playground
Search engines mantains a word index made up by a dictionary of words and, for each work a list of documents containing the. For instance
impossible -> 343, 5, 63459, 4, ....., 32
mission -> 3449, 558, ...., 49
Suppose the two lists are very long. For instance, the word 'impossible' ca... | {"url":"http://codingplayground.blogspot.com/2010_03_01_archive.html","timestamp":"2014-04-16T19:20:36Z","content_type":null,"content_length":"279175","record_id":"<urn:uuid:df18885d-6559-4159-9123-8c9f73c5006b>","cc-path":"CC-MAIN-2014-15/segments/1398223205375.6/warc/CC-MAIN-20140423032005-00211-ip-10-147-4-33.ec2.in... |
Opinions and PCAs Released the Week of June 25, 2001
5D99-826 Nelson v. Nelson corrected October 30, 2001
5D00-1852 Archambault v. State
5D00-2025 & 5D00-3233Amercian Equity v. Ginhoven
5D00-1721 Mack v. State
5D00-2043 Sebulski v. State
5D00-2511 Happy v. DCF
5D00-2851 W.P. v. DCF
5D00-2930 Blue v. State
5D00-3184 D.... | {"url":"http://www.5dca.org/Opinions/Opin2001/062501/Filings062501.htm","timestamp":"2014-04-21T01:59:12Z","content_type":null,"content_length":"4959","record_id":"<urn:uuid:b62cb003-9bae-4f2f-899c-752b1a293564>","cc-path":"CC-MAIN-2014-15/segments/1397609539447.23/warc/CC-MAIN-20140416005219-00058-ip-10-147-4-33.ec2.i... |
st: question: how to collapse data fast for simplified, binned scatter p
Notice: On March 31, it was announced that Statalist is moving from an email list to a forum. The old list will shut down at the end of May, and its replacement, statalist.org is already up and
[Date Prev][Date Next][Thread Prev][Thread Next][Date... | {"url":"http://www.stata.com/statalist/archive/2012-03/msg01139.html","timestamp":"2014-04-19T12:12:45Z","content_type":null,"content_length":"9329","record_id":"<urn:uuid:20744876-3b16-47fc-a215-4e158943d7b1>","cc-path":"CC-MAIN-2014-15/segments/1397609537186.46/warc/CC-MAIN-20140416005217-00662-ip-10-147-4-33.ec2.int... |
Re: st: RES: treatreg model with binary outcomes
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]
Re: st: RES: treatreg model with binary outcomes
From Kim Manturuk <manturuk@email.unc.edu>
To statalist@hsphsun2.harvard.edu
Subject Re: st: RES: treatreg model with binary outcomes
Da... | {"url":"http://www.stata.com/statalist/archive/2007-11/msg00869.html","timestamp":"2014-04-20T01:10:45Z","content_type":null,"content_length":"8236","record_id":"<urn:uuid:7bd606fa-d53f-4ff0-99c1-0132a9a0c4d1>","cc-path":"CC-MAIN-2014-15/segments/1398223201753.19/warc/CC-MAIN-20140423032001-00240-ip-10-147-4-33.ec2.int... |
"borrowing" energy
I'm taking a course on particle and nuclear physics at the moment and one of the first things my lecturer, who has worked in the field for many years, said was that nature can "cheat" by violating
energy conservation for a very short length of time. It can borrow energy (apparently not from anywhere ... | {"url":"http://forums.xkcd.com/viewtopic.php?f=18&t=74983","timestamp":"2014-04-20T05:57:00Z","content_type":null,"content_length":"67531","record_id":"<urn:uuid:b1c47986-cb39-42ae-90f0-7b7f5fcf0996>","cc-path":"CC-MAIN-2014-15/segments/1398223206647.11/warc/CC-MAIN-20140423032006-00086-ip-10-147-4-33.ec2.internal.warc... |
Open PID Tuner for PID tuning
pidtool(sys,type) launches the PID Tuner GUI and designs a controller of type type for plant sys.
pidtool(sys,Cbase) launches the GUI with a baseline controller Cbase so that you can compare performance between the designed controller and the baseline controller. If Cbase is a pid or pidst... | {"url":"http://www.mathworks.com/help/control/ref/pidtool.html?nocookie=true","timestamp":"2014-04-19T09:47:40Z","content_type":null,"content_length":"51574","record_id":"<urn:uuid:6de29b9f-f0ff-4564-a4e7-4e1c64628436>","cc-path":"CC-MAIN-2014-15/segments/1397609537097.26/warc/CC-MAIN-20140416005217-00263-ip-10-147-4-3... |
formula getting first two numbers in another cell
formula getting first two numbers in another cell
in finding the right formula getting only the first two numbers of a date.
Cell a1
Cell a2
Cell a1
Cell a2
I need a formula in cell a2 that only gets first two numbers of another cell.
Visit publisher's web-site: formula... | {"url":"http://tutorialsources.com/excel/tutorials/formula-getting-first-two-numbers-in-another-cell.htm","timestamp":"2014-04-17T13:35:03Z","content_type":null,"content_length":"19137","record_id":"<urn:uuid:a217e6b4-595e-4c72-bec0-1c296c55ccc8>","cc-path":"CC-MAIN-2014-15/segments/1397609530131.27/warc/CC-MAIN-201404... |
LTPP Computed Parameter: Dynamic Modulus
LTPP Computed Parameter: Dynamic Modulus
APPENDIX C: AMPT VERSUS TP-62
C.1 EXPERIMENTAL VERIFICATION OF AMPT AND TP-62 DIFFERENCES
To assess differences in the measured moduli determined from the AMPT... | {"url":"http://www.fhwa.dot.gov/publications/research/infrastructure/pavements/ltpp/10035/010.cfm","timestamp":"2014-04-21T15:15:43Z","content_type":null,"content_length":"129718","record_id":"<urn:uuid:9876543b-f250-4a9f-b2ee-a8914a15f402>","cc-path":"CC-MAIN-2014-15/segments/1397609540626.47/warc/CC-MAIN-201404160052... |
Bodega Statistics Tutors
...I help the students to efficiently develop a system to categorize, memorize, and repeat the information. I teach all subjects with the same fundamental process. I evaluate a student's baseline
ability and identify the types of thinking skills that can be developed.
37 Subjects: includi... | {"url":"http://www.algebrahelp.com/Bodega_statistics_tutors.jsp","timestamp":"2014-04-21T15:17:47Z","content_type":null,"content_length":"24826","record_id":"<urn:uuid:52fc846c-9191-4369-865b-128604ff93b5>","cc-path":"CC-MAIN-2014-15/segments/1397609540626.47/warc/CC-MAIN-20140416005220-00294-ip-10-147-4-33.ec2.interna... |
If A and B are 4x4 matrices, det(A) = -4, det(B) = 3, then (b) det(3A) = ????, - Homework Help - eNotes.com
If A and B are 4x4 matrices, det(A) = -4, det(B) = 3, then
(b) det(3A) = ????,
One property of determinants says for `nxxn` matrix `A` and some scalar `c` the following holds
`det(c cdot A)=c^ndet(A)`
Hence we ha... | {"url":"http://www.enotes.com/homework-help/b-4x4-matrices-det-4-det-b-3-then-b-det-3a-431094","timestamp":"2014-04-17T05:24:51Z","content_type":null,"content_length":"24662","record_id":"<urn:uuid:931d19e3-532d-4f24-a74a-4634213b5800>","cc-path":"CC-MAIN-2014-15/segments/1397609526252.40/warc/CC-MAIN-20140416005206-00... |
North Bergen Algebra 2 Tutor
Find a North Bergen Algebra 2 Tutor
...I'm a college graduate in Physics. 1 year of calculus in high school, 2 years of calculus/analysis in university. In-depth familiarity with all aspects of the subject and an intuitive feel for
it that I do my best to transmit to students. I too tho... | {"url":"http://www.purplemath.com/north_bergen_algebra_2_tutors.php","timestamp":"2014-04-17T13:46:19Z","content_type":null,"content_length":"24300","record_id":"<urn:uuid:2aa8dc64-ab63-4221-901b-a08faa399b33>","cc-path":"CC-MAIN-2014-15/segments/1398223201753.19/warc/CC-MAIN-20140423032001-00615-ip-10-147-4-33.ec2.int... |
MathGroup Archive: October 1997 [00274]
[Date Index] [Thread Index] [Author Index]
Re: Horse Race Puzzle
• To: mathgroup at smc.vnet.net
• Subject: [mg9238] Re: [mg9162] Horse Race Puzzle
• From: Robert Pratt <rpratt at math.unc.edu>
... | {"url":"http://forums.wolfram.com/mathgroup/archive/1997/Oct/msg00274.html","timestamp":"2014-04-21T07:17:47Z","content_type":null,"content_length":"35771","record_id":"<urn:uuid:8bc3f109-f49c-4139-a177-8a805377298e>","cc-path":"CC-MAIN-2014-15/segments/1397609539665.16/warc/CC-MAIN-20140416005219-00315-ip-10-147-4-33.... |
RE: Re: lookup-table thoughts (was Re: matching multip
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]
RE: Re: lookup-table thoughts (was Re: matching multip
Play the video
Subject: RE: Re: lookup-table thoughts (was Re: matching multiple times, outputting once?
Fro... | {"url":"http://www.stylusstudio.com/xsllist/200111/post90330.html","timestamp":"2014-04-17T18:40:26Z","content_type":null,"content_length":"28443","record_id":"<urn:uuid:cb97164b-f5e1-4226-a6f2-fa17c59927cb>","cc-path":"CC-MAIN-2014-15/segments/1397609530895.48/warc/CC-MAIN-20140416005210-00396-ip-10-147-4-33.ec2.inter... |
Introductory Biological Statistics
ISBN: 9781577663805 | 1577663802
Edition: 2nd
Format: Paperback
Publisher: Waveland Pr Inc
Pub. Date: 8/22/2005
Why Rent from Knetbooks?
Because Knetbooks knows college students. Our rental program is designed to save you time and money. Whether you need a textbook for a semester, qua... | {"url":"http://www.knetbooks.com/introductory-biological-statistics-2nd/bk/9781577663805","timestamp":"2014-04-16T13:58:01Z","content_type":null,"content_length":"51253","record_id":"<urn:uuid:5c703df5-5c2e-4bb2-ba1f-efe7630fe9bc>","cc-path":"CC-MAIN-2014-15/segments/1397609523429.20/warc/CC-MAIN-20140416005203-00216-i... |
exponential equation
You might be able to find a specific solution by trial and error (I couldn't but someone might) but there is no general solution method for this. You are going to have to find an approximate
solution. Lambert's W function is the usual advice for something like this but I can't think of any immediat... | {"url":"http://mathhelpforum.com/algebra/218448-exponential-equation.html","timestamp":"2014-04-20T03:49:05Z","content_type":null,"content_length":"38404","record_id":"<urn:uuid:34b53bc6-b765-47c8-b848-29fbfd137f71>","cc-path":"CC-MAIN-2014-15/segments/1397609537864.21/warc/CC-MAIN-20140416005217-00227-ip-10-147-4-33.e... |
Third Base
Third Base
Martha Stewart's File Cabinet
Some weeks ago, rooting around in files of old clippings and correspondence, I made a discovery of astonishing obviousness and triviality. What I found had nothing to do with the content of the
files; it was about their arrangement in the drawer.
Imagine a fastidiou... | {"url":"http://www.americanscientist.org/issues/pub/2001/11/third-base/6","timestamp":"2014-04-19T09:26:29Z","content_type":null,"content_length":"132710","record_id":"<urn:uuid:c9fa376a-21d0-40ab-b06b-d361d263fd46>","cc-path":"CC-MAIN-2014-15/segments/1398223207046.13/warc/CC-MAIN-20140423032007-00227-ip-10-147-4-33.e... |
Convert a Distance Estimate to a Mesh
I had a need to create a simple mandelbulb mesh so I made an app to shoot rays from a bounding box to the origin and deform the box to the shape of the mandelbulb. It worked "ok" so I added user
scripting so any distance estimation function could be used. Attached is the .NET execu... | {"url":"http://www.fractalforums.com/general-discussion/convert-a-distance-estimate-to-a-mesh/","timestamp":"2014-04-20T08:14:35Z","content_type":null,"content_length":"82169","record_id":"<urn:uuid:5fd3ed13-789e-4f47-9028-a4983186abf7>","cc-path":"CC-MAIN-2014-15/segments/1397609538110.1/warc/CC-MAIN-20140416005218-00... |
Derive expression based on Cantor SFC
September 22nd 2010, 02:14 AM #1
Junior Member
Mar 2009
Derive expression based on Cantor SFC
I’m trying to compare one system against another and form some type of expression to compare the cost to update a server.
System One can update a server in log (N) overlay hops... | {"url":"http://mathhelpforum.com/differential-geometry/157043-derive-expression-based-cantor-sfc.html","timestamp":"2014-04-16T16:04:28Z","content_type":null,"content_length":"30944","record_id":"<urn:uuid:06a7299d-9b63-4f3a-82ed-2c8f0192311b>","cc-path":"CC-MAIN-2014-15/segments/1397609524259.30/warc/CC-MAIN-201404160... |
Checking consistency of a system of linear equations and inequalities
up vote 1 down vote favorite
I have a lot of systems of equations and inequalities of the following form:
$$ a_{1,1}x+a_{1,2}y+a_{1,3}z+a_{1,4}w = 2 $$ $$ \ldots $$ $$ 0 < x < 2 $$ $$ 0 < y < 2 $$ $$ 0 < z < 2 $$ $$ 0 < w < 2 $$
There are always at l... | {"url":"http://mathoverflow.net/questions/90189/checking-consistency-of-a-system-of-linear-equations-and-inequalities?sort=votes","timestamp":"2014-04-19T02:39:33Z","content_type":null,"content_length":"64002","record_id":"<urn:uuid:9ca91ead-3856-4de5-bbd8-cdd3b8a7c74b>","cc-path":"CC-MAIN-2014-15/segments/139760953574... |
Fresh O'Caml examples
hm.ml A naive implementation of Hindley-Milner type inference for a mini ML.
minimetaml.ml A semantics-based interpreter for a miniature, untyped MetaML.
nbe.ml Normalization by evaluation for untyped lambda terms.
nomst.ml Normalization by evaluation for Nominal Sy... | {"url":"http://www.cl.cam.ac.uk/~amp12/fresh-ocaml/examples.html","timestamp":"2014-04-21T04:54:54Z","content_type":null,"content_length":"1974","record_id":"<urn:uuid:17253956-3061-44c4-9cbd-d30d37fa497f>","cc-path":"CC-MAIN-2014-15/segments/1397609539493.17/warc/CC-MAIN-20140416005219-00199-ip-10-147-4-33.ec2.interna... |
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:
• one year ago
• one year ago
Your question is ready. Sign... | {"url":"http://openstudy.com/updates/50b3e243e4b09749ccad074d","timestamp":"2014-04-18T11:04:23Z","content_type":null,"content_length":"51370","record_id":"<urn:uuid:aedd8d3c-2c6e-4704-a6fc-4ee0930c9a83>","cc-path":"CC-MAIN-2014-15/segments/1398223202774.3/warc/CC-MAIN-20140423032002-00581-ip-10-147-4-33.ec2.internal.w... |
Pan Balance – Expressions
This interactive pan balance allows numeric or algebraic expressions to be entered and compared. You can "weigh" the expressions you want to compare by entering them on either side of the balance.
Using this interactive tool, you can practice arithmetic and algebraic skills, and investigate th... | {"url":"http://illuminations.nctm.org/Activity.aspx?id=3529","timestamp":"2014-04-17T21:23:38Z","content_type":null,"content_length":"35456","record_id":"<urn:uuid:e557a037-7f9b-480b-9592-f2db4fa3b2e2>","cc-path":"CC-MAIN-2014-15/segments/1397609532128.44/warc/CC-MAIN-20140416005212-00141-ip-10-147-4-33.ec2.internal.wa... |
The evolution of reversible switches in the presence of irreversible mimics
• We are sorry, but NCBI web applications do not support your browser and may not function properly.
More information
Evolution. Author manuscript; available in PMC Sep 1, 2010.
Published in final edited form as:
PMCID: PMC2770902
NIHMSID... | {"url":"http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2770902/?tool=pubmed","timestamp":"2014-04-17T19:01:59Z","content_type":null,"content_length":"154854","record_id":"<urn:uuid:78f981d8-ae63-4cee-b190-9f4fe87713ea>","cc-path":"CC-MAIN-2014-15/segments/1397609530895.48/warc/CC-MAIN-20140416005210-00175-ip-10-147-4-33.e... |
Get TF and IDF of all the terms of an index [Lucene 4.3]
Let's assume that you have indexed a number of documents with Lucene 4.3. The database created by Lucene is a "flat" database that has a number of fields for every document. Each field contains the
terms of a document and their respective frequencies in a termVec... | {"url":"http://filotechnologia.blogspot.it/2013/11/get-tf-and-idf-of-all-terms-of-index.html","timestamp":"2014-04-21T07:04:37Z","content_type":null,"content_length":"87217","record_id":"<urn:uuid:cf7b0e2b-1432-4a6f-8d12-e0896f6ccd3f>","cc-path":"CC-MAIN-2014-15/segments/1398223201753.19/warc/CC-MAIN-20140423032001-003... |
2012-2013 Catalogue
Mathematics (Bachelor of Science)
The mathematics curriculum is quite flexible. It is designed to provide a sound basic training in mathematics that allows a student to experience the broad sweep of mathematical ideas and techniques,
to utilize the computer in mathematics, and to develop an area of ... | {"url":"http://www.uvm.edu/academics/catalogue2012-13/?Page=read.php&p=/Colleges_and_Schools/College_of_Engineering_and_Mathematical_Sciences/Academic_Offerings/Mathematics_(B.S.)&SM=collegemenu.html","timestamp":"2014-04-19T10:14:48Z","content_type":null,"content_length":"34256","record_id":"<urn:uuid:78204944-ce8d-4b... |
P.rex: An Interactive Proof Explainer
Results 1 - 10 of 19
, 2003
"... Current Description Logic reasoning systems provide only limited support for debugging logically erroneous knowledge bases. In this paper we propose new non-standard reasoning services which we
designed and implemented to pinpoint logical contradict... | {"url":"http://citeseerx.ist.psu.edu/showciting?cid=407396","timestamp":"2014-04-16T12:08:22Z","content_type":null,"content_length":"36710","record_id":"<urn:uuid:218c3554-aec2-4a26-9bcc-45c5f4b46f87>","cc-path":"CC-MAIN-2014-15/segments/1397609523265.25/warc/CC-MAIN-20140416005203-00100-ip-10-147-4-33.ec2.internal.war... |
sphere, in geometry, the three-dimensional analogue of a circle. The term is applied to the spherical surface, every point of which is the same distance (the radius) from a certain fixed point (the
center), and also to the volume enclosed by such a surface. The curve formed by a plane cutting a sphere is a circle. If t... | {"url":"http://www.factmonster.com/encyclopedia/science/sphere.html","timestamp":"2014-04-17T06:58:21Z","content_type":null,"content_length":"21020","record_id":"<urn:uuid:89c392bb-2ac3-4e4c-820c-d4b993a6630b>","cc-path":"CC-MAIN-2014-15/segments/1398223211700.16/warc/CC-MAIN-20140423032011-00136-ip-10-147-4-33.ec2.int... |
A result about Fredholm operator
up vote 0 down vote favorite
When I read the article "Index Theory" in Handbook of global analysis, I meet a result as below(Corollary 2.13):
If every $F_0\in \mathcal {F}(H_1,H_2)$, there is an open neighborhood $U_0\subseteq \mathcal {B}(H_1,H_2)$, such that $F\in U_0$ implies $F((Ker... | {"url":"http://mathoverflow.net/questions/36733/a-result-about-fredholm-operator","timestamp":"2014-04-18T11:08:48Z","content_type":null,"content_length":"52679","record_id":"<urn:uuid:41caebcc-8bcf-46df-a7c9-a28be173ae97>","cc-path":"CC-MAIN-2014-15/segments/1397609533308.11/warc/CC-MAIN-20140416005213-00124-ip-10-147... |
JEE Advanced Syllabus Mathematics | Entranceindia
JEE Advanced Syllabus Mathematics
Algebra: Algebra of complex numbers, addition, multiplication, conjugation, polar representation, properties of modulus and principal argument, triangle inequality, cube roots of unity, geometric
Quadratic equations with real coefficien... | {"url":"http://www.entranceindia.com/jee-advanced/jee-advanced-syllabus-mathematics/","timestamp":"2014-04-17T06:52:53Z","content_type":null,"content_length":"36619","record_id":"<urn:uuid:3f3f357d-3d2c-4502-a105-32c2dff90847>","cc-path":"CC-MAIN-2014-15/segments/1397609526311.33/warc/CC-MAIN-20140416005206-00408-ip-10... |
Any math teachers in the house? Really need help with teaching my kids math :(
02-05-2013, 03:11 PM
Any math teachers in the house? Really need help with teaching my kids math :(
So my 9-year old is struggling big time with math.
Dad is a buffoon who hates math, and is also afraid & concerned that I am confusin... | {"url":"http://www.jetsinsider.com/forums/printthread.php?t=253828","timestamp":"2014-04-20T22:04:26Z","content_type":null,"content_length":"24917","record_id":"<urn:uuid:9f30124a-137c-4989-b21a-493a3a72d0ee>","cc-path":"CC-MAIN-2014-15/segments/1397609539230.18/warc/CC-MAIN-20140416005219-00338-ip-10-147-4-33.ec2.inte... |
North Miami Beach ACT Tutor
Find a North Miami Beach ACT Tutor
...By the end of 3L, I was already looking for a full-time job as a teacher. I dabbled in public school teaching (as a middle school sub) and then spent a year as a full-time intern at a private
school in the Boston area. After a few months in a 4th gra... | {"url":"http://www.purplemath.com/North_Miami_Beach_ACT_tutors.php","timestamp":"2014-04-16T07:57:51Z","content_type":null,"content_length":"24240","record_id":"<urn:uuid:3d028ee6-828d-4da1-8978-169eaa3a732c>","cc-path":"CC-MAIN-2014-15/segments/1398223206647.11/warc/CC-MAIN-20140423032006-00344-ip-10-147-4-33.ec2.inte... |
Can You Explain What Each Of These Graphs Mean? ... | Chegg.com
Can you explain what each of these graphs mean? Thepeaks, and the different values on the x axis.
I know how to get them but I can't explain them, especiallywhat the difference between the two is.
The t's have the same value in both
I know the top one is d... | {"url":"http://www.chegg.com/homework-help/questions-and-answers/explain-graphs-mean-thepeaks-different-values-x-axis-know-get-t-explain-especiallywhat-dif-q409413","timestamp":"2014-04-20T22:12:11Z","content_type":null,"content_length":"19628","record_id":"<urn:uuid:2c3bdade-09e7-49a3-9aca-a7a99d77a5d2>","cc-path":"CC... |
drag coefficient
Definitions for drag coefficient
This page provides all possible meanings and translations of the word drag coefficient
Princeton's WordNet
1. drag coefficient, coefficient of drag(noun)
the ratio of the drag on a body moving through air to the product of the velocity and the surface area of the b... | {"url":"http://www.definitions.net/definition/drag%20coefficient","timestamp":"2014-04-19T02:16:08Z","content_type":null,"content_length":"24954","record_id":"<urn:uuid:16f9176c-9792-46ec-b5c4-05dcfb3e11d6>","cc-path":"CC-MAIN-2014-15/segments/1397609535745.0/warc/CC-MAIN-20140416005215-00586-ip-10-147-4-33.ec2.interna... |
Decimals videos
Here are some of my recent additions to
Math Mammoth Youtube channel
- videos about decimal arithmetic.
Add and subtract decimals
I explain the main principle in adding or subtracting decimals: we can add or subtract "as if" there was no decimal point IF the decimals have the same kind of parts--either ... | {"url":"http://homeschoolmath.blogspot.com/2011/04/decimals-videos.html","timestamp":"2014-04-17T04:35:55Z","content_type":null,"content_length":"110646","record_id":"<urn:uuid:153d1674-93e2-4dda-8abb-539b53c57c52>","cc-path":"CC-MAIN-2014-15/segments/1398223207046.13/warc/CC-MAIN-20140423032007-00190-ip-10-147-4-33.ec... |
The force F of attraction between two bodies varies jointly as the weights of the two bodies and inversely as the square of the distance between them. Express this fact as a variation using c as a constant. Use M1 and M2 for the weights of the two bodies.
The force F of attraction between two bodies varies jointly as t... | {"url":"http://www.weegy.com/?ConversationId=2546F971","timestamp":"2014-04-20T05:45:54Z","content_type":null,"content_length":"33013","record_id":"<urn:uuid:6064b7c6-3940-47d9-b3b5-6e0203fdd85e>","cc-path":"CC-MAIN-2014-15/segments/1398223207046.13/warc/CC-MAIN-20140423032007-00141-ip-10-147-4-33.ec2.internal.warc.gz"... |
multivariable calc question
August 28th 2009, 12:58 PM #1
Jul 2009
Describe the given set with a single equation or with a pair of equations:
The set of points in space that lie 2 units from the point (0,0,1) and, at the same time, 2 units from the point (0,0,-1).
I got the circle x^2 +y^2=3, z=0
is... | {"url":"http://mathhelpforum.com/calculus/99592-multivariable-calc-question.html","timestamp":"2014-04-18T13:58:19Z","content_type":null,"content_length":"31481","record_id":"<urn:uuid:a72c738f-256c-4918-bcb2-c2cbf1e07f9d>","cc-path":"CC-MAIN-2014-15/segments/1397609533689.29/warc/CC-MAIN-20140416005213-00138-ip-10-147... |
How to convert a number to binary and then seperate into digits in pbasic?
08-29-2009, 03:44 AM #1
I want to use the potentiometer to provide input to a neural network, so I want to convert the rctime number to a binary number, and then separate it into 1 digit lengths.
For example, say the potmeter gives the r... | {"url":"http://forums.parallax.com/showthread.php/115582-How-to-convert-a-number-to-binary-and-then-seperate-into-digits-in-pbasic","timestamp":"2014-04-19T22:16:24Z","content_type":null,"content_length":"61088","record_id":"<urn:uuid:ddbe6273-41e8-4919-b0c5-a96b16b1331c>","cc-path":"CC-MAIN-2014-15/segments/1397609537... |
PR70 versus PF70
Does anybody know the difference between a PR70 and a PF70? I know 70 is the highest grade a coin can get, but is there a PR proof and a PF proof?
Thanks for your help.
Terribly think we be talkin' about the same thing old fellow.....
stainless ANTONINIVS
they're both to same - proof 70... | {"url":"http://www.cointalk.com/threads/pr70-versus-pf70.94477/","timestamp":"2014-04-20T05:43:44Z","content_type":null,"content_length":"50036","record_id":"<urn:uuid:bc33d935-9255-48a6-a007-658765543e1c>","cc-path":"CC-MAIN-2014-15/segments/1397609538022.19/warc/CC-MAIN-20140416005218-00299-ip-10-147-4-33.ec2.interna... |
11.2.4 Bit-Value Type -
The BIT data type is used to store bit-field values. A type of BIT(M) enables storage of M-bit values. M can range from 1 to 64.
To specify bit values, b'value' notation can be used. value is a binary value written using zeros and ones. For example, b'111' and b'10000000' represent 7 and 128, r... | {"url":"http://docs.oracle.com/cd/E17952_01/refman-5.6-en/bit-type.html","timestamp":"2014-04-17T14:01:55Z","content_type":null,"content_length":"4977","record_id":"<urn:uuid:1092041a-be1c-4624-ba59-7c185505ec8e>","cc-path":"CC-MAIN-2014-15/segments/1397609530131.27/warc/CC-MAIN-20140416005210-00467-ip-10-147-4-33.ec2.... |
Palisade, NJ Math Tutor
Find a Palisade, NJ Math Tutor
...Whether a student needs to learn addition or upper level algebra, basic reading skills or SAT level English, I can help. I will methodically and patiently work step by step to make the material
easy. I instruct students ranging from pre-K to adult.
30 Subj... | {"url":"http://www.purplemath.com/palisade_nj_math_tutors.php","timestamp":"2014-04-20T16:36:28Z","content_type":null,"content_length":"23872","record_id":"<urn:uuid:39cb2c34-c4d7-4226-b729-10d3ac8b60cd>","cc-path":"CC-MAIN-2014-15/segments/1398223206647.11/warc/CC-MAIN-20140423032006-00437-ip-10-147-4-33.ec2.internal.... |
Topology Seminars Spring 2014
Seminars will begin this semester on Monday 3 February. They will be held at 4.00pm in Frank Adams 2, preceded by high-class tea, coffee and biscuits from 3.30pm on the Atrium Bridge. We will
visit Sandbar after each meeting, for refreshments and further discussion...
• Monday 03... | {"url":"http://www.mims.manchester.ac.uk/events/seminars/topology.php","timestamp":"2014-04-18T10:50:54Z","content_type":null,"content_length":"17700","record_id":"<urn:uuid:68c81ffe-8fa2-4335-9adc-d4fed7e99e2f>","cc-path":"CC-MAIN-2014-15/segments/1398223203422.8/warc/CC-MAIN-20140423032003-00283-ip-10-147-4-33.ec2.in... |
188 helpers are online right now
75% of questions are answered within 5 minutes.
is replying to Can someone tell me what button the professor is hitting...
• Teamwork 19 Teammate
• Problem Solving 19 Hero
• Engagement 19 Mad Hatter
• You have blocked this person.
• ✔ You're a fan Checking fan status...
Thanks... | {"url":"http://openstudy.com/users/hoblos/answered/1","timestamp":"2014-04-18T13:51:57Z","content_type":null,"content_length":"121439","record_id":"<urn:uuid:79eb0963-47de-4b2a-8dc8-554f1bd6c8c5>","cc-path":"CC-MAIN-2014-15/segments/1397609533689.29/warc/CC-MAIN-20140416005213-00476-ip-10-147-4-33.ec2.internal.warc.gz"... |
Problem of a function
January 26th 2007, 09:39 AM #1
Super Member
Mar 2006
Problem of a function
Suppose that $f:\mathbb{R}\mapsto\mathbb{R}$ is a continuous, bounded, strictly increasing function.
(a) Show that there is a point $a_{1}\epsilon\mathbb{R}$ such that $f(a_{1})>a_{1}$
(b) For each $n\epsilo... | {"url":"http://mathhelpforum.com/calculus/10678-problem-function.html","timestamp":"2014-04-17T04:07:26Z","content_type":null,"content_length":"64067","record_id":"<urn:uuid:e46a6b2a-59a5-48de-9529-c785cae02912>","cc-path":"CC-MAIN-2014-15/segments/1397609526252.40/warc/CC-MAIN-20140416005206-00614-ip-10-147-4-33.ec2.i... |
The influence of network rigidity on the electrical switching behaviour of Ge–Te–Si glasses suitable for phase change memory applications
Anbarasu, M and Asokan, S (2007) The influence of network rigidity on the electrical switching behaviour of Ge–Te–Si glasses suitable for phase change memory applications. In: Journa... | {"url":"http://eprints.iisc.ernet.in/13015/","timestamp":"2014-04-23T16:03:22Z","content_type":null,"content_length":"24255","record_id":"<urn:uuid:4137c9ea-1aeb-494d-9ef4-9f5c01338750>","cc-path":"CC-MAIN-2014-15/segments/1398223202774.3/warc/CC-MAIN-20140423032002-00567-ip-10-147-4-33.ec2.internal.warc.gz"} |
MathGroup Archive: January 2009 [00132]
[Date Index] [Thread Index] [Author Index]
Re: Animation = Translation + Vibration, But How?
• To: mathgroup at smc.vnet.net
• Subject: [mg95192] Re: Animation = Translation + Vibration, But How?
... | {"url":"http://forums.wolfram.com/mathgroup/archive/2009/Jan/msg00132.html","timestamp":"2014-04-18T13:20:52Z","content_type":null,"content_length":"29123","record_id":"<urn:uuid:dc8be6f5-e2ec-4a71-9a60-aa3ffeed93ce>","cc-path":"CC-MAIN-2014-15/segments/1397609533689.29/warc/CC-MAIN-20140416005213-00554-ip-10-147-4-33.... |
The Finance Professionals' Post
A Primer on Value at Risk
Click to Print This Page
Value at risk, or VaR, is viewed by some as a massively important measure. It is unique in how it characterizes risk. Most measures show risk either as a percentage (as standard deviation and
tracking error do) or in units (as the Sharpe... | {"url":"http://post.nyssa.org/nyssa-news/2010/05/a-primer-on-value-at-risk.html","timestamp":"2014-04-16T07:13:28Z","content_type":null,"content_length":"76666","record_id":"<urn:uuid:a10c0785-52eb-41cf-a977-c2f8ac7d7794>","cc-path":"CC-MAIN-2014-15/segments/1397609521558.37/warc/CC-MAIN-20140416005201-00081-ip-10-147-... |
Ordering labellings of a fixed poset.
up vote 0 down vote favorite
Let $\{A_1,\ldots, A_m\}$ be a family of sets and $I=\{1, \ldots, m\}$. Assume for any $J\subset I$, $B_J=\bigcap_{i\in J}A_j$ satisfies $1\leq |B_J| \leq m-1$ as long as $|J|>1$.
We define a labelling of $J\subseteq I$ as follows. $l(J)=|B_J|$ if $|J|>... | {"url":"http://mathoverflow.net/questions/64518/ordering-labellings-of-a-fixed-poset","timestamp":"2014-04-20T18:37:59Z","content_type":null,"content_length":"51183","record_id":"<urn:uuid:ed56f9b9-6828-4de7-b1fa-15180c2bc5e3>","cc-path":"CC-MAIN-2014-15/segments/1397609539066.13/warc/CC-MAIN-20140416005219-00515-ip-10... |
Relation between Hecke Operator and Hecke Algebra
up vote 9 down vote favorite
In the study of number theory (and in other branches of mathematics) presence of Hecke Algebra and Hecke Operator is very prominent.
One of the many ways to define the Hecke Operator $T(p)$ is in terms of double coset operator corresponding ... | {"url":"http://mathoverflow.net/questions/19684/relation-between-hecke-operator-and-hecke-algebra/19690","timestamp":"2014-04-18T13:44:01Z","content_type":null,"content_length":"68683","record_id":"<urn:uuid:c08e8a73-0ad2-4ac5-a25e-fa234fd56c43>","cc-path":"CC-MAIN-2014-15/segments/1397609533689.29/warc/CC-MAIN-2014041... |
Department of Biomathematics
• Krzysztof Argasiński (Assistant Professor)
Division in Katowice
Phd Students:
• Przemysław PaĽdziorek
About the Department
The Katowice Branch of the Institute of Mathematics was founded in 1966. Jan Mikusiński was the head of the Branch until his retirement in 1984. From 1985 to ... | {"url":"http://www.impan.pl/EN/Depts/genf.html","timestamp":"2014-04-17T12:33:05Z","content_type":null,"content_length":"10052","record_id":"<urn:uuid:f7f21e71-25bd-4b9d-85e8-e0189260d717>","cc-path":"CC-MAIN-2014-15/segments/1398223207985.17/warc/CC-MAIN-20140423032007-00002-ip-10-147-4-33.ec2.internal.warc.gz"} |
Summary: 52 MATHEMATICS MAGAZINE
Plausible and Genuine Extensions
of L'Hospital's Rule
DePaul University
Chicago, IL 60614
DePaul University
Chicago, IL 60614
DePaul University
Chicago, IL 60614
A plausible extension
Roughly speaking, L'Hospital's Rule says that if f (x)/g(x) is indeterminate at infinity
and if x is la... | {"url":"http://www.osti.gov/eprints/topicpages/documents/record/580/5344909.html","timestamp":"2014-04-18T18:44:23Z","content_type":null,"content_length":"7740","record_id":"<urn:uuid:e81b04f5-02f9-41dc-a7db-f2ea091f2ef9>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.7/warc/CC-MAIN-20140416005215-00558-ip-10-147-4... |
Noncombinatorial proofs of Ramsey's Theorem?
up vote 9 down vote favorite
I know of 2(.5) proofs of Ramsey's theorem, which states (in its simplest form) that for all $k, l\in \mathbb{N}$ there exists an integer $R(k, l)$ with the following property: for any $n>R(k, l)$,
any $2$-coloring of the edges of $K_n$ contains ... | {"url":"http://mathoverflow.net/questions/29427/noncombinatorial-proofs-of-ramseys-theorem","timestamp":"2014-04-17T15:41:31Z","content_type":null,"content_length":"60211","record_id":"<urn:uuid:3b44b3a5-83e9-4531-bd13-c9b559d03179>","cc-path":"CC-MAIN-2014-15/segments/1397609530136.5/warc/CC-MAIN-20140416005210-00451-... |
Mapping class group and CAT(0) spaces
up vote 10 down vote favorite
I hope the questions are not too vague.
1. Is the mapping class group of an orientable punctured surface $CAT(0)$ ?
2. Is any of the remarkable simplicial complexes (curve complex, arc complex...) built on a punctured surface $CAT(0)$?
3. Is there a... | {"url":"http://mathoverflow.net/questions/148536/mapping-class-group-and-cat0-spaces/148543","timestamp":"2014-04-19T23:01:54Z","content_type":null,"content_length":"59341","record_id":"<urn:uuid:766c34dd-4558-47ed-8bc2-ffea7381b284>","cc-path":"CC-MAIN-2014-15/segments/1398223206672.15/warc/CC-MAIN-20140423032006-0061... |
TI-89 Differential Equations
February 16th 2011, 08:15 PM #1
Oct 2010
TI-89 Differential Equations
Is there a way to transform a function on the TI-89 in this manner?
1. The function is f(x,y)
2. I want to transform it to f(v) where v=y/x
For example, the function is f(x,y)=y/x and I want to write i... | {"url":"http://mathhelpforum.com/calculators/171571-ti-89-differential-equations.html","timestamp":"2014-04-18T17:43:26Z","content_type":null,"content_length":"34279","record_id":"<urn:uuid:5b05bcc9-c90e-4aa1-a336-bfd4f4b82589>","cc-path":"CC-MAIN-2014-15/segments/1397609533957.14/warc/CC-MAIN-20140416005213-00202-ip-1... |
quadrant iv
Find sinΦ, given that cosΦ=4/5 and Φ is in quadrant IV. Use idenies to solve.
How do you find cos(arcsin(-2/3)) without using a calculator?
let θ be an angle in quadrant IV, such that cosθ= 1/4. Find cscθ and tanθ.
Basic Trig question about cot and other values?
In which quadrant must the terminal side of l... | {"url":"http://okay.so/en/list/quadrant+iv/0/","timestamp":"2014-04-18T20:48:25Z","content_type":null,"content_length":"86189","record_id":"<urn:uuid:f237c4b3-da38-44df-8e21-5ba4b76c7e6d>","cc-path":"CC-MAIN-2014-15/segments/1397609535095.9/warc/CC-MAIN-20140416005215-00519-ip-10-147-4-33.ec2.internal.warc.gz"} |
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:
Best Response
You've already chosen the best response.... | {"url":"http://openstudy.com/updates/4f7fa46fe4b0bfe8930bdd5c","timestamp":"2014-04-21T02:22:59Z","content_type":null,"content_length":"114473","record_id":"<urn:uuid:0534e813-e620-4f49-89a5-24c09b7a937e>","cc-path":"CC-MAIN-2014-15/segments/1398223206118.10/warc/CC-MAIN-20140423032006-00157-ip-10-147-4-33.ec2.internal... |
Patent application title: METHOD AND APPARATUS FOR A LOCAL COMPETITIVE LEARNING RULE THAT LEADS TO SPARSE CONNECTIVITY
Sign up to receive free email alerts when patent applications with chosen keywords are published SIGN UP
Certain aspects of the present disclosure support a local competitive learning rule applied in a... | {"url":"http://www.faqs.org/patents/app/20120330870","timestamp":"2014-04-20T17:47:45Z","content_type":null,"content_length":"90862","record_id":"<urn:uuid:2a3db6d1-cc11-46e0-aabe-f14accff3a3b>","cc-path":"CC-MAIN-2014-15/segments/1397609538824.34/warc/CC-MAIN-20140416005218-00148-ip-10-147-4-33.ec2.internal.warc.gz"} |
El Segundo Prealgebra Tutor
Find an El Segundo Prealgebra Tutor
...All I expect is a hard-working student who will put in the time necessary for the level of success they want to reach. I will travel to any location within a 25 mile radius of Manhattan Beach.
I am mostly available only on weekends, but can do long ... | {"url":"http://www.purplemath.com/El_Segundo_Prealgebra_tutors.php","timestamp":"2014-04-21T11:07:48Z","content_type":null,"content_length":"24193","record_id":"<urn:uuid:20ab6cc1-52e5-4658-9634-f76dcb0d85e0>","cc-path":"CC-MAIN-2014-15/segments/1397609539705.42/warc/CC-MAIN-20140416005219-00131-ip-10-147-4-33.ec2.inte... |