url stringlengths 6 1.61k | fetch_time int64 1,368,856,904B 1,726,893,854B | content_mime_type stringclasses 3
values | warc_filename stringlengths 108 138 | warc_record_offset int32 9.6k 1.74B | warc_record_length int32 664 793k | text stringlengths 45 1.04M | token_count int32 22 711k | char_count int32 45 1.04M | metadata stringlengths 439 443 | score float64 2.52 5.09 | int_score int64 3 5 | crawl stringclasses 93
values | snapshot_type stringclasses 2
values | language stringclasses 1
value | language_score float64 0.06 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
http://man.linuxexplore.com/htmlman3/hypot.3.html | 1,620,417,278,000,000,000 | text/html | crawl-data/CC-MAIN-2021-21/segments/1620243988802.93/warc/CC-MAIN-20210507181103-20210507211103-00035.warc.gz | 32,018,134 | 4,312 | Name
hypot, hypotf, hypotl — Euclidean distance function
Synopsis
```#include <math.h>
```
```double hypot(``` double x, double y`)`;
```float hypotf(``` float x, float y`)`;
```long double hypotl(``` long double x, long double y`)`;
Note
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
... | 1,057 | 3,547 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.734375 | 3 | CC-MAIN-2021-21 | longest | en | 0.73862 |
https://forums.pragprog.com/forums/322/topics/11934 | 1,524,475,897,000,000,000 | text/html | crawl-data/CC-MAIN-2018-17/segments/1524125945940.14/warc/CC-MAIN-20180423085920-20180423105920-00154.warc.gz | 634,544,371 | 16,869 | small medium large xlarge
• Write a function MyList.span(from, to) that returns a list of the numbers from `from` up to `to`.
A Possible Solution</summary>
```defmodule MyList do
def span(from, to) when from > to, do: []
def span(from, to) do
[ from | span(from+1, to) ]
end
end
IO.inspect MyList.span(5, 10)
```
... | 5,108 | 15,166 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.65625 | 3 | CC-MAIN-2018-17 | latest | en | 0.879044 |
https://math.stackexchange.com/questions/4329157/what-is-the-average-roll-on-dice-while-re-rolling-a-result-of-1 | 1,702,163,068,000,000,000 | text/html | crawl-data/CC-MAIN-2023-50/segments/1700679100972.58/warc/CC-MAIN-20231209202131-20231209232131-00184.warc.gz | 432,709,179 | 37,289 | # What is the average roll on dice while re-rolling a result of 1
The average roll on a six sided die (d6) is 3.5.
If the result is a 1 you are allowed a single re-roll accepting the second result. What does the average roll increase to? And how to calculate this?
Similarly the average roll on 2d6 is 7. If the resul... | 1,026 | 2,980 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 4.5 | 4 | CC-MAIN-2023-50 | latest | en | 0.946811 |
https://www.hsestudyguide.com/how-to-calculate-frequency-rate-2/ | 1,726,409,765,000,000,000 | text/html | crawl-data/CC-MAIN-2024-38/segments/1725700651630.14/warc/CC-MAIN-20240915120545-20240915150545-00699.warc.gz | 743,123,651 | 92,481 | # How to Calculate Frequency Rate with Practical Example
Table of Contents
## How to Calculate Frequency Rate with Practical Example
In the ever-evolving world of data analysis and statistics, understanding how to calculate frequency rate is a fundamental skill. Frequency rate, often referred to as frequency ratio, ... | 1,185 | 5,754 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.4375 | 4 | CC-MAIN-2024-38 | latest | en | 0.908289 |
https://www.jiskha.com/display.cgi?id=1316363555 | 1,502,942,077,000,000,000 | text/html | crawl-data/CC-MAIN-2017-34/segments/1502886102891.30/warc/CC-MAIN-20170817032523-20170817052523-00515.warc.gz | 949,804,308 | 3,509 | # Physics
posted by .
A ball is thrown horizontally from a height of 19.17 m and hits the ground with a speed that is 4.0 times its initial speed. What was the initial speed?
• Physics -
4.79 m/s/s
## Similar Questions
1. ### Physics
A stone thrown horizontally from a height of 7.8 m hits the ground at a distanc... | 629 | 2,344 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.0625 | 3 | CC-MAIN-2017-34 | latest | en | 0.961896 |
http://cn.metamath.org/mpeuni/df-liminf.html | 1,660,557,463,000,000,000 | text/html | crawl-data/CC-MAIN-2022-33/segments/1659882572163.61/warc/CC-MAIN-20220815085006-20220815115006-00324.warc.gz | 12,816,422 | 3,733 | Mathbox for Glauco Siliprandi < Previous Next > Nearby theorems Mirrors > Home > MPE Home > Th. List > Mathboxes > df-liminf Structured version Visualization version GIF version
Definition df-liminf 40502
Description: Define the inferior limit of a sequence of extended real numbers. (Contributed by G... | 842 | 1,756 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.015625 | 3 | CC-MAIN-2022-33 | latest | en | 0.194424 |
https://resources.quizalize.com/view/quiz/real-analysis-dda1e2c8-d3fb-4099-9923-e7eda622ce30 | 1,718,471,434,000,000,000 | text/html | crawl-data/CC-MAIN-2024-26/segments/1718198861605.77/warc/CC-MAIN-20240615155712-20240615185712-00206.warc.gz | 434,298,335 | 14,931 | # Real Analysis
## Quiz by Anitha Cruz PSGRKCW
### Our brand new solo games combine with your quiz, on the same screen
Correct quiz answers unlock more play!
5 questions
• Q1
Let f be a bounded function defined on [a,b] and let P be a partition of [a,b]. If P* is a refinement of P then
L(P*,f) $\le$ L(P*f)
U(P*,... | 296 | 800 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 12, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.0625 | 3 | CC-MAIN-2024-26 | latest | en | 0.642237 |
https://betterlesson.com/community/lesson/22225/unit-2-1-1st-grade | 1,498,462,630,000,000,000 | text/html | crawl-data/CC-MAIN-2017-26/segments/1498128320685.63/warc/CC-MAIN-20170626064746-20170626084746-00563.warc.gz | 734,329,176 | 12,433 | # Lesson: Unit 2-1 1st Grade
1028 Views
0 Favorites
### Lesson Objective
To read symbols of quarter note and quarter rest in rhythm
# Objectives
(Specify skills/information that will be learned.)
SWBAT readand accurately play three different 4 beat rhythms on the board with scaffolding of a BEAT MATRIC as eviden... | 437 | 1,849 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.09375 | 3 | CC-MAIN-2017-26 | longest | en | 0.86094 |
https://www.atozexams.com/mcq/electrical-engineering/59.html | 1,679,625,899,000,000,000 | text/html | crawl-data/CC-MAIN-2023-14/segments/1679296945242.64/warc/CC-MAIN-20230324020038-20230324050038-00661.warc.gz | 718,885,435 | 10,842 | # A step down chopper is operated in the continuous conduction mode in steady state with a constant duty ratio D.if VO is the magnitude of the dc input voltage,the ratio is given by
1. D
2. 1-D
3.
4.
4
D
Explanation :
No Explanation available for this question
# A two port network shown in the figure is descr... | 1,082 | 3,512 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.921875 | 3 | CC-MAIN-2023-14 | latest | en | 0.79457 |
https://www.mrexcel.com/board/threads/random-function-in-vba.19947/ | 1,720,998,494,000,000,000 | text/html | crawl-data/CC-MAIN-2024-30/segments/1720763514654.12/warc/CC-MAIN-20240714220017-20240715010017-00129.warc.gz | 792,387,436 | 20,670 | # Random function in VBA
#### Atalla
##### New Member
Hi all,
I have a list of data (A1 to G20 containing ID, First_Name, Last_Name, etc..). I need a function or a procedure in VBA to randomaly select one record at a time (only the cells that contain the First_Name and Last_Name). And output the results on another sh... | 1,757 | 6,020 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.515625 | 3 | CC-MAIN-2024-30 | latest | en | 0.763399 |
http://stackoverflow.com/questions/5202591/game-on-the-tree-cutting-branch | 1,394,348,566,000,000,000 | text/html | crawl-data/CC-MAIN-2014-10/segments/1393999674993/warc/CC-MAIN-20140305060754-00037-ip-10-183-142-35.ec2.internal.warc.gz | 178,575,453 | 14,911 | # Game on the tree, cutting branch
We have a forest of rooted trees. Two players makes alternating moves according to the following rule: one move is to cut vertex and all its children. Player which makes last move (no vertices remain) wins.
How can we compute Grundy function for the positions in the game?
Suppose w... | 300 | 1,172 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.953125 | 3 | CC-MAIN-2014-10 | latest | en | 0.947704 |
https://solvedlib.com/n/using-the-kf-and-kb-equationsa-certain-substance-x-melts,8821324 | 1,696,380,038,000,000,000 | text/html | crawl-data/CC-MAIN-2023-40/segments/1695233511284.37/warc/CC-MAIN-20231003224357-20231004014357-00025.warc.gz | 579,677,827 | 18,892 | # Using the Kf and Kb equationsA certain substance X melts at - temperature of -45 *C But if a 500.
###### Question:
Using the Kf and Kb equations A certain substance X melts at - temperature of -45 *C But if a 500. sample of X is prepared with 24.8 g of urea ((NHz)co) dissolved in It; the sample is found to have mel... | 3,432 | 11,832 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.078125 | 3 | CC-MAIN-2023-40 | latest | en | 0.849001 |
http://oeis.org/A048943 | 1,548,170,990,000,000,000 | text/html | crawl-data/CC-MAIN-2019-04/segments/1547583857913.57/warc/CC-MAIN-20190122140606-20190122162606-00413.warc.gz | 157,121,996 | 4,522 | This site is supported by donations to The OEIS Foundation.
Hints (Greetings from The On-Line Encyclopedia of Integer Sequences!)
A048943 Product of divisors of n is a square. 7
1, 6, 8, 10, 14, 15, 16, 21, 22, 24, 26, 27, 30, 33, 34, 35, 38, 39, 40, 42, 46, 51, 54, 55, 56, 57, 58, 60, 62, 65, 66, 69, 70, 72, 74, 7... | 1,084 | 3,028 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.921875 | 4 | CC-MAIN-2019-04 | latest | en | 0.869741 |
https://edurev.in/course/quiz/attempt/15198_Technical-Mock-Test-CE--SSC-JE--16/88b91273-f51d-402b-9de5-599c9980056d | 1,652,822,238,000,000,000 | text/html | crawl-data/CC-MAIN-2022-21/segments/1652662520817.27/warc/CC-MAIN-20220517194243-20220517224243-00227.warc.gz | 287,030,077 | 66,196 | # Technical Mock Test CE (SSC JE)- 16
## 200 Questions MCQ Test Mock Test Series of SSC JE Civil Engineering | Technical Mock Test CE (SSC JE)- 16
Description
Attempt Technical Mock Test CE (SSC JE)- 16 | 200 questions in 120 minutes | Mock test for Civil Engineering (CE) preparation | Free important questions MCQ to... | 14,376 | 59,147 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.359375 | 3 | CC-MAIN-2022-21 | longest | en | 0.832288 |
https://research.chalmers.se/en/publication/50947 | 1,679,313,134,000,000,000 | text/html | crawl-data/CC-MAIN-2023-14/segments/1679296943483.86/warc/CC-MAIN-20230320114206-20230320144206-00147.warc.gz | 545,357,504 | 8,057 | # Dynamics of Plates with Thin Piezoelectric Layers Licentiate thesis, 2007
The subject of this thesis is dynamics of plates with thin piezoelectric layers. Piezoelectric materials are often used in sensors and actuators and common applications for these are vibration control and ultrasonic transducers. In the first p... | 569 | 2,832 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.671875 | 3 | CC-MAIN-2023-14 | latest | en | 0.937346 |
https://questions.llc/questions/13257/twelve-men-take-6-hours-to-finish-a-piece-of-work-after-the-12-men-have-worked-for-1 | 1,679,841,727,000,000,000 | text/html | crawl-data/CC-MAIN-2023-14/segments/1679296945473.69/warc/CC-MAIN-20230326142035-20230326172035-00260.warc.gz | 549,717,525 | 4,618 | # twelve men take 6 hours to finish a piece of work. after the 12 men have worked for 1 hour, the contractor decides to call in 8 more men to complete the remaining work. how many more hours would the 20 men take to complete the remaining piece of work?
is this correct?
12 men 6 h 1 job.
12 men 5 h 5/6 job
20 men ?h 5... | 114 | 366 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.546875 | 4 | CC-MAIN-2023-14 | latest | en | 0.967396 |
https://mathoverflow.net/questions/282031/problems-reducing-to-a-graph-theory-algorithm | 1,553,017,536,000,000,000 | text/html | crawl-data/CC-MAIN-2019-13/segments/1552912202003.56/warc/CC-MAIN-20190319163636-20190319185636-00510.warc.gz | 558,451,273 | 40,174 | # Problems reducing to a graph-theory algorithm
This is essentially a question in pedagogy -- the answers could be useful to teach (or rather, motivate) graph theory, and especially the algorithmic side of it.
I have been very impressed with this example:
Question: What is the maximum size of a set of integers betwe... | 4,669 | 20,273 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.71875 | 4 | CC-MAIN-2019-13 | latest | en | 0.952501 |
https://mathoverflow.net/questions/143947/is-the-class-of-n-dimensional-manifolds-essentially-small/143950#143950 | 1,653,029,450,000,000,000 | text/html | crawl-data/CC-MAIN-2022-21/segments/1652662531762.30/warc/CC-MAIN-20220520061824-20220520091824-00423.warc.gz | 435,858,717 | 29,407 | # Is the class of n-dimensional manifolds essentially small?
Question: Consider the proper class of all $n$-dimensional smooth manifolds. If we take the equivalence classes where two manifolds are identified if there exists a diffeomorphism between them, is this collection of equivalence classes a set?
Remark: I do n... | 2,346 | 8,600 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 2.859375 | 3 | CC-MAIN-2022-21 | latest | en | 0.9123 |
https://www.aqua-calc.com/calculate/weight-to-volume/substance/calcium-blank-nitrate-blank-tetrahydrate | 1,722,931,158,000,000,000 | text/html | crawl-data/CC-MAIN-2024-33/segments/1722640476915.25/warc/CC-MAIN-20240806064139-20240806094139-00161.warc.gz | 534,029,855 | 12,831 | # Volume of Calcium nitrate tetrahydrate
## calcium nitrate tetrahydrate: convert weight to volume
### Volume of 100 grams of Calcium nitrate tetrahydrate
centimeter³ 40 milliliter 40 foot³ 0 oil barrel 0 Imperial gallon 0.01 US cup 0.17 inch³ 2.44 US fluid ounce 1.35 liter 0.04 US gallon 0.01 meter³ 4 × 10-5 US pi... | 661 | 2,372 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.78125 | 3 | CC-MAIN-2024-33 | latest | en | 0.695817 |
https://isabelle.in.tum.de/repos/isabelle/rev/ede9dc025150 | 1,632,321,168,000,000,000 | text/html | crawl-data/CC-MAIN-2021-39/segments/1631780057366.40/warc/CC-MAIN-20210922132653-20210922162653-00183.warc.gz | 354,054,007 | 5,556 | author huffman Thu, 03 Nov 2011 17:40:50 +0100 changeset 45332 ede9dc025150 parent 45325 26b6179b5a45 child 45333 04b21922ed68
ex/Tree23.thy: prove that deletion preserves balance
src/HOL/ex/Tree23.thy file | annotate | diff | comparison | revisions
```--- a/src/HOL/ex/Tree23.thy Thu Nov 03 11:18:06 2011 +0100
+++ b/s... | 3,160 | 9,643 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.640625 | 3 | CC-MAIN-2021-39 | latest | en | 0.460393 |
https://kolblabs.com/magnetic-induction-in-playing-with-magnets-class-6-science-experiment/ | 1,718,576,650,000,000,000 | text/html | crawl-data/CC-MAIN-2024-26/segments/1718198861671.61/warc/CC-MAIN-20240616203247-20240616233247-00680.warc.gz | 312,865,923 | 55,405 | # Magnetic induction in Playing With Magnets – Class 6 Science Experiment
## Activity Name: Magnetic induction in Playing With Magnets
### Activity Description:
The experiment explores the concept of magnetic induction using a safety pin, an alpin (a type of pin), and a bar magnet. It aims to demonstrate how the pre... | 850 | 3,628 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.671875 | 3 | CC-MAIN-2024-26 | latest | en | 0.853566 |
https://gmatclub.com/forum/740-gmat-48q-44v-what-is-the-new-quant-percentile-min-159102.html?sort_by_oldest=true | 1,490,893,319,000,000,000 | text/html | crawl-data/CC-MAIN-2017-13/segments/1490218195419.89/warc/CC-MAIN-20170322212955-00006-ip-10-233-31-227.ec2.internal.warc.gz | 775,506,742 | 57,281 | Check GMAT Club Decision Tracker for the Latest School Decision Releases https://gmatclub.com/AppTrack
GMAT Club
It is currently 30 Mar 2017, 10:01
# Happening Now:
R2 Admission Decisions from Wharton: Join Chat Room 3
### GMAT Club Daily Prep
#### Thank you for using the timer - this advanced tool can estimate y... | 2,004 | 7,831 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.125 | 3 | CC-MAIN-2017-13 | longest | en | 0.915957 |
https://cdn2.jlqwer.com/posts/4545.html | 1,638,032,120,000,000,000 | text/html | crawl-data/CC-MAIN-2021-49/segments/1637964358208.31/warc/CC-MAIN-20211127163427-20211127193427-00333.warc.gz | 244,059,167 | 10,601 | # 1.2.1 Milking Cows 挤牛奶
1.2.1 Milking Cows 挤牛奶
Line 1:
Lines 2..N+1:
``````3
300 1000
700 1200
1500 2100
``````
``````900 300
``````
``````#include<stdio.h>
#include<stdlib.h>
struct TMP
{
int a,b;
}sum[5010];
long max1,max2;
int cmp(const void *c,const void *d)
{
return (*(struct TMP *)c).a-(*(struct TMP *)d).... | 607 | 1,413 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.578125 | 3 | CC-MAIN-2021-49 | latest | en | 0.1434 |
www.simplifyingfractions.org | 1,568,960,451,000,000,000 | text/html | crawl-data/CC-MAIN-2019-39/segments/1568514573832.23/warc/CC-MAIN-20190920050858-20190920072858-00185.warc.gz | 311,661,961 | 6,712 | # Simplifying Fractions
Simplifying fractions mean reduce the fraction to lowest terms or write the fraction in the lowest terms. A fraction is simply the means by which a whole of something is divided into smaller components. Various operations are applied on fractions like addition, subtraction, multiplication, divi... | 1,603 | 4,753 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 5 | 5 | CC-MAIN-2019-39 | latest | en | 0.879723 |
http://www.rugusavay.com/how-do-scientists-define-energy/ | 1,526,922,351,000,000,000 | text/html | crawl-data/CC-MAIN-2018-22/segments/1526794864461.53/warc/CC-MAIN-20180521161639-20180521181639-00471.warc.gz | 469,158,958 | 12,993 | #### What is energy used for? What is energy and the importance of energy. What is the meaning of force, resistance and work, what are the differences?
To define energy, scientists must use some ideas. The first of these ideas you already have. It is the idea of force.
Every time you pick up a book, pedal your bicycl... | 747 | 3,317 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.0625 | 3 | CC-MAIN-2018-22 | latest | en | 0.966381 |
https://math.stackexchange.com/questions/581934/need-hints-on-the-following-algebra-problems | 1,566,750,162,000,000,000 | text/html | crawl-data/CC-MAIN-2019-35/segments/1566027330750.45/warc/CC-MAIN-20190825151521-20190825173521-00465.warc.gz | 539,035,886 | 30,438 | # Need hints on the following algebra problems.
I've been looking at these for over an hour and I don't understand how to do them. Any hints would be greatly appreciated.
Let $p(x) = x^3 + x + 1$ and $F = Z_3[x]/\langle p(x)\rangle$. Factor $p(x)$ in $F(x)$. Does it factor into linear terms?
Here I am just supposed ... | 550 | 1,605 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.96875 | 4 | CC-MAIN-2019-35 | latest | en | 0.886483 |
https://physics.stackexchange.com/questions/93001/smoothed-particle-hydrodynamics-chemical-reactions-and-stiffness | 1,566,699,775,000,000,000 | text/html | crawl-data/CC-MAIN-2019-35/segments/1566027322170.99/warc/CC-MAIN-20190825021120-20190825043120-00333.warc.gz | 590,703,109 | 28,942 | # Smoothed Particle Hydrodynamics, Chemical Reactions and Stiffness [closed]
Dear people from stackexchange physics.
I have been using SPH for quite a while to simulate free boundary flow, and just recently we tried to include some kind of (simple) chemical reaction in our code. We are still doing some tests, but one... | 1,139 | 5,217 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.546875 | 3 | CC-MAIN-2019-35 | latest | en | 0.966868 |
https://number.academy/250309 | 1,713,926,615,000,000,000 | text/html | crawl-data/CC-MAIN-2024-18/segments/1712296818999.68/warc/CC-MAIN-20240424014618-20240424044618-00323.warc.gz | 393,503,658 | 12,718 | # Number 250309 facts
The odd number 250,309 is spelled 🔊, and written in words: two hundred and fifty thousand, three hundred and nine. The ordinal number 250309th is said 🔊 and written as: two hundred and fifty thousand, three hundred and ninth. Color #250309. The meaning of the number 250309 in Maths: Is it Prime... | 2,632 | 7,952 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.75 | 3 | CC-MAIN-2024-18 | latest | en | 0.733626 |
http://www.readbag.com/apcentralllegeboard-apc-members-repository-microeco-00 | 1,596,907,846,000,000,000 | text/html | crawl-data/CC-MAIN-2020-34/segments/1596439738015.38/warc/CC-MAIN-20200808165417-20200808195417-00424.warc.gz | 171,784,232 | 5,482 | #### Read AP Microeconomics Free-Response Questions text version
2000 Advanced Placement Program® Free-Response Questions
The materials included in these files are intended for use by AP® teachers for course and exam preparation in the classroom; permission for any other use must be sought from the Advanced Placement... | 1,038 | 4,921 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.890625 | 3 | CC-MAIN-2020-34 | latest | en | 0.914672 |
https://space.stackexchange.com/questions/12956/calculating-synodic-periods-at-a-given-point-in-the-orbit | 1,701,223,369,000,000,000 | text/html | crawl-data/CC-MAIN-2023-50/segments/1700679100047.66/warc/CC-MAIN-20231129010302-20231129040302-00225.warc.gz | 627,896,939 | 42,550 | # Calculating synodic periods at a given point in the orbit
Calculating the regular synodic period of two orbiting bodies is pretty straight forward, but what if I wanted to know when they would meet in a specific position? For example if they share a periapse. (By "same position" I mean that the two orbiting objects ... | 778 | 3,219 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.4375 | 3 | CC-MAIN-2023-50 | latest | en | 0.907651 |
http://mathhelpforum.com/pre-calculus/44901-find-z1-z2-leave-answer-polar-form-print.html | 1,527,408,047,000,000,000 | text/html | crawl-data/CC-MAIN-2018-22/segments/1526794868132.80/warc/CC-MAIN-20180527072151-20180527092151-00103.warc.gz | 175,754,685 | 3,289 | # Find (Z1)(Z2) Leave answer in polar form
• Jul 30th 2008, 08:53 AM
Cyberman86
Find (Z1)(Z2) Leave answer in polar form
Given:
Z1= sqrt.6(cos(5pi/6) + i sin(5pi/6))
Z2= sqrt.2(cos(5pi/4) + i sin (5pi/4))
Find (Z1)(Z2) Leave answer in polar form
This is what i got so far and i don't know if i started right.
=sqrt.... | 1,383 | 3,050 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 4.3125 | 4 | CC-MAIN-2018-22 | latest | en | 0.587348 |
http://www.docstoc.com/docs/132490877/Let-rt-be-a-fuzzy-singleton-of-R-and-A-be-a-fuzzy-module-of-R-module | 1,398,080,668,000,000,000 | text/html | crawl-data/CC-MAIN-2014-15/segments/1397609539705.42/warc/CC-MAIN-20140416005219-00179-ip-10-147-4-33.ec2.internal.warc.gz | 391,475,269 | 19,551 | # Let rt be a fuzzy singleton of R and A be a fuzzy module of R module
Document Sample
``` J.Thi-Qar Sci. Vol.1 (1) March/2008
ISSN 1991- 8690 1661 - 0968 الترقيم الدولي
On Quasi Prime Fuzzy Submodules ... | 5,454 | 19,695 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.9375 | 3 | CC-MAIN-2014-15 | longest | en | 0.819964 |
https://math.stackexchange.com/questions/3225294/topology-of-sets-with-countable-complements | 1,579,348,563,000,000,000 | text/html | crawl-data/CC-MAIN-2020-05/segments/1579250592565.2/warc/CC-MAIN-20200118110141-20200118134141-00265.warc.gz | 553,775,462 | 31,486 | # topology of sets with countable complements
I am trying to write a proof for q 2 on page 94 in third chapter of Simmon's "Topology and Modern analysis"
Let $$X$$ be a non empty set. Consider a class of subsets including $$\emptyset$$ set and all subsets which have a countable complement. Is this a topology on $$X$$... | 1,011 | 3,204 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.203125 | 3 | CC-MAIN-2020-05 | latest | en | 0.865597 |
https://itfeature.com/hypothesis/effect-size/cohen-effect-size/ | 1,716,859,675,000,000,000 | text/html | crawl-data/CC-MAIN-2024-22/segments/1715971059055.94/warc/CC-MAIN-20240528000211-20240528030211-00422.warc.gz | 280,367,557 | 26,059 | # Cohen Effect Size and Statistical Significance
Statistical significance is important but not the most important consideration in evaluating the results. Because statistical significance tells only the likelihood (probability) that the observed results are due to chance alone. Considering the effect size when obtaini... | 482 | 2,282 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.375 | 3 | CC-MAIN-2024-22 | latest | en | 0.882603 |
https://gmatclub.com/forum/an-unusually-strong-cyclist-can-it-is-hoped-provide-enough-21327.html?fl=similar | 1,495,731,059,000,000,000 | text/html | crawl-data/CC-MAIN-2017-22/segments/1495463608107.28/warc/CC-MAIN-20170525155936-20170525175936-00332.warc.gz | 734,468,658 | 46,939 | Check GMAT Club Decision Tracker for the Latest School Decision Releases https://gmatclub.com/AppTrack
It is currently 25 May 2017, 09:50
### GMAT Club Daily Prep
#### Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Dail... | 1,301 | 4,459 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.65625 | 4 | CC-MAIN-2017-22 | latest | en | 0.883078 |
https://www.iodraw.com/en/blog/200970790 | 1,620,624,650,000,000,000 | text/html | crawl-data/CC-MAIN-2021-21/segments/1620243989030.87/warc/CC-MAIN-20210510033850-20210510063850-00476.warc.gz | 848,989,937 | 4,880 | <> Analysis of problem one :
first , Through fluid mechanics , structural mechanics , architecture , Material mechanics and other related knowledge , Three possible better three-dimensional foundation geometries are assumed , We analyze these three three-dimensional shapes , Choose the best , Three dimensional foundat... | 727 | 3,710 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.796875 | 3 | CC-MAIN-2021-21 | latest | en | 0.880228 |
https://confluence.cornell.edu/display/SIMULATION/FLUENT+-+Supersonic+Flow+Over+a+Wedge+-+Step+5+*+New | 1,725,763,583,000,000,000 | text/html | crawl-data/CC-MAIN-2024-38/segments/1725700650958.30/warc/CC-MAIN-20240908020844-20240908050844-00547.warc.gz | 171,491,295 | 15,445 | ##### Child pages
• FLUENT - Supersonic Flow Over a Wedge - Step 5 * New
# FLUENT - Supersonic Flow Over a Wedge - Step 5 * New
Useful Information
## Step 5: Solve!
Solve > Controls or Solutions > Solution Controls
Click on the Equations button and select Flow, then click OK. Also, set the Courant Number to 0.1.
... | 602 | 2,610 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.34375 | 3 | CC-MAIN-2024-38 | latest | en | 0.852055 |
https://edurev.in/course/quiz/attempt/-1_Assertion-Reason-Test-Coordinate-Geometry-2/a9ecbeb0-701f-4fc7-b868-f48456d5f06c | 1,660,785,270,000,000,000 | text/html | crawl-data/CC-MAIN-2022-33/segments/1659882573145.32/warc/CC-MAIN-20220818003501-20220818033501-00212.warc.gz | 226,985,954 | 39,076 | Assertion & Reason Test: Coordinate Geometry - 2
# Assertion & Reason Test: Coordinate Geometry - 2
Test Description
## 10 Questions MCQ Test Online MCQ Tests for Class 10 | Assertion & Reason Test: Coordinate Geometry - 2
Assertion & Reason Test: Coordinate Geometry - 2 for Class 10 2022 is part of Online MCQ Test... | 2,542 | 8,809 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.953125 | 4 | CC-MAIN-2022-33 | latest | en | 0.883984 |
http://vort.org/2012/11/ | 1,397,621,455,000,000,000 | text/html | crawl-data/CC-MAIN-2014-15/segments/1397609521512.15/warc/CC-MAIN-20140416005201-00092-ip-10-147-4-33.ec2.internal.warc.gz | 255,429,627 | 9,562 | # Russell's Blog
## Why doesn't your lab have a 3D printer yet?
Posted by Russell on November 20, 2012 at 6:30 a.m.
Electrophoresis setups are like Tupperware. You can never find the right lid when you need it, and someone always seems to be borrowing the doohicky you need.
Here in the Eisen Lab, it turns out we've ... | 2,535 | 11,294 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.734375 | 3 | CC-MAIN-2014-15 | latest | en | 0.933335 |
https://fluca1978.github.io/2023/10/09/PerlWeeklyChallenge238.html | 1,718,380,367,000,000,000 | text/html | crawl-data/CC-MAIN-2024-26/segments/1718198861567.95/warc/CC-MAIN-20240614141929-20240614171929-00085.warc.gz | 222,139,476 | 7,783 | # Perl Weekly Challenge 238: running sums and multiplications (and Python for the very first time!)
This post presents my solutions to the Perl Weekly Challenge 238.
I keep doing the Perl Weekly Challenge in order to mantain my coding skills in good shape, as well as in order to learn new things, with particular regar... | 2,232 | 8,537 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.84375 | 3 | CC-MAIN-2024-26 | latest | en | 0.845907 |
https://socratic.org/questions/59b0122d11ef6b14c007e545#472396 | 1,660,622,752,000,000,000 | text/html | crawl-data/CC-MAIN-2022-33/segments/1659882572220.19/warc/CC-MAIN-20220816030218-20220816060218-00311.warc.gz | 460,921,732 | 5,603 | # Question #7e545
Sep 6, 2017
well, if we let $u = \ln x$ , then $\frac{\mathrm{du}}{\mathrm{dx}} = \frac{1}{x}$
...so $\frac{1}{x} \mathrm{dx} = \mathrm{du}$
So, $\int {\left(\ln x\right)}^{3} / x \mathrm{dx}$
...can be re-written as $\int {u}^{3} \mathrm{du}$
$= {u}^{4} / 4 + C$
$= {\left(\ln x\right)}^{4} / 4... | 148 | 325 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 7, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.546875 | 4 | CC-MAIN-2022-33 | latest | en | 0.413492 |
http://www.slideserve.com/hasana/moderation-assumptions | 1,506,331,015,000,000,000 | text/html | crawl-data/CC-MAIN-2017-39/segments/1505818690376.61/warc/CC-MAIN-20170925074036-20170925094036-00336.warc.gz | 586,063,376 | 16,096 | 1 / 26
# Moderation: Assumptions - PowerPoint PPT Presentation
Moderation: Assumptions. David A. Kenny. What Are They?. Causality Linearity Homogeneity of Variance No Measurement Error. Causality. X and M must both cause Y.
I am the owner, or an agent authorized to act on behalf of the owner, of the copyrighted work... | 1,282 | 5,524 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.875 | 3 | CC-MAIN-2017-39 | latest | en | 0.877256 |
https://www.unix.com/man-page/centos/3/scopy | 1,709,508,701,000,000,000 | text/html | crawl-data/CC-MAIN-2024-10/segments/1707947476399.55/warc/CC-MAIN-20240303210414-20240304000414-00581.warc.gz | 1,050,918,414 | 12,229 | # scopy(3) [centos man page]
```scopy.f(3) LAPACK scopy.f(3)
NAME
scopy.f -
SYNOPSIS
Functions/Subroutines
subroutine scopy (N, SX, INCX, SY, INCY)
SCOPY
Function/Subroutine Documentation
subroutine scopy (integerN, real, dimension(*)SX, integerINCX, real, dimension(*)SY, integerINCY)
SCOPY Purpo... | 1,764 | 6,715 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.59375 | 3 | CC-MAIN-2024-10 | latest | en | 0.6801 |
https://www.hackmath.net/en/math-problem/28241 | 1,611,103,415,000,000,000 | text/html | crawl-data/CC-MAIN-2021-04/segments/1610703519843.24/warc/CC-MAIN-20210119232006-20210120022006-00010.warc.gz | 816,908,342 | 14,506 | # Truncated cone 6
Calculate the volume of the truncated cone whose bases consist of an inscribed circle and a circle circumscribed to the opposite sides of the cube with the edge length a=1.
Correct result:
V = 0.4469
#### Solution:
We would be pleased if you find an error in the word problem, spelling mistakes,... | 592 | 2,511 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.0625 | 4 | CC-MAIN-2021-04 | longest | en | 0.8708 |
http://esolangs.org/wiki/User:XKCD_Random_Number | 1,716,666,966,000,000,000 | text/html | crawl-data/CC-MAIN-2024-22/segments/1715971058834.56/warc/CC-MAIN-20240525192227-20240525222227-00478.warc.gz | 9,694,408 | 13,244 | # User:XKCD Random Number
Jump to navigation Jump to search
Not to be confused with Random number generator.
XKCD Random Number is a challenge that requires you to rewrite the program in XKCD's 221st page in another language, as either a function or a full program that prints the return value. You may comment your pr... | 11,975 | 24,050 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.65625 | 3 | CC-MAIN-2024-22 | latest | en | 0.561129 |
https://jeopardylabs.com/print/unit-6-expressions-and-equations-review-5 | 1,716,973,477,000,000,000 | text/html | crawl-data/CC-MAIN-2024-22/segments/1715971059221.97/warc/CC-MAIN-20240529072748-20240529102748-00064.warc.gz | 265,003,180 | 4,338 | Hanger/Tape Diagrams
Area Diagrams
Percentages
True or Not True
Word Problems
100
Write an equation that represents the hanger diagram
7 = 3x + 1
100
Write an equation to represent the area of the rectangle below:
20s = ?
100
Write an equation that shows the relationship
15% of 160 is x
15/100 * 160 = x
100
... | 1,005 | 3,104 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.375 | 4 | CC-MAIN-2024-22 | latest | en | 0.932967 |
https://physics.stackexchange.com/questions/160068/thermodynamics-and-internal-energy | 1,709,517,568,000,000,000 | text/html | crawl-data/CC-MAIN-2024-10/segments/1707947476409.38/warc/CC-MAIN-20240304002142-20240304032142-00818.warc.gz | 456,927,520 | 39,785 | # Thermodynamics and internal energy
I've been working on this problem for quite some time trying to figure out the most efficient way of answering it, So here goes the problem:
There is a container, containing a monoatomic gas with a movable piston on the top. The container and piston are all made of perfectly insul... | 614 | 2,485 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 1, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.515625 | 4 | CC-MAIN-2024-10 | latest | en | 0.946063 |
https://kr.mathworks.com/matlabcentral/cody/problems/38-return-a-list-sorted-by-number-of-occurrences/solutions/257902 | 1,606,692,977,000,000,000 | text/html | crawl-data/CC-MAIN-2020-50/segments/1606141203418.47/warc/CC-MAIN-20201129214615-20201130004615-00562.warc.gz | 369,387,554 | 17,077 | Cody
# Problem 38. Return a list sorted by number of occurrences
Solution 257902
Submitted on 7 Jun 2013 by Martin
This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
### Test Suite
Test Status Code Input and Output
1 Pass
%% x = [1 2 2 2 3 3 7 7 93] y_corr... | 403 | 922 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.046875 | 3 | CC-MAIN-2020-50 | latest | en | 0.558816 |
http://stats.stackexchange.com/questions/22161/how-to-read-cooks-distance-plots | 1,469,771,605,000,000,000 | text/html | crawl-data/CC-MAIN-2016-30/segments/1469257829972.19/warc/CC-MAIN-20160723071029-00167-ip-10-185-27-174.ec2.internal.warc.gz | 229,637,322 | 19,779 | # How to read Cook's distance plots?
Does anyone know how to work out whether points 7, 16 and 29 are influential points or not? I read somewhere that because Cook's distance is lower than 1, they are not. Am, I right?
-
There are various opinions. Some of them relate to the number of observations or to the number of... | 1,027 | 4,406 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 2.90625 | 3 | CC-MAIN-2016-30 | latest | en | 0.934893 |
https://www.doubtnut.com/question-answer-physics/a-solid-cube-of-side-a-is-shown-in-the-figure-find-maximum-value-of-100-b-a-for-which-the-block-does-642610614 | 1,669,801,497,000,000,000 | text/html | crawl-data/CC-MAIN-2022-49/segments/1669446710734.75/warc/CC-MAIN-20221130092453-20221130122453-00546.warc.gz | 792,539,291 | 49,614 | Home
>
English
>
Class 12
>
Physics
>
Chapter
>
Jee Main
>
A solid cube of side 'a' is sh...
# A solid cube of side 'a' is shown in the figure. Find maximum value of 100 b/a for which the block does not topple before sliding. <br/> <img src="https://d10lpgp6xz60nq.cloudfront.net/physics_images/JM_20_M2_202... | 1,046 | 4,405 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.515625 | 4 | CC-MAIN-2022-49 | longest | en | 0.926828 |
https://www.engineeringclicks.com/density-of-milk-weight-per-gallon/ | 1,624,211,972,000,000,000 | text/html | crawl-data/CC-MAIN-2021-25/segments/1623488253106.51/warc/CC-MAIN-20210620175043-20210620205043-00215.warc.gz | 687,560,161 | 56,430 | # Density of Milk and the Trick Question About the Weight of a Gallon of Milk
Density is the amount of sustance in a unit, per volume of substance. Below you can see the density equiation and the table with Milk Density values, inluding those for whole, semi-skimmed, and skimmed milk, depending on temperature. What ... | 1,974 | 7,248 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.4375 | 3 | CC-MAIN-2021-25 | latest | en | 0.918387 |
http://mathhelpforum.com/discrete-math/100401-stairs-problem-recurrence-print.html | 1,516,473,950,000,000,000 | text/html | crawl-data/CC-MAIN-2018-05/segments/1516084889681.68/warc/CC-MAIN-20180120182041-20180120202041-00249.warc.gz | 213,680,392 | 3,091 | # Stairs problem (recurrence)
• Sep 3rd 2009, 07:44 AM
DaRush19
Stairs problem (recurrence)
Consider a staircase with n stairs which one can clim by 2 stairs or by 3 stairs at each step. e.g. a staircase with n=9 stairs can be climbed in exactly 5 ways.
Write a recurrence relation for the number of ways to ascend this... | 578 | 1,747 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 26, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.40625 | 4 | CC-MAIN-2018-05 | longest | en | 0.872467 |
https://electronics.stackexchange.com/questions/289595/logic-or-gate-with-2-diodes-in-series | 1,721,845,357,000,000,000 | text/html | crawl-data/CC-MAIN-2024-30/segments/1720763518427.68/warc/CC-MAIN-20240724171328-20240724201328-00374.warc.gz | 197,405,178 | 41,885 | # logic OR gate with 2 diodes in series
is it possible to make a logic OR gate with 2 diodes in series like this:
simulate this circuit – Schematic created using CircuitLab
For my project this would be easier to wire than the usual parallel configuration.
• Should we treat the supply voltages as input? And say volt... | 526 | 1,956 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.140625 | 3 | CC-MAIN-2024-30 | latest | en | 0.954739 |
http://www.convertit.com/Go/Beverageonline/Measurement/Converter.ASP?From=Mexican+libra&To=mass | 1,670,183,779,000,000,000 | text/html | crawl-data/CC-MAIN-2022-49/segments/1669446710978.15/warc/CC-MAIN-20221204172438-20221204202438-00715.warc.gz | 66,725,076 | 3,612 | New Online Book! Handbook of Mathematical Functions (AMS55)
Conversion & Calculation Home >> Measurement Conversion
Measurement Converter
(Help)
Convert From: (required) Click here to Convert To: (optional) Examples: 5 kilometers, 12 feet/sec^2, 1/5 gallon, 9.5 Joules, or 0 dF. Help, Frequently Asked Questions, U... | 520 | 1,778 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.0625 | 3 | CC-MAIN-2022-49 | latest | en | 0.675267 |
https://www.tumblr.com/search/Schwarzchild%20Radius | 1,511,482,418,000,000,000 | text/html | crawl-data/CC-MAIN-2017-47/segments/1510934807044.45/warc/CC-MAIN-20171123233821-20171124013821-00629.warc.gz | 881,642,629 | 38,131 | #720: HOOPA
This troublemaker sends anything and everything to faraway places using its loop, which can warp space.
There is only one known physical phenomenon capable of warping time and space as Hoopa’s rings do: a black hole.
Somehow, inexplicably, this pokemon seems capable of using and manipulating black holes ... | 936 | 4,091 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.09375 | 3 | CC-MAIN-2017-47 | latest | en | 0.932127 |
https://300hours.com/f/cfa/level-1/t/ddm-2/ | 1,720,820,286,000,000,000 | text/html | crawl-data/CC-MAIN-2024-30/segments/1720763514452.62/warc/CC-MAIN-20240712192937-20240712222937-00029.warc.gz | 60,943,123 | 61,648 | CFA CFA Level 1 2-Stage Dividend Discount Model example with Gordon Growth Model formula
# 2-Stage Dividend Discount Model example with Gordon Growth Model formula
• Author
Posts
• pcunniff
Participant
• CFA Level 1
13
Anyone know how to do this for the Gordon growth model?
A stock that currently does not pay a div... | 705 | 2,202 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 2, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.71875 | 4 | CC-MAIN-2024-30 | latest | en | 0.823015 |
http://www.sporcle.com/games/GOT_xEMx_MUNOZ/Multiplication_Quiz | 1,480,893,205,000,000,000 | text/html | crawl-data/CC-MAIN-2016-50/segments/1480698541426.52/warc/CC-MAIN-20161202170901-00466-ip-10-31-129-80.ec2.internal.warc.gz | 711,714,776 | 20,660 | # Miscellaneous / Multiplication Quiz
Random Miscellaneous Quiz
## Can you name the Multiplication Answers?
plays
Challenge
Share
Tweet
Embed
Score 0/20 Timer
05:00
Problem
13 x 15 =
98 x 37 =
5 x 9 =
71 x 2 =
13 x 4 =
900 x 1 =
543 x 3 =
10 x 10 =
98 x 5 =
65 x 4 =
Problem
12 x12 =
113 x 311 =
34.5 x 2 =
2 x 123321... | 166 | 460 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.5625 | 3 | CC-MAIN-2016-50 | latest | en | 0.742108 |
https://rd.springer.com/book/10.1007%2F978-1-4612-1994-1 | 1,606,501,381,000,000,000 | text/html | crawl-data/CC-MAIN-2020-50/segments/1606141193856.40/warc/CC-MAIN-20201127161801-20201127191801-00654.warc.gz | 456,389,405 | 13,673 | # Boundary Value Problems for Transport Equations
• Valeri Agoshkov
Book
1. Front Matter
Pages i-xvii
2. Valeri Agoshkov
Pages 1-34
3. Valeri Agoshkov
Pages 35-104
4. Valeri Agoshkov
Pages 105-163
5. Valeri Agoshkov
Pages 164-215
6. Valeri Agoshkov
Pages 216-262
7. Back Matter
Pages 263-278
### Introduction
In the ... | 591 | 2,346 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.53125 | 3 | CC-MAIN-2020-50 | latest | en | 0.840134 |
http://mathhelpforum.com/algebra/91273-rectangle-problem-print.html | 1,511,330,946,000,000,000 | text/html | crawl-data/CC-MAIN-2017-47/segments/1510934806465.90/warc/CC-MAIN-20171122050455-20171122070455-00043.warc.gz | 190,673,524 | 3,032 | # Rectangle problem??
• May 31st 2009, 11:24 AM
tiffieblah
Rectangle problem??
I have never known how to do these problems and there are plenty on the exam.
A rectangle has an area of (x^3-6x^2+10x-8) square meters and a width of (x-4) meters. What is its length?
How would I set this problem up???
• May 31st 2009, 1... | 359 | 1,154 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 4, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.5625 | 4 | CC-MAIN-2017-47 | longest | en | 0.956932 |
http://slideplayer.com/slide/710421/ | 1,529,811,959,000,000,000 | text/html | crawl-data/CC-MAIN-2018-26/segments/1529267866191.78/warc/CC-MAIN-20180624024705-20180624044705-00217.warc.gz | 292,899,656 | 21,275 | # Econometric analysis informing policies UNICEF workshop, 13 May 2008 Christian Stoff Statistics Division, UNESCAP,
## Presentation on theme: "Econometric analysis informing policies UNICEF workshop, 13 May 2008 Christian Stoff Statistics Division, UNESCAP,"— Presentation transcript:
Econometric analysis informing p... | 800 | 4,299 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.84375 | 3 | CC-MAIN-2018-26 | longest | en | 0.866566 |
https://convert-dates.com/days-from/5033/2024/06/12 | 1,718,843,206,000,000,000 | text/html | crawl-data/CC-MAIN-2024-26/segments/1718198861853.72/warc/CC-MAIN-20240619220908-20240620010908-00287.warc.gz | 164,128,637 | 4,430 | Notice: Undefined offset: 0 in /var/www/convert-dates.com/system/includes/framework/ConvertDates/NumericToWords.php on line 74
Notice: Undefined offset: 0 in /var/www/convert-dates.com/system/includes/framework/ConvertDates/NumericToWords.php on line 74
5033 Days From June 12, 2024 - Convert Dates
## 5033 Days From J... | 1,013 | 3,033 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.1875 | 3 | CC-MAIN-2024-26 | latest | en | 0.92764 |
https://codeofcode.org/lessons/timezones-and-daylight-savings-time/ | 1,695,318,712,000,000,000 | text/html | crawl-data/CC-MAIN-2023-40/segments/1695233506029.42/warc/CC-MAIN-20230921174008-20230921204008-00360.warc.gz | 200,248,854 | 39,801 | Back to Course
0% Complete
0/0 Steps
Lesson 18 of 33
In Progress
# Timezones and Daylight Savings Time
##### Yasin Cakal
Working with timezones and daylight savings time can be a complex task in Python. The datetime module provides several functions and classes for handling timezones and daylight savings time, as ... | 492 | 2,116 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 2.703125 | 3 | CC-MAIN-2023-40 | latest | en | 0.57253 |
https://seanet2017.com/help-matematicas-661 | 1,670,485,236,000,000,000 | text/html | crawl-data/CC-MAIN-2022-49/segments/1669446711278.74/warc/CC-MAIN-20221208050236-20221208080236-00521.warc.gz | 540,468,995 | 5,330 | # Solve the system
These can be very helpful when you're stuck on a problem and don't know how to Solve the system. We will give you answers to homework.
## Solving the system
In addition, there are also many books that can help you how to Solve the system. How to solve perfect square trinomial. First, identify a, b... | 961 | 4,557 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.8125 | 5 | CC-MAIN-2022-49 | latest | en | 0.939418 |
https://numbas.mathcentre.ac.uk/question/11808/solve-simultaneous-equations-by-finding-inverse-matrix/ | 1,586,544,973,000,000,000 | text/html | crawl-data/CC-MAIN-2020-16/segments/1585370511408.40/warc/CC-MAIN-20200410173109-20200410203609-00065.warc.gz | 603,400,152 | 122,179 | Try to answer the following questions here:
• What is this question used for?
• What does this question assess?
• What does the student have to do?
• How is the question randomised?
• Are there any implementation details that editors should be aware of?
### History and Feedback
#### Checkpoint description
Describe ... | 1,393 | 6,306 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 2.609375 | 3 | CC-MAIN-2020-16 | latest | en | 0.763317 |
https://math.stackexchange.com/questions/1793722/an-alternative-proof-to-baby-rudin-theorem-7-13 | 1,722,828,202,000,000,000 | text/html | crawl-data/CC-MAIN-2024-33/segments/1722640427760.16/warc/CC-MAIN-20240805021234-20240805051234-00697.warc.gz | 313,740,646 | 37,946 | # An alternative proof to baby Rudin theorem 7.13
I am trying to prove Theorem 7.13 in baby Rudin and find that my proof goes in a totally different direction than the proof in the book. I briefly sketch what I did.
Since $f_n(x)$ is continuous, then $f_n(x)$ is bounded in compact domain $K$ (theorem 4.15). Then $$M_... | 983 | 2,742 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 1, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.71875 | 4 | CC-MAIN-2024-33 | latest | en | 0.846679 |
https://www.sanfoundry.com/phase-transformation-question-bank/ | 1,660,281,325,000,000,000 | text/html | crawl-data/CC-MAIN-2022-33/segments/1659882571584.72/warc/CC-MAIN-20220812045352-20220812075352-00210.warc.gz | 846,775,610 | 19,014 | Phase Transformation Questions and Answers – Solids Diffusional Transformations – Heterogeneous Nucleation
«
This set of Phase Transformation Question Bank focuses on “Solids Diffusional Transformations – Heterogeneous Nucleation”.
1. Nucleation in solids, as in liquids, in most cases is always __________
a) Homogen... | 1,831 | 7,342 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.9375 | 3 | CC-MAIN-2022-33 | latest | en | 0.83888 |
https://api-project-1022638073839.appspot.com/questions/how-do-you-graph-the-equation-3y-2x-6 | 1,726,374,924,000,000,000 | text/html | crawl-data/CC-MAIN-2024-38/segments/1725700651614.9/warc/CC-MAIN-20240915020916-20240915050916-00057.warc.gz | 83,267,438 | 5,914 | # How do you graph the equation 3y=2x+6?
Jan 2, 2018
See below.
#### Explanation:
Turn $3 y = 2 x + 6$ into $y = m x + b$
$y = \frac{2}{3} x + 2$
y-intercept is at $\left(0 , 2\right)$, slope is $\frac{2}{3}$.
graph{y=2/3x+2 [-10, 10, -5, 5]} | 115 | 249 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 5, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 4.09375 | 4 | CC-MAIN-2024-38 | latest | en | 0.716409 |
https://www.exceltip.com/lookup-formulas/lookup-value-with-multiple-criteria.html | 1,632,350,379,000,000,000 | text/html | crawl-data/CC-MAIN-2021-39/segments/1631780057403.84/warc/CC-MAIN-20210922223752-20210923013752-00133.warc.gz | 755,808,820 | 19,956 | # How to Lookup Value with Multiple Criteria in Excel
It's easy to look up for value with one unique key in a table. We can simply use the VLOOKUP function. But when you don’t have that unique column in your data and need to lookup in multiple columns to match a value, VLOOKUP doesn’t help.
So, to lookup a value in a... | 1,100 | 3,744 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.34375 | 3 | CC-MAIN-2021-39 | longest | en | 0.769645 |
https://www.lidolearning.com/questions/m-bb-selina7-ch1-ex1d-q12/q12-find-the-result-of-subtrac/ | 1,600,947,425,000,000,000 | text/html | crawl-data/CC-MAIN-2020-40/segments/1600400217623.41/warc/CC-MAIN-20200924100829-20200924130829-00123.warc.gz | 932,750,446 | 10,900 | Selina solutions
# Question 12
Q12) Find the result of subtracting the sum of all integers between 20 and 30 from the sum of all integers from 20 to 30.
Solution 12:
Sum of the all integers from 20 and 30
20+21+22+23+24+25+26+27+28+29+30=275
Sum of the all integers between 20 and 30
21+22+23+24+25+26+27+28+29=22... | 255 | 791 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.5 | 4 | CC-MAIN-2020-40 | latest | en | 0.76969 |
https://www.mikros.us/2020/04/four-circle-venn-diagram.html | 1,631,920,023,000,000,000 | text/html | crawl-data/CC-MAIN-2021-39/segments/1631780055808.78/warc/CC-MAIN-20210917212307-20210918002307-00293.warc.gz | 908,888,109 | 69,438 | # Four Circle Venn Diagram
Four Circle Venn Diagram. Illustrate the Venn Diagram with this template. You can export your work as image, and save in.
The usual depiction makes use of a rectangle as the universal set and circles for the sets under consideration. Once you have got to grips with these, you will be able t... | 296 | 1,318 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.59375 | 3 | CC-MAIN-2021-39 | latest | en | 0.87822 |
https://www.physicsforums.com/threads/what-should-the-ph-of-a-121m-ki-solution-be-electrochem-lab.196469/ | 1,511,405,211,000,000,000 | text/html | crawl-data/CC-MAIN-2017-47/segments/1510934806715.73/warc/CC-MAIN-20171123012207-20171123032207-00530.warc.gz | 850,806,619 | 15,379 | # What should the pH of a .121M KI solution be (electrochem lab)?
1. Nov 6, 2007
### dopaminergic
I think I calibrated my pH meter improperly during lab; I got a pH of 4.70, which doesn't make any sense, as KI isn't acidic, as far as I know.
After electrolysis (2I- + 2H2O --> I2 + 2OH- + H2) with a 9V battery, I fo... | 337 | 788 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.671875 | 3 | CC-MAIN-2017-47 | longest | en | 0.91593 |
https://calculla.com/calculators/math/quadratic_equation | 1,603,244,255,000,000,000 | text/html | crawl-data/CC-MAIN-2020-45/segments/1603107874637.23/warc/CC-MAIN-20201021010156-20201021040156-00305.warc.gz | 259,287,405 | 198,122 | Calculator finds out solution of quadratic equation given in general ax²+bx+c=0 form.
# Beta version#
BETA TEST VERSION OF THIS ITEM
This online calculator is currently under heavy development. It may or it may NOT work correctly.
You CAN try to use it. You CAN even get the proper results.
However, please VERIFY all ... | 902 | 3,186 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 13, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.375 | 4 | CC-MAIN-2020-45 | longest | en | 0.773054 |
https://www.physicsforums.com/threads/intensity-of-the-incident-light.305242/ | 1,575,808,869,000,000,000 | text/html | crawl-data/CC-MAIN-2019-51/segments/1575540510336.29/warc/CC-MAIN-20191208122818-20191208150818-00076.warc.gz | 815,797,651 | 15,028 | # Intensity of the incident light
1. Homework Statement
Unpolarized light is incident on a system of three polarizers. The second polarizer is oriented at an angle of 33.0° with respect to the first and the third is oriented at an angle of 45.0° with respect to the first. If the light that emerges from the system has... | 345 | 1,179 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 1, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.703125 | 4 | CC-MAIN-2019-51 | longest | en | 0.920694 |
http://www.rfcafe.com/references/electrical/Electricity%20-%20Basic%20Navy%20Training%20Courses/electricity%20-%20basic%20navy%20training%20courses%20-%20chapter%2010.htm | 1,369,511,744,000,000,000 | text/html | crawl-data/CC-MAIN-2013-20/segments/1368706153698/warc/CC-MAIN-20130516120913-00045-ip-10-60-113-184.ec2.internal.warc.gz | 676,513,577 | 10,509 | Custom Search Over 9,000 pages indexed! Your Host ... single-handedlyredefining what anengineering website should be. Carpe Diem! (Seize the Day!) 5CCG (5th MOB):My USAF radar shop Hobby & Fun Airplanes and Rockets: My personal hobby website Equine Kingdom: My daughter Sally's horse riding business website - lots of in... | 3,657 | 14,182 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.984375 | 3 | CC-MAIN-2013-20 | latest | en | 0.871887 |
https://fivetwelvethirteen.wordpress.com/2014/09/08/how-do-you-assess-number-sense/ | 1,539,723,834,000,000,000 | text/html | crawl-data/CC-MAIN-2018-43/segments/1539583510867.6/warc/CC-MAIN-20181016201314-20181016222814-00319.warc.gz | 680,329,240 | 19,784 | # How Do You Assess Number Sense?
My instinct is, “I know it when I see it”.
I want to move beyond that. My school loves to talk about “basic skills”. Basic skills are usually interpreted as rational number operations — decimals, fractions, positives and negatives. Then these are tested using numbers requiring severa... | 1,061 | 4,900 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.28125 | 4 | CC-MAIN-2018-43 | latest | en | 0.95484 |
https://www.transum.org/Software/sw/Starter_of_the_day/Starter_February22.asp | 1,585,577,923,000,000,000 | text/html | crawl-data/CC-MAIN-2020-16/segments/1585370497042.33/warc/CC-MAIN-20200330120036-20200330150036-00200.warc.gz | 1,225,949,824 | 9,627 | What are the next terms of the following sequences?
1, 4, 9, 16, 25, ...
10, 19, 28, 37, ...
3, 5, 9, 17, 33, ...
O, T, T, F, F, S, S, E, ...
J, F, M, A, M, J, J, A, ...
R, O, Y, G, B, I, ...
## A Mathematics Lesson Starter Of The Day
Hints: One, Two, Three, January, Red
Share
Topics: Starter | Sequences
• S... | 947 | 4,159 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.953125 | 3 | CC-MAIN-2020-16 | longest | en | 0.949439 |
https://metal-coatings.com/electromagnetism/question-is-light-considered-as-electromagnetic-wave.html | 1,652,699,271,000,000,000 | text/html | crawl-data/CC-MAIN-2022-21/segments/1652662510117.12/warc/CC-MAIN-20220516104933-20220516134933-00254.warc.gz | 470,435,046 | 18,874 | # Question: Is light considered as electromagnetic wave?
Contents
Light as a wave: Light can be described (modeled) as an electromagnetic wave. … This changing magnetic field then creates a changing electric field and BOOM – you have light. Unlike many other waves (sound, water waves, waves in a football stadium), li... | 805 | 3,878 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.59375 | 3 | CC-MAIN-2022-21 | latest | en | 0.937477 |
https://webexpertschicago.com/qa/what-is-the-leverage-ratio-formula.html | 1,618,411,144,000,000,000 | text/html | crawl-data/CC-MAIN-2021-17/segments/1618038077818.23/warc/CC-MAIN-20210414125133-20210414155133-00143.warc.gz | 703,736,337 | 8,883 | # What Is The Leverage Ratio Formula?
## Is debt a equity?
In a basic sense, Total Debt / Equity is a measure of all of a company’s future obligations on the balance sheet relative to equity.
A similar ratio is debt-to-capital (D/C), where capital is the sum of debt and equity: D/C = total liabilities / total capita... | 1,185 | 5,401 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.71875 | 3 | CC-MAIN-2021-17 | latest | en | 0.933592 |
https://www.scienceforums.net/profile/143014-alexandrkushnirtshuk/content/ | 1,726,440,499,000,000,000 | text/html | crawl-data/CC-MAIN-2024-38/segments/1725700651668.26/warc/CC-MAIN-20240915220324-20240916010324-00734.warc.gz | 932,439,859 | 19,727 | # AlexandrKushnirtshuk
Senior Members
69
1. ## Moon size. Calculation and confirmation.
Earth and Moon to scale. The shadow of the moon on the surface of the Earth during a solar eclipse (view from space). The size of the shadow is more consistent with an object with a diameter of 3,500 km., or 850 km.? Looking Bac... | 2,694 | 12,059 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.171875 | 3 | CC-MAIN-2024-38 | latest | en | 0.891908 |
http://stackoverflow.com/questions/8423116/regarding-geom-segmentaesx-x0-y-y0-xend-x1-yend-y1-in-ggplot2 | 1,440,704,629,000,000,000 | text/html | crawl-data/CC-MAIN-2015-35/segments/1440644059455.0/warc/CC-MAIN-20150827025419-00126-ip-10-171-96-226.ec2.internal.warc.gz | 190,436,942 | 17,775 | # regarding geom_segment(aes(x=x0,y=y0,xend=x1,yend=y1)) in ggplot2
In ggplot2, there is a usage which looks like:
``````geom_segment(aes(x=x0,y=y0,xend=x1,yend=y1))
``````
What does the `aes(x=x0,y=y0,xend=x1,yend=y1)` mean?
I checked the ggplot2 manual, but it does not explain these parameters in detail. Thanks.
... | 582 | 2,140 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.75 | 3 | CC-MAIN-2015-35 | latest | en | 0.838793 |
https://www.coursehero.com/file/5677650/Sept-24-LEC-Elasticity-and-its-applications/ | 1,527,310,266,000,000,000 | text/html | crawl-data/CC-MAIN-2018-22/segments/1526794867309.73/warc/CC-MAIN-20180526033945-20180526053945-00134.warc.gz | 711,753,256 | 105,876 | {[ promptMessage ]}
Bookmark it
{[ promptMessage ]}
Sept 24 LEC Elasticity and its applications
# Sept 24 LEC Elasticity and its applications - Elasticity...
This preview shows pages 1–3. Sign up to view the full content.
Elasticity and its applications Definition: The price elasticity of demand is a measure of h... | 662 | 3,083 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.265625 | 3 | CC-MAIN-2018-22 | latest | en | 0.885806 |
http://mathoverflow.net/revisions/87303/list | 1,369,432,116,000,000,000 | text/html | crawl-data/CC-MAIN-2013-20/segments/1368705097259/warc/CC-MAIN-20130516115137-00062-ip-10-60-113-184.ec2.internal.warc.gz | 168,378,285 | 5,091 | 2 added 6 characters in body
I am looking for software (open-source or otherwise) or an implementable algorithm for solving a continuous transportation problem. The input consists of a pointset in a planar rectangle, and we need to relocate these points within the rectangle to decrease the peak density below a given t... | 437 | 2,276 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 2.9375 | 3 | CC-MAIN-2013-20 | latest | en | 0.885065 |
https://www.yurilvov.com/Misc2/text/node19.html | 1,708,574,159,000,000,000 | text/html | crawl-data/CC-MAIN-2024-10/segments/1707947473690.28/warc/CC-MAIN-20240222030017-20240222060017-00371.warc.gz | 1,134,855,731 | 4,316 | Next: Evolution of statistics of Up: Evolution of statistics of Previous: Equation for the generating
## Equation for the multi-mode PDF
Taking the inverse Laplace transform of (64) we have the following equation for the PDF,
(59)
where is a flux of probability in the space of the amplitude ,
(60)
This equation ... | 586 | 2,670 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 2.65625 | 3 | CC-MAIN-2024-10 | latest | en | 0.935948 |
https://www.sorapedia.com/2010/05/06/sbi-bank-po-reasoning-solved-exam-paper.html | 1,566,402,402,000,000,000 | text/html | crawl-data/CC-MAIN-2019-35/segments/1566027316075.15/warc/CC-MAIN-20190821152344-20190821174344-00012.warc.gz | 994,985,626 | 20,079 | Upcoming Exam
Home - Sample Paper - Bank Previous Papers - SBI Bank PO Reasoning Solved Exam Paper
# SBI Bank PO Reasoning Solved Exam Paper
Directions : – Select the related letters / word / number / figure from
the given alternatives
1
Editor : Magazine
(a) Movie (b) Scene
(c) Drama (d) Director
2 Hinduism , Ch... | 1,281 | 3,377 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.796875 | 3 | CC-MAIN-2019-35 | latest | en | 0.456288 |
https://stat.ethz.ch/pipermail/r-help/2009-October/406687.html | 1,582,200,764,000,000,000 | text/html | crawl-data/CC-MAIN-2020-10/segments/1581875144722.77/warc/CC-MAIN-20200220100914-20200220130914-00081.warc.gz | 589,371,663 | 2,568 | # [R] split-apply question
David Winsemius dwinsemius at comcast.net
Fri Oct 2 14:34:56 CEST 2009
```As is typical with R there are often other ways. Here is another
approach that determines the rows of interest with tapply and min,
converts those minimums into logical "targets" with %in%, and extracts
them from "x" ... | 856 | 2,322 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.578125 | 3 | CC-MAIN-2020-10 | latest | en | 0.801648 |
https://electronics.stackexchange.com/questions/648845/how-does-an-integrating-receiver-work | 1,721,076,002,000,000,000 | text/html | crawl-data/CC-MAIN-2024-30/segments/1720763514713.74/warc/CC-MAIN-20240715194155-20240715224155-00509.warc.gz | 203,175,846 | 39,434 | # How does an integrating receiver work?
I am reading some papers and in one paper, the working of an integrating receiver is mentioned to remove (periodic) interference from the received signal. The paper explains the working as such:
The integrating receiver utilizes the constant amplitude of the data signal and th... | 771 | 3,300 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.671875 | 3 | CC-MAIN-2024-30 | latest | en | 0.918293 |
https://www.physicsforums.com/threads/gausss-law-i-think.120586/ | 1,481,102,230,000,000,000 | text/html | crawl-data/CC-MAIN-2016-50/segments/1480698542009.32/warc/CC-MAIN-20161202170902-00027-ip-10-31-129-80.ec2.internal.warc.gz | 993,710,739 | 19,915 | # Gauss's Law (I think!)
1. May 12, 2006
### Brewer
At present its more the wording of the question I don't understand, so could you see if you think it means what I think it does.
Charges +q and -q are placed on two conducting spherical shells of radii a and b (a<b). Find the electric field between the shells, and... | 2,221 | 8,739 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 1, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.84375 | 4 | CC-MAIN-2016-50 | longest | en | 0.948492 |
https://physics.stackexchange.com/questions/372380/why-is-force-a-vector?noredirect=1 | 1,571,039,874,000,000,000 | text/html | crawl-data/CC-MAIN-2019-43/segments/1570986649841.6/warc/CC-MAIN-20191014074313-20191014101313-00393.warc.gz | 640,683,302 | 43,263 | Why is force a vector?
"We have focused our discussion on one-dimensional motion. It is natural to assume that for three-dimensional motion, force, like acceleration, behaves like a vector."- (Introduction to Mechanics) Kleppner and Kolenkow
We learn it very early in the course of our study that Force is vector; But,... | 5,153 | 22,426 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 1, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.546875 | 4 | CC-MAIN-2019-43 | latest | en | 0.965588 |
https://howtodiscuss.com/t/how-long-is-a-moment/129486 | 1,709,595,550,000,000,000 | text/html | crawl-data/CC-MAIN-2024-10/segments/1707947476592.66/warc/CC-MAIN-20240304232829-20240305022829-00732.warc.gz | 296,150,969 | 18,864 | # How long is a Moment
How long is a moment? The word “moment” refers to a brief period of time. The phrase is said to have originated in the 14th century and was used to describe a 90-second interval. In mediaeval times, each hour was therefore made up of 40 seconds. The Hebrew calendar uses a shorter definition of a... | 4,950 | 22,619 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.125 | 3 | CC-MAIN-2024-10 | latest | en | 0.957533 |
https://oeis.org/A030006 | 1,586,356,550,000,000,000 | text/html | crawl-data/CC-MAIN-2020-16/segments/1585371818008.97/warc/CC-MAIN-20200408135412-20200408165912-00481.warc.gz | 599,847,544 | 3,629 | The OEIS Foundation is supported by donations from users of the OEIS and by a grant from the Simons Foundation.
Hints (Greetings from The On-Line Encyclopedia of Integer Sequences!)
A030006 a(n) = (prime(n)-1)*(prime(n)-5)/12. 2
0, 1, 5, 8, 16, 21, 33, 56, 65, 96, 120, 133, 161, 208, 261, 280, 341, 385, 408, 481, 5... | 518 | 1,330 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.84375 | 3 | CC-MAIN-2020-16 | latest | en | 0.567208 |
http://www.algebra.com/cgi-bin/show-question-source.mpl?solution=158587 | 1,369,274,662,000,000,000 | text/html | crawl-data/CC-MAIN-2013-20/segments/1368702730377/warc/CC-MAIN-20130516111210-00002-ip-10-60-113-184.ec2.internal.warc.gz | 317,032,768 | 1,335 | ```Question 209731
{{{e^(2x) - 3e^x + 2 = 0}}}
{{{e^(2x) - 3e^x = -2}}}
Not wrong, but doesn't help.
e^((2x)/(x^3)) = e^(-2)
???! There is no way to arrive at this statement from the previous one.<br>
The key to solving the equation, {{{e^(2x) - 3e^x + 2 = 0}}}, is to recognize that<ul><li>{{{e^(2x) = (e^x)^2}}}</li><l... | 512 | 1,340 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 4.5 | 4 | CC-MAIN-2013-20 | latest | en | 0.753592 |
https://www.physicsforums.com/threads/finding-the-inverse-of-an-epimorphism.784451/ | 1,527,185,245,000,000,000 | text/html | crawl-data/CC-MAIN-2018-22/segments/1526794866733.77/warc/CC-MAIN-20180524170605-20180524190605-00198.warc.gz | 815,304,605 | 20,161 | # Homework Help: Finding the Inverse of an Epimorphism
1. Nov 27, 2014
### Bashyboy
1. The problem statement, all variables and given/known data
Let $f : G \rightarrow H$ be an epimorphism from a group $G$ to $H$ and let $h \in H$, then $f^{-1} (h) = g ~ker(f)$.
2. Relevant equations
3. The attempt at a solution
S... | 2,331 | 7,664 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 2, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.71875 | 4 | CC-MAIN-2018-22 | latest | en | 0.894763 |
https://manu.hbrt.eu/index.html?p=24 | 1,686,350,196,000,000,000 | text/html | crawl-data/CC-MAIN-2023-23/segments/1685224656833.99/warc/CC-MAIN-20230609201549-20230609231549-00791.warc.gz | 441,665,358 | 7,998 | ### Suicide burn
###### Sat 27 August 2022
Rocket burn (Photo credit: Wikipedia)
## Principle overview
The goal of the suicide burn (also called hoverslam) [1] is to land a rocket while minimal thrust is not low enough to hover [2]. Thus, the engine must be turned off at the point where the rocket land.
The challen... | 1,367 | 5,557 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 1, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 4.21875 | 4 | CC-MAIN-2023-23 | latest | en | 0.820273 |
http://mathonline.wikidot.com/the-derivative-of-a-function | 1,656,475,342,000,000,000 | text/html | crawl-data/CC-MAIN-2022-27/segments/1656103620968.33/warc/CC-MAIN-20220629024217-20220629054217-00341.warc.gz | 39,511,420 | 5,511 | The Derivative of a Function
# The Derivative of a Function
One of the first topics studied in elementary calculus is the derivative of a real-valued function $f$. We will now formally define the derivative of a function below and begin to look at some of the properties of derivatives.
Definition: Let $f$ be a func... | 943 | 2,518 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 4.90625 | 5 | CC-MAIN-2022-27 | longest | en | 0.786644 |
https://mathoverflow.net/questions/87437/die-rolling-hamiltonian-cycles | 1,620,797,999,000,000,000 | text/html | crawl-data/CC-MAIN-2021-21/segments/1620243991252.15/warc/CC-MAIN-20210512035557-20210512065557-00307.warc.gz | 401,760,091 | 33,990 | # Die-rolling Hamiltonian cycles
Let $$R$$ be a rectangular region of the integer lattice $$\mathbb{Z}^2$$, each of whose unit squares is labeled with a number in $$\lbrace 1, 2, 3, 4, 5, 6 \rbrace$$. Say that such a labeled $$R$$ is die-rolling Hamiltonian, or simply rollable, if there is a Hamiltonian cycle obtained... | 2,887 | 7,713 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 2.78125 | 3 | CC-MAIN-2021-21 | longest | en | 0.873772 |
https://www.stockpricetrends.com/company/SJW | 1,723,669,850,000,000,000 | text/html | crawl-data/CC-MAIN-2024-33/segments/1722641121834.91/warc/CC-MAIN-20240814190250-20240814220250-00610.warc.gz | 761,969,171 | 33,154 | # SJW Corporation (SJW)
SJW Group, provides public water services in the United States. The company is headquartered in San Jose, California.
## Stock Price Trends
Stock price trends estimated using linear regression.
## Paying users area
The data is hidden behind and trends are not shown in the charts.
Unhide dat... | 1,113 | 3,622 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.75 | 3 | CC-MAIN-2024-33 | latest | en | 0.855594 |
https://number.academy/8039175 | 1,718,948,108,000,000,000 | text/html | crawl-data/CC-MAIN-2024-26/segments/1718198862036.35/warc/CC-MAIN-20240621031127-20240621061127-00765.warc.gz | 366,532,232 | 11,612 | Number 8039175 facts
The odd number 8,039,175 is spelled 🔊, and written in words: eight million, thirty-nine thousand, one hundred and seventy-five, approximately 8.0 million. The ordinal number 8039175th is said 🔊 and written as: eight million, thirty-nine thousand, one hundred and seventy-fifth. The meaning of the... | 2,099 | 6,049 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 3.171875 | 3 | CC-MAIN-2024-26 | latest | en | 0.784597 |
https://www.physicsforums.com/threads/trigonometric-functions-and-identities.238152/ | 1,660,656,724,000,000,000 | text/html | crawl-data/CC-MAIN-2022-33/segments/1659882572304.13/warc/CC-MAIN-20220816120802-20220816150802-00295.warc.gz | 822,551,443 | 14,633 | # Trigonometric Functions And Identities
wanchosen
Hi there,
I am struggling to solve for x in the following problem:-
Find all values of x in the interval 0<= x <= 360 for which: tan^2(x) = 5sec(x) - 2
I have used the identity tan^2(x) + 1 = sec^2(x) to get:
sec^2(x) - 1 = 5sec(x) - 2
and rearranged to get
sec^... | 273 | 974 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.953125 | 3 | CC-MAIN-2022-33 | latest | en | 0.949825 |
https://scc.ms.unimelb.edu.au/resources-list/summary-tables-for-statistical-analysis/summary-tables | 1,643,350,877,000,000,000 | text/html | crawl-data/CC-MAIN-2022-05/segments/1642320305420.54/warc/CC-MAIN-20220128043801-20220128073801-00491.warc.gz | 545,797,684 | 5,880 | # Inference for two independent samples (t-test)
### An example
The data for this example come a remarkable experiment carried out in the Department of Zoology at the University of Melbourne, over 22 years, by Wilfred Agar, Frank Drummond, Oscar Tiegs and Mary Gunson. The experiment was a test of the theory of Lamarc... | 841 | 3,642 | {"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma... | 2.875 | 3 | CC-MAIN-2022-05 | latest | en | 0.949286 |
https://phys.libretexts.org/TextMaps/General_Physics_Textmaps/Map%3A_University_Physics_(OpenStax)/Map%3A_University_Physics_III_(OpenStax)/7%3A_Quantum_Mechanics/7.3%3A_The_Schr%D3%A7dinger_Equation | 1,501,216,855,000,000,000 | text/html | crawl-data/CC-MAIN-2017-30/segments/1500549436330.31/warc/CC-MAIN-20170728042439-20170728062439-00390.warc.gz | 695,569,817 | 17,505 | $$\require{cancel}$$
# 7.3: The Schrӧdinger Equation
In the preceding two sections, we described how to use a quantum mechanical wave function and discussed Heisenberg’s uncertainty principle. In this section, we present a complete and formal theory of quantum mechanics that can be used to make predictions. In develo... | 2,314 | 8,960 | {"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 1, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat... | 3.671875 | 4 | CC-MAIN-2017-30 | latest | en | 0.77962 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.