url
stringlengths
6
1.66k
fetch_time
int64
1,368,859,978B
1,726,892,758B
content_mime_type
stringclasses
3 values
warc_filename
stringlengths
108
138
warc_record_offset
int32
24.2k
1.74B
warc_record_length
int32
737
780k
text
stringlengths
66
963k
token_count
int32
32
446k
char_count
int32
66
963k
metadata
stringlengths
439
443
score
float64
3.5
5.13
int_score
int64
4
5
crawl
stringclasses
93 values
snapshot_type
stringclasses
2 values
language
stringclasses
1 value
language_score
float64
0.05
1
https://vroomlab.wordpress.com/2018/09/30/2800/
1,670,598,280,000,000,000
text/html
crawl-data/CC-MAIN-2022-49/segments/1669446711417.46/warc/CC-MAIN-20221209144722-20221209174722-00392.warc.gz
635,919,244
29,014
# Meeting Mr. Bernoulli The differential equation ${d \over dx} y + f(x) y = g(x) y^{\alpha}\quad\quad\quad(1)$ where $\alpha \neq 0, 1$ and $g(x) \not \equiv 0$, is known as the Bernoulli’s equation. When $\alpha$ is an integer, (1) has trivial solution $y(x) \equiv 0$. To obtain nontrivial solution, we divide ea...
485
1,257
{"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": 14, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.40625
4
CC-MAIN-2022-49
latest
en
0.655187
https://codurance.com/2017/11/09/lambda-calculus-for-mortal-developers/
1,601,049,737,000,000,000
text/html
crawl-data/CC-MAIN-2020-40/segments/1600400227524.63/warc/CC-MAIN-20200925150904-20200925180904-00643.warc.gz
336,335,664
12,871
# Lambda Calculus for mortal developers 09 Nov 2017 ##### Sergio Rodrigo Royo See other author's posts Lambda Calculus sounds like an arcane term that only functional programming wizards can understand. Nothing could be further from the truth. We use Lambda Calculus everyday when we program. It is the most reducible ...
2,311
9,691
{"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.90625
4
CC-MAIN-2020-40
latest
en
0.89885
https://www.gradesaver.com/textbooks/math/algebra/algebra-1-common-core-15th-edition/chapter-10-radical-expressions-and-equations-chapter-review-page-656/54
1,653,587,198,000,000,000
text/html
crawl-data/CC-MAIN-2022-21/segments/1652662619221.81/warc/CC-MAIN-20220526162749-20220526192749-00219.warc.gz
905,505,382
13,069
# Chapter 10 - Radical Expressions and Equations - Chapter Review - Page 656: 54 $\cos A=\frac{2\sqrt 5}{5}$ $\sin A=\frac{\sqrt 5}{5}$ $\tan A=\frac{1}{2}$ #### Work Step by Step Using the Pythagorean theorem to find the other side of the right triangle: $a^2+b^2=c^2$ $6^2+12^2=c^2$ $c=6\sqrt 5$ $\cos A=\frac{12}{6...
213
589
{"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.953125
4
CC-MAIN-2022-21
longest
en
0.655544
https://brainmass.com/math/algebra/word-problems-57308
1,477,397,708,000,000,000
text/html
crawl-data/CC-MAIN-2016-44/segments/1476988720062.52/warc/CC-MAIN-20161020183840-00003-ip-10-171-6-4.ec2.internal.warc.gz
828,270,690
18,747
Share Explore BrainMass # Word Problems 1st one: A family has a rectangular kitchen which measures 12 by 18 feet. They want to put diagonal heating coils in the floor of the room. How much will it cost them to put in the coils if they cost \$25 foot? 12 x18 =216= Area 216x25= 5400 but since they want to put diagona...
223
827
{"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.09375
4
CC-MAIN-2016-44
longest
en
0.950058
http://blog.csdn.net/zhangxiangdavaid/article/details/50295727
1,506,007,468,000,000,000
text/html
crawl-data/CC-MAIN-2017-39/segments/1505818687820.59/warc/CC-MAIN-20170921134614-20170921154614-00643.warc.gz
45,699,005
23,785
## 24 Swap Nodes in Pairs Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the list as 2->1->4->3. Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed. /** * Definition for ...
6,749
20,145
{"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.6875
4
CC-MAIN-2017-39
longest
en
0.431209
https://discusstest.codechef.com/t/dboy-editorial/1201
1,686,227,630,000,000,000
text/html
crawl-data/CC-MAIN-2023-23/segments/1685224654871.97/warc/CC-MAIN-20230608103815-20230608133815-00663.warc.gz
235,052,388
9,901
# DBOY - Editorial Practice Contest SIMPLE ## PREREQUISITES Dynamic Programming ## PROBLEM There are N fuel stations numbered 1 through N. The i-th fuel station can fill exactly Ki liters at any time. You have N days. On the i-th day, you must have exactly 2 × Hi liters in your fuel tank. After that, you will ha...
2,552
8,119
{"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.859375
4
CC-MAIN-2023-23
latest
en
0.894476
https://www.coursehero.com/file/5646624/extraexer1b/
1,521,334,427,000,000,000
text/html
crawl-data/CC-MAIN-2018-13/segments/1521257645405.20/warc/CC-MAIN-20180317233618-20180318013618-00315.warc.gz
763,137,612
51,778
{[ promptMessage ]} Bookmark it {[ promptMessage ]} # extraexer1b - Extra Exercises Chapters 13 Statistics 301... This preview shows pages 1–3. Sign up to view the full content. Extra Exercises: Chapters 1–3 Statistics 301 Professor Wardrop Section 2.3 1. Consider a balanced study with eight subjects, identified a...
1,022
3,202
{"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.25
4
CC-MAIN-2018-13
latest
en
0.911181
https://www.teacherspayteachers.com/Product/Alg-1-Solving-Quadratic-Equations-Bundle-in-a-PowerPoint-Presentation-3223270
1,506,004,821,000,000,000
text/html
crawl-data/CC-MAIN-2017-39/segments/1505818687820.59/warc/CC-MAIN-20170921134614-20170921154614-00317.warc.gz
845,972,478
26,173
Total: \$0.00 # (Alg 1) Solving Quadratic Equations {Bundle} in a PowerPoint Presentation Common Core Standards Product Rating Product Q & A File Type Compressed Zip File 33 MB|*400 Share Product Description Algebra 1 Solving Quadratic Equations {Bundle} in a PowerPoint Presentation This is a bundle include the fi...
1,167
5,045
{"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.59375
4
CC-MAIN-2017-39
longest
en
0.867999
https://www.gradesaver.com/textbooks/math/other-math/CLONE-547b8018-14a8-4d02-afd6-6bc35a0864ed/chapter-6-percent-review-exercises-page-469/30
1,701,221,851,000,000,000
text/html
crawl-data/CC-MAIN-2023-50/segments/1700679100047.66/warc/CC-MAIN-20231129010302-20231129040302-00427.warc.gz
913,987,378
12,680
## Basic College Mathematics (10th Edition) $\frac{Part}{Whole}=\frac{Percent}{100}$ Whole = 4320 Part = (increase in sales) = 5107 - 4320 = 787 $\frac{787}{4320}=\frac{percent}{100}$ $Percent = 100\times\frac{787}{4320} = 18.21$ Sales increased by 18.21$\approx$ 18.2%
98
270
{"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.0625
4
CC-MAIN-2023-50
latest
en
0.614634
http://slideplayer.com/slide/1615190/
1,542,544,545,000,000,000
text/html
crawl-data/CC-MAIN-2018-47/segments/1542039744368.74/warc/CC-MAIN-20181118114534-20181118140534-00393.warc.gz
307,688,215
20,305
# Maths for Programming Contests ## Presentation on theme: "Maths for Programming Contests"— Presentation transcript: Maths for Programming Contests Basics Number Represenation in varius bases Basic operations Divisibility Reading long long long numbers Basic math functions like factorial GCD of Two Numbers If b|a ...
770
2,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...
4.125
4
CC-MAIN-2018-47
latest
en
0.463503
http://mathhelpforum.com/advanced-statistics/207687-n-p-n-n-3-5-2-5-n-find-e-n-print.html
1,524,522,133,000,000,000
text/html
crawl-data/CC-MAIN-2018-17/segments/1524125946199.72/warc/CC-MAIN-20180423203935-20180423223935-00398.warc.gz
205,611,217
3,115
# N: P(N=n)=(3/5)[(2/5)^n], find E(N) • Nov 15th 2012, 03:32 PM tcRom N: P(N=n)=(3/5)[(2/5)^n], find E(N) Suppose the number of children N of a random family satifies P(N=n)=(3/5)[(2/5)^n] where n=0,1,2,... Compute E(N). I went through the math and I come up with 1, which is the probability space. So, I know I'm not ...
650
1,685
{"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.34375
4
CC-MAIN-2018-17
latest
en
0.846461
http://illuminations.nctm.org/LessonDetail.aspx?ID=L213
1,369,238,209,000,000,000
text/html
crawl-data/CC-MAIN-2013-20/segments/1368701943764/warc/CC-MAIN-20130516105903-00098-ip-10-60-113-184.ec2.internal.warc.gz
132,226,763
8,479
Illuminations: Mathematics and Football # Mathematics and Football ## Super Bowl Scores This activity focuses on analyzing the scores for football games.  Students study combinations of numbers to produce possible scores for football games. ### Learning Objectives Students will: determine mathematical combinatio...
628
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...
4.40625
4
CC-MAIN-2013-20
latest
en
0.956579
https://classroom.thenational.academy/lessons/equations-of-lines-6xhkad
1,702,312,090,000,000,000
text/html
crawl-data/CC-MAIN-2023-50/segments/1700679515260.97/warc/CC-MAIN-20231211143258-20231211173258-00113.warc.gz
188,640,209
25,748
Equations of lines In this lesson, we will explore finding equations of lines and writing them in the form y = mx + c. Unit quizzes are being retired in August 2023 Why we're removing unit quizzes from the website > Quiz: Intro quiz - Recap from previous lesson Before we start this lesson, let’s see what you can r...
988
3,521
{"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-2023-50
latest
en
0.898184
https://www.kidsacademy.mobi/learning-essentials/preschool/math/match-and-sort-same-and-different/
1,709,610,180,000,000,000
text/html
crawl-data/CC-MAIN-2024-10/segments/1707948217723.97/warc/CC-MAIN-20240305024700-20240305054700-00794.warc.gz
839,046,783
26,940
• Learning Essentials • Preschool • Math • Match and Sort: Same and Different • # Match and Sort: Same and Different Essential Activities for Preschool Videos (1/2) ## Same and Different. Comparison for Preschoolers. This fun and engaging video explains sorting and matching in a clear and logical way. This video is ...
798
4,227
{"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.671875
4
CC-MAIN-2024-10
latest
en
0.925654
http://www.enotes.com/homework-help/room-has-dimensions-3m-4m-5m-fly-starting-one-461158
1,386,595,403,000,000,000
text/html
crawl-data/CC-MAIN-2013-48/segments/1386163973624/warc/CC-MAIN-20131204133253-00007-ip-10-33-133-15.ec2.internal.warc.gz
327,650,534
6,961
Homework Help # A room has dimensions 3m*4m*5m. A fly starting at one corner ends up at a diametrically... A room has dimensions 3m*4m*5m. A fly starting at one corner ends up at a diametrically opposite corner. What is the magnitude of its displacement? Posted by bobbyroychoudhury7 on October 25, 2013 at 7:01 PM vi...
268
836
{"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-2013-48
longest
en
0.888658
https://guide.okorder.com/info-213258.html
1,723,185,367,000,000,000
text/html
crawl-data/CC-MAIN-2024-33/segments/1722640759711.49/warc/CC-MAIN-20240809044241-20240809074241-00121.warc.gz
235,857,774
9,620
Welcome to OKorder.com! Home  >  Info  >  Transportation & Automobile >  Why is a boat able to float # Why is a boat able to float Dec 5, 2015 Why is a boat able to float. To explain the problem, we can do a test: put a piece of sheet iron in water, it immediately sank; If this piece of iron to make a box, the weig...
624
2,655
{"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-2024-33
latest
en
0.949841
https://www.vedantu.com/jee-main/a-blackbody-emits-heat-at-the-rate-of-20w-when-physics-question-answer
1,709,234,110,000,000,000
text/html
crawl-data/CC-MAIN-2024-10/segments/1707947474852.83/warc/CC-MAIN-20240229170737-20240229200737-00622.warc.gz
1,049,082,730
27,334
Courses Courses for Kids Free study material Offline Centres More A blackbody emits heat at the rate of 20W. When its temperature is ${227^ \circ }C$. Another black body emits heat at the rate of $15W$ when its temperature is ${277^ \circ }C$. Compare the area of the surface of the two bodies, if the surrounding is at...
820
2,703
{"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.5
4
CC-MAIN-2024-10
longest
en
0.828249
https://bio.libretexts.org/Under_Construction/Map%3A_Principles_of_Biochemistry_(Lehninger)/01%3A_Unit_I-_Structure_and_Catalysis/06%3A_Enzyme_Activity_and_Protein_Regulation/6.03%3A_6.3_A-__Kinetics_without_enzymes
1,628,068,562,000,000,000
text/html
crawl-data/CC-MAIN-2021-31/segments/1627046154798.45/warc/CC-MAIN-20210804080449-20210804110449-00070.warc.gz
146,341,240
28,469
# 6.3: Kinetics without Enzymes ## Single Step Reactions We will first explore the kinetics of non-catalyzed reactions as we did with our study of passive and facilitated diffusion. Before we do that, a brief review of the two major types of kinetic equations that you studied in general chemistry is in order. You lea...
3,742
13,858
{"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-2021-31
latest
en
0.937269
http://www.ebooklibrary.org/Article.aspx?Lang=eng&Title=Rolle's_theorem
1,591,459,411,000,000,000
text/html
crawl-data/CC-MAIN-2020-24/segments/1590348517506.81/warc/CC-MAIN-20200606155701-20200606185701-00118.warc.gz
160,001,543
24,617
#jsDisabledContent { display:none; } My Account |  Register |  Help # Rolle's theorem Article Id: WHEBN0000200305 Reproduction Date: Title: Rolle's theorem Author: World Heritage Encyclopedia Language: English Subject: Collection: Publisher: World Heritage Encyclopedia Publication Date: ### Rolle's theorem If a r...
2,404
9,206
{"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.84375
4
CC-MAIN-2020-24
latest
en
0.863303
https://web2.0calc.com/questions/help_91979
1,586,189,445,000,000,000
text/html
crawl-data/CC-MAIN-2020-16/segments/1585371637684.76/warc/CC-MAIN-20200406133533-20200406164033-00286.warc.gz
759,821,780
6,170
+0 # help 0 116 2 Starting with the number 0 on my calculator, I do a calculation in five steps. At each step, I either add 1 or multiply by 2. What is the smallest number that cannot be the final result? Nov 29, 2019 #1 +2850 0 do you HAVE to add 1 at least once? otherwise you just multiply 2 five times and tha...
248
840
{"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.515625
4
CC-MAIN-2020-16
latest
en
0.901269
https://stats.stackexchange.com/questions/7631/problem-calculating-joint-and-marginal-distribution-of-two-uniform-distributions?noredirect=1
1,717,044,196,000,000,000
text/html
crawl-data/CC-MAIN-2024-22/segments/1715971059418.31/warc/CC-MAIN-20240530021529-20240530051529-00411.warc.gz
455,339,349
41,215
# Problem calculating joint and marginal distribution of two uniform distributions Suppose we have random variable $X_1$ distributed as $U[0,1]$ and $X_2$ distributed as $U[0,X_1]$, where $U[a,b]$ means uniform distribution in interval $[a,b]$. I was able to compute joint pdf of $(X_1,X_2)$ and marginal pdf of $X_1$....
1,358
3,687
{"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...
4.03125
4
CC-MAIN-2024-22
latest
en
0.893932
https://www.esaral.com/q/an-object-of-mass-m-is-suspended-at-the-end-of-a-massless-wire-of-length-l-and-area-of-cross-section-62088
1,721,067,531,000,000,000
text/html
crawl-data/CC-MAIN-2024-30/segments/1720763514713.2/warc/CC-MAIN-20240715163240-20240715193240-00436.warc.gz
677,042,364
11,646
# An object of mass m is suspended at the end of a massless wire of length L and area of cross-section, Question: An object of mass $m$ is suspended at the end of a massless wire of length $L$ and area of cross-section, $A$. Young modulus of the material of the wire is $Y$. If the mass is pulled down slightly its fre...
298
864
{"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.09375
4
CC-MAIN-2024-30
latest
en
0.673603
http://www.universalteacherpublications.com/univ/ebooks/or/Ch9/calcul.htm
1,550,967,267,000,000,000
text/html
crawl-data/CC-MAIN-2019-09/segments/1550249556231.85/warc/CC-MAIN-20190223223440-20190224005440-00015.warc.gz
450,298,469
4,381
Calculus Method: Game Theory The Calculus method is almost similar to the previous method (algebraic method) except that instead of equating the two expected values, the expected value for a given player is maximized. Consider the zero sum two person game given below: Player B Player A   I II I a b II c d Formulas:...
590
1,606
{"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.71875
5
CC-MAIN-2019-09
latest
en
0.740075
http://www.jiskha.com/display.cgi?id=1189545187
1,498,357,209,000,000,000
text/html
crawl-data/CC-MAIN-2017-26/segments/1498128320386.71/warc/CC-MAIN-20170625013851-20170625033851-00195.warc.gz
573,110,766
4,064
# math posted by . evaluate 17-5to the 2nd powerdivde by(2 the fourth power + 3 to the 2nd power • math - it's simple order of operations. the answer is 18 • math - For future questions, this notation might be helpful. "5to the 2nd power" is typed as 5^2 and read as "5 squared." However, with your question, it ...
238
691
{"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.796875
4
CC-MAIN-2017-26
latest
en
0.939373
https://cpep.org/mathematics/2464131-what-is-the-remainder-when-forty-five-is-divided-by-7.html
1,680,201,995,000,000,000
text/html
crawl-data/CC-MAIN-2023-14/segments/1679296949355.52/warc/CC-MAIN-20230330163823-20230330193823-00482.warc.gz
214,638,034
7,472
12 March, 23:29 # What is the remainder when forty five is divided by 7? +3 1. 13 March, 00:20 0 45/7 45-7=38 38-7=31 31-7=24 24-7=17 17-7=10 10-7=3 remainder is 3 2. 13 March, 00:55 0 I think its 6.4 or just 6
108
219
{"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.640625
4
CC-MAIN-2023-14
latest
en
0.879357
http://oeis.org/A173239
1,542,148,790,000,000,000
text/html
crawl-data/CC-MAIN-2018-47/segments/1542039741510.42/warc/CC-MAIN-20181113215316-20181114001316-00500.warc.gz
253,129,415
4,109
This site is supported by donations to The OEIS Foundation. Hints (Greetings from The On-Line Encyclopedia of Integer Sequences!) A173239 Triangle by columns, A000041 shifted down thrice, k>0 5 1, 1, 2, 3, 1, 5, 1, 7, 2, 11, 3, 1, 15, 5, 1, 22, 7, 2, 30, 11, 3, 1, 42, 15, 5, 1, 56, 22, 7, 2, 77, 30, 11, 3, 1, 101, ...
1,077
2,350
{"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.59375
4
CC-MAIN-2018-47
latest
en
0.656023
https://www.tes.com/news/brainteasers-135
1,600,824,611,000,000,000
text/html
crawl-data/CC-MAIN-2020-40/segments/1600400208095.31/warc/CC-MAIN-20200922224013-20200923014013-00238.warc.gz
1,077,369,032
24,128
Brainteasers Puzzles to test mathematical skills, set by Anita Straker. Solutions below More brainteasers on www.tes.co.ukteacherbrainteasers What am I? 1) I am thinking of a five-digit number. The digit 6 is three places before the digit 4. The digit 1 is three places before the digit 2. The digit 2 is after the...
888
3,615
{"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.8125
4
CC-MAIN-2020-40
latest
en
0.946754
https://www.mathworksheetsland.com/5/15prodfrac.html
1,696,210,228,000,000,000
text/html
crawl-data/CC-MAIN-2023-40/segments/1695233510942.97/warc/CC-MAIN-20231002001302-20231002031302-00029.warc.gz
914,581,593
5,520
# Math Worksheets Land Math Worksheets For All Ages # Math Worksheets Land Math Worksheets For All Ages # Multiplying Fractions with Whole Numbers Worksheets We have worked with multiplying and determining the product of fractions. Previous to that you started learning your times tables to memorize set integer pro...
1,025
4,672
{"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.3125
4
CC-MAIN-2023-40
latest
en
0.915307
https://www.physicsforums.com/threads/mathematicasimultaneous-inequalities.397588/
1,508,800,449,000,000,000
text/html
crawl-data/CC-MAIN-2017-43/segments/1508187826840.85/warc/CC-MAIN-20171023221059-20171024000657-00028.warc.gz
975,175,364
15,495
# MathematicaSimultaneous Inequalities? 1. Apr 22, 2010 Hey guys, I have some variables A,B, and C such that all must be greater then zero. A,B and C are all functions of K. I would like to find the range of values of K such that the 3 inequalities are satisfied. Is there a function built in to Mathematica that wil...
753
2,042
{"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.609375
4
CC-MAIN-2017-43
longest
en
0.811945
http://tahirhassan.blogspot.com/2017/06/finding-simple-linear-relationship.html
1,531,772,276,000,000,000
text/html
crawl-data/CC-MAIN-2018-30/segments/1531676589455.35/warc/CC-MAIN-20180716193516-20180716213516-00239.warc.gz
356,762,147
10,799
# Tahir Hassan's Blog My Technical Notes ## Tuesday, 20 June 2017 ### Finding Simple Linear Relationship Given two data points: $$f(13.5) = 1$$ $$f(6) = 0.5$$ Let's say that the graph is linear like the sort $[f(x)=mx+c], how do I find out$[m] and $[c]? The gradient between any two points$[(x_1, y_1)] and $[(x_2,y_...
272
669
{"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...
4.03125
4
CC-MAIN-2018-30
latest
en
0.804915
https://myromannumerals.com/95253-in-roman-numerals/
1,685,570,537,000,000,000
text/html
crawl-data/CC-MAIN-2023-23/segments/1685224647459.8/warc/CC-MAIN-20230531214247-20230601004247-00513.warc.gz
477,539,345
14,980
95253 in Roman Numerals | How to write 95253 in roman numerals Do you want to know what 95253 is in Roman numerals or how to write 95253 in Roman numerals? If so, you have come to the right corner of the internet. In this article, we'll show you the correct way to write 95253 in Roman numerals, including explanations ...
730
2,201
{"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
4
CC-MAIN-2023-23
longest
en
0.883923
https://www.physicsforums.com/threads/a-pizza-floating-in-space.607164/
1,532,056,531,000,000,000
text/html
crawl-data/CC-MAIN-2018-30/segments/1531676591481.75/warc/CC-MAIN-20180720022026-20180720042026-00179.warc.gz
956,520,937
16,413
# Homework Help: A pizza floating in space? 1. May 18, 2012 ### charmedbeauty 1. The problem statement, all variables and given/known data A large, hot pizza floats in outer space after being jettisoned as refuse from a spacecraft. (Suppose the pizza is 60 cm in diameter and 2.0 cm thick, sizzling at 100°C. There's...
1,317
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...
3.609375
4
CC-MAIN-2018-30
latest
en
0.943304
https://onlinetyari.com/question-categories/aptitude-aptitude-profit-loss-questions-i16.html?page=68
1,638,296,747,000,000,000
text/html
crawl-data/CC-MAIN-2021-49/segments/1637964359065.88/warc/CC-MAIN-20211130171559-20211130201559-00117.warc.gz
514,767,953
64,391
# Aptitude - Aptitude-Profit Loss Read many objective multiple choice questions of Aptitude - Aptitude-Profit Loss in English. Practise online thousands of questions related to Aptitude - Aptitude-Profit Loss. You can check online answer and try mock tests for Aptitude - Aptitude-Profit Loss Questions provided in Engl...
687
2,081
{"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.875
4
CC-MAIN-2021-49
latest
en
0.901796
https://www.coursehero.com/file/42629/Chapter-10-part-2-notes/
1,495,791,346,000,000,000
text/html
crawl-data/CC-MAIN-2017-22/segments/1495463608652.65/warc/CC-MAIN-20170526090406-20170526110406-00376.warc.gz
1,072,023,648
24,243
Chapter 10 part 2 notes # Chapter 10 part 2 notes - Chapter 10 part 2 T-test and... This preview shows pages 1–6. Sign up to view the full content. This preview has intentionally blurred sections. Sign up to view the full version. View Full Document This preview has intentionally blurred sections. Sign up to view ...
606
2,295
{"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.9375
4
CC-MAIN-2017-22
longest
en
0.879654
https://www.jiskha.com/questions/1014552/a-large-building-has-an-inclined-roof-the-length-of-the-roof-is-64-0-m-and-the-angle-of
1,606,465,693,000,000,000
text/html
crawl-data/CC-MAIN-2020-50/segments/1606141191511.46/warc/CC-MAIN-20201127073750-20201127103750-00488.warc.gz
745,623,403
5,453
# Southern Union A large building has an inclined roof. The length of the roof is 64.0 m and the angle of the roof is 20.0° below horizontal. A worker on the roof lets go of a hammer from the peak of the roof. Starting from rest, it slides down the entire length of the roof with a constant acceleration of 3.35 m/s2. A...
1,186
4,096
{"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.1875
4
CC-MAIN-2020-50
latest
en
0.886995
https://hpaulkeeler.com/2019/10/
1,721,163,470,000,000,000
text/html
crawl-data/CC-MAIN-2024-30/segments/1720763514789.44/warc/CC-MAIN-20240716183855-20240716213855-00185.warc.gz
264,475,312
14,965
## Simulating Poisson point processes faster As an experiment, I tried to write code for simulating many realizations of a homogeneous Poisson point process in a very fast fashion. My idea was to simulate all the realizations in two short steps. In reality, the findings of this experiment and the contents of this pos...
1,036
5,103
{"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.6875
4
CC-MAIN-2024-30
latest
en
0.928249
https://proofwiki.org/wiki/Montel%27s_Theorem
1,679,994,537,000,000,000
text/html
crawl-data/CC-MAIN-2023-14/segments/1679296948817.15/warc/CC-MAIN-20230328073515-20230328103515-00799.warc.gz
546,328,875
12,884
# Montel's Theorem ## Theorem Let $U \subseteq \C$ be an open subset of the complex numbers. Let $\map \HH U$ be the space of holomorphic mappings on $U$. Then a family of mappings $\FF \subseteq \map \HH U$ is normal if and only if $\FF$ is locally bounded. ## Proof ### Normal implies locally bounded By the Arz...
783
2,245
{"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.53125
4
CC-MAIN-2023-14
latest
en
0.598683
https://plainmath.org/high-school-statistics/82529-a-class-of-students-took-a-final-exa
1,702,086,496,000,000,000
text/html
crawl-data/CC-MAIN-2023-50/segments/1700679100781.60/warc/CC-MAIN-20231209004202-20231209034202-00695.warc.gz
508,570,560
21,648
Zoagliaj 2022-07-17 A class of 135 students took a final examination in mathematics. The scores were normally distributed with a mean score of 68% and a standard deviation of 8.5%. Determine the percentile rank of each of the following people: (a) Jennifer, who scored 78 % (b) Steven, who got 55 % (c) Jessica, who wa...
342
901
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 15, "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.09375
4
CC-MAIN-2023-50
latest
en
0.775499
https://brainly.com/question/303592
1,485,050,809,000,000,000
text/html
crawl-data/CC-MAIN-2017-04/segments/1484560281331.15/warc/CC-MAIN-20170116095121-00446-ip-10-171-10-70.ec2.internal.warc.gz
798,738,675
9,869
2015-02-12T17:43:34-05:00 First, we need to find out what number goes into 194 and 120 both evenly. Both numbers end in a number divisible by two. 4 and 2. So tat tells us that we can divide both 194 and 120, by two. 194÷2=97 120÷2=60 Our new simplified fraction, is 97/60. And there is no other number that can div...
396
1,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...
4.28125
4
CC-MAIN-2017-04
latest
en
0.908903
https://www.onlinemath4all.com/normalandchordofcontact.html
1,550,597,864,000,000,000
text/html
crawl-data/CC-MAIN-2019-09/segments/1550247490806.45/warc/CC-MAIN-20190219162843-20190219184843-00361.warc.gz
919,758,446
6,613
## Normal and chord of contact In this page 'Normal and chord of contact',  we are going to see how to derive the equation of normal of ellipse and equation of chord of contact of ellipse. #### Equation of normal to the given ellipse: The equation of the tangent at (x₁,y₁) is xx₁/a²  +  yy₁/b²     = 1 y  =  -b²/a²...
845
2,450
{"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.78125
5
CC-MAIN-2019-09
latest
en
0.781933
www.susumenai.com
1,652,936,312,000,000,000
text/html
crawl-data/CC-MAIN-2022-21/segments/1652662525507.54/warc/CC-MAIN-20220519042059-20220519072059-00158.warc.gz
113,172,841
16,516
Satta Matka is a number game where you attempt to gauge the triumphant number as precisely as could be expected. You might anticipate an assortment of sorts utilizing this number technique, including Open, Close, Jodi, Panel, Sangam, and Jackpot, among others. You can likewise endeavor a phenomenal strategy that was al...
639
2,944
{"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.828125
4
CC-MAIN-2022-21
latest
en
0.944573
https://proofwiki.org/wiki/Supremum_Operator_Norm_is_Norm
1,686,079,617,000,000,000
text/html
crawl-data/CC-MAIN-2023-23/segments/1685224653071.58/warc/CC-MAIN-20230606182640-20230606212640-00792.warc.gz
495,087,432
12,156
# Supremum Operator Norm is Norm ## Theorem Let $\map {CL} {X, Y}$ be the continuous linear transformation space. Let $\norm {\, \cdot \,} : \map {CL} {X, Y} \to \R$ be the supremum operator norm such that: $\forall T \in \map {CL} {X, Y} : \norm T := \sup \set {\norm {Tx}_Y : x \in X : \norm x_X \le 1}$ Then $\no...
842
2,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": 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.875
4
CC-MAIN-2023-23
latest
en
0.314037
https://biz.libretexts.org/Workbench/MGT_1010/01%3A_Introductory_Business/1.03%3A_Book-_Exploring_Business/1.3.01%3A_The_Foundations_of_Business/1.3.1.08%3A_Cases_and_Problems
1,725,845,092,000,000,000
text/html
crawl-data/CC-MAIN-2024-38/segments/1725700651053.52/warc/CC-MAIN-20240909004517-20240909034517-00110.warc.gz
117,474,373
32,682
# 1.3.1.8: Cases and Problems $$\newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} }$$ $$\newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}}$$ $$\newcommand{\id}{\mathrm{id}}$$ $$\newcommand{\Span}{\mathrm{span}}$$ ( \newcommand{\kernel}{\mathrm{null}\,}\) $$\ne...
3,271
11,441
{"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.65625
4
CC-MAIN-2024-38
latest
en
0.196694
https://www.jiskha.com/display.cgi?id=1319027169
1,511,582,824,000,000,000
text/html
crawl-data/CC-MAIN-2017-47/segments/1510934809392.94/warc/CC-MAIN-20171125032456-20171125052456-00128.warc.gz
820,024,062
3,933
# Math- Linear Equations posted by . Do linear equations need to have negative numbers??? • Math- Linear Equations - no • Math- Linear Equations - suppose a new watersports company aqua sports is open for business they are running a grand opening sale their rental cost can be modeled by linear equation we are tol...
660
2,761
{"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.78125
4
CC-MAIN-2017-47
latest
en
0.942356
https://metanumbers.com/34059
1,638,113,017,000,000,000
text/html
crawl-data/CC-MAIN-2021-49/segments/1637964358560.75/warc/CC-MAIN-20211128134516-20211128164516-00108.warc.gz
463,005,595
7,330
# 34059 (number) 34,059 (thirty-four thousand fifty-nine) is an odd five-digits composite number following 34058 and preceding 34060. In scientific notation, it is written as 3.4059 × 104. The sum of its digits is 21. It has a total of 2 prime factors and 4 positive divisors. There are 22,704 positive integers (up to ...
1,444
4,115
{"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.78125
4
CC-MAIN-2021-49
latest
en
0.812771
https://math.libretexts.org/Courses/Mount_Royal_University/MATH_3200%3A_Mathematical_Methods/3%3A_Series_Solutions_of_Linear_Second_order_Equations
1,600,992,065,000,000,000
text/html
crawl-data/CC-MAIN-2020-40/segments/1600400221382.33/warc/CC-MAIN-20200924230319-20200925020319-00020.warc.gz
477,903,564
23,419
$$\newcommand{\id}{\mathrm{id}}$$ $$\newcommand{\Span}{\mathrm{span}}$$ $$\newcommand{\kernel}{\mathrm{null}\,}$$ $$\newcommand{\range}{\mathrm{range}\,}$$ $$\newcommand{\RealPart}{\mathrm{Re}}$$ $$\newcommand{\ImaginaryPart}{\mathrm{Im}}$$ $$\newcommand{\Argument}{\mathrm{Arg}}$$ $$\newcommand{\norm}[1]{\| #1 \|}$$ $$...
985
3,132
{"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.25
4
CC-MAIN-2020-40
longest
en
0.443559
https://studysoup.com/tsg/192502/engineering-mechanics-statics-14-edition-chapter-9-problem-9-89
1,631,939,530,000,000,000
text/html
crawl-data/CC-MAIN-2021-39/segments/1631780056297.61/warc/CC-MAIN-20210918032926-20210918062926-00705.warc.gz
615,909,905
13,028
× Get Full Access to Engineering Mechanics: Statics - 14 Edition - Chapter 9 - Problem 9-89 Get Full Access to Engineering Mechanics: Statics - 14 Edition - Chapter 9 - Problem 9-89 × # Solved: The composite plate is made from both steel (A) ISBN: 9780133918922 126 ## Solution for problem 9-89 Chapter 9 Engineerin...
701
2,638
{"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.59375
4
CC-MAIN-2021-39
latest
en
0.890458
https://getcalc.com/adding-mixed-fractions-example27.htm
1,685,771,361,000,000,000
text/html
crawl-data/CC-MAIN-2023-23/segments/1685224649105.40/warc/CC-MAIN-20230603032950-20230603062950-00553.warc.gz
319,215,242
5,137
# Fractions and Mixed Numbers Addition for 10 2/9 and 6 2/9 148/9 and 16.44 is the fraction and decimal equivalent respectively for adding fractions with same or different denominators, whole numbers and mixed numbers 10 2/9 and 6 2/9 by using this multiple fractions and mixed numbers addition calculator. ## Workout ...
317
1,076
{"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.125
4
CC-MAIN-2023-23
latest
en
0.822199
https://brainly.in/question/174692
1,484,801,162,000,000,000
text/html
crawl-data/CC-MAIN-2017-04/segments/1484560280483.83/warc/CC-MAIN-20170116095120-00525-ip-10-171-10-70.ec2.internal.warc.gz
793,650,209
9,995
Two numbers are in the ratio 5:3 and their difference is 10. What is the product of two numbers? 2 by ishwarsharma414 2015-08-30T18:17:45+05:30 Let the numbers be 5x and 3x. ⇒By the condition ⇒The numbers are 5*5=25 and 3*5=15 ⇒Their product= =15*25 = 375 Ans:Their product is 375. 2015-08-30T21:12:22+05:30 The numbe...
154
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...
3.953125
4
CC-MAIN-2017-04
latest
en
0.885103
http://slideplayer.com/slide/8132260/
1,675,924,116,000,000,000
text/html
crawl-data/CC-MAIN-2023-06/segments/1674764501407.6/warc/CC-MAIN-20230209045525-20230209075525-00548.warc.gz
42,257,635
18,748
# EXAMPLE 2 Graph linear inequalities with one variable ## Presentation on theme: "EXAMPLE 2 Graph linear inequalities with one variable"— Presentation transcript: EXAMPLE 2 Graph linear inequalities with one variable Graph (a) y < –3 and (b) x < 2 in a coordinate plane. a. Graph the boundary line y = –3. Use a solid...
932
3,167
{"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-2023-06
longest
en
0.820792
http://www.fropky.com/high-risk-vt28155.html
1,477,573,412,000,000,000
text/html
crawl-data/CC-MAIN-2016-44/segments/1476988721278.88/warc/CC-MAIN-20161020183841-00408-ip-10-171-6-4.ec2.internal.warc.gz
452,388,306
9,920
Searching for a laugh? Your sense of humor is about to explode with comedy inside. Prepare to witness the Best Laughs from Jokes ever. # HR = High Risk The boss looked at him, laughed and asked him to sit down saying, My friend, you have not worked here for even one day. The man was surprised to hear this, but the ma...
493
1,828
{"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.5625
4
CC-MAIN-2016-44
latest
en
0.956989
https://pacingguides.lcsedu.net/2018-19/par/81
1,590,637,029,000,000,000
text/html
crawl-data/CC-MAIN-2020-24/segments/1590347396495.25/warc/CC-MAIN-20200528030851-20200528060851-00221.warc.gz
482,121,528
5,827
# K.10 - Geometric Figures The student will a)  identify and describe plane figures (circle, triangle, square, and rectangle); b)  compare the size (smaller, larger) and shape of plane figures (circle, triangle, square, and rectangle); and c)  describe the location of one object relative to another (above, below, n...
876
4,269
{"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.53125
5
CC-MAIN-2020-24
latest
en
0.915997
https://gmatclub.com/forum/the-figure-shown-above-is-a-regular-hexagon-with-center-h-225294.html
1,550,797,472,000,000,000
text/html
crawl-data/CC-MAIN-2019-09/segments/1550247511573.67/warc/CC-MAIN-20190221233437-20190222015437-00588.warc.gz
571,493,463
151,487
GMAT Question of the Day - Daily to your Mailbox; hard ones only It is currently 21 Feb 2019, 17:04 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 Daily Prep Questions via email. Customized for You...
2,488
8,542
{"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.3125
4
CC-MAIN-2019-09
longest
en
0.882409
https://web2.0calc.com/questions/geometry_94487
1,590,804,533,000,000,000
text/html
crawl-data/CC-MAIN-2020-24/segments/1590347407001.36/warc/CC-MAIN-20200530005804-20200530035804-00244.warc.gz
606,443,295
6,001
+0 # geometry 0 41 1 The base of a triangle is 4 meters longer than the height of the triangle. If the area of the triangle is 70 square meters, what are the base and height of the triangle? Apr 1, 2020 #1 +626 +2 Set Up: Base = b Heigh = h h = b - 4 Area = bh/2 Solve: Substitute (usually done mentally) [b...
333
798
{"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
4
CC-MAIN-2020-24
longest
en
0.767891
https://www.coursehero.com/file/5785937/156Ex14-15/
1,526,967,230,000,000,000
text/html
crawl-data/CC-MAIN-2018-22/segments/1526794864624.7/warc/CC-MAIN-20180522034402-20180522054402-00546.warc.gz
717,318,644
75,456
{[ promptMessage ]} Bookmark it {[ promptMessage ]} 15.6.Ex14-15 # 15.6.Ex14-15 - = 1 x = e cos 1 = cos 1 y = e sin 1 = sin 1... This preview shows page 1. Sign up to view the full content. S E C T I O N 15.6 The Chain Rule (ET Section 14.6) 711 14. g s at s = 4, where g ( x , y ) = x 2 y 2 , x = s 2 + 1, y = 1 2...
995
2,812
{"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.1875
4
CC-MAIN-2018-22
latest
en
0.561821
https://www.gradesaver.com/textbooks/math/precalculus/precalculus-6th-edition-blitzer/chapter-6-section-6-6-vectors-exercise-set-page-782/9
1,621,340,178,000,000,000
text/html
crawl-data/CC-MAIN-2021-21/segments/1620243989819.92/warc/CC-MAIN-20210518094809-20210518124809-00004.warc.gz
823,399,967
13,140
## Precalculus (6th Edition) Blitzer Published by Pearson # Chapter 6 - Section 6.6 - Vectors - Exercise Set - Page 782: 9 See below: #### Work Step by Step The magnitude of the linear combination of the vector is calculated from, $\left\| \mathbf{v} \right\|=\sqrt{{{a}^{2}}+{{b}^{2}}}$ Here, a is the horizontal c...
229
728
{"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.0625
4
CC-MAIN-2021-21
latest
en
0.727996
http://www.roseindia.net/articles/how-does-gps.page
1,368,938,727,000,000,000
text/html
crawl-data/CC-MAIN-2013-20/segments/1368696383259/warc/CC-MAIN-20130516092623-00000-ip-10-60-113-184.ec2.internal.warc.gz
671,871,409
5,434
# How Does GPS Work? Global Positioning Systems rely on receivers that are now the size of a pin and satellites, 24 to be exact, that act as ?man-made stars? that create a network of constellations to mathematically determine measurements as accurately as to the centimeter. There are five keys to how a GPS (Global Po...
702
3,630
{"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.828125
4
CC-MAIN-2013-20
longest
en
0.95933
https://forum.allaboutcircuits.com/threads/rc-discharging-and-ohms-law.161436/
1,600,898,675,000,000,000
text/html
crawl-data/CC-MAIN-2020-40/segments/1600400212959.12/warc/CC-MAIN-20200923211300-20200924001300-00539.warc.gz
414,352,023
21,972
# RC discharging and ohms law #### Drmario5237 Joined Oct 14, 2018 65 Hello I understand that t=R*C as to get the time constant of how long it takes a capsitor to drain though a resistor with voltage and current lowering exponentially over that period of time but do I still use ohms law (I=V/R) to get the intial curr...
1,126
4,555
{"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.671875
4
CC-MAIN-2020-40
latest
en
0.914492
https://gmatclub.com/forum/an-advertisement-designed-to-convince-readers-of-the-great-76009-20.html
1,495,692,527,000,000,000
text/html
crawl-data/CC-MAIN-2017-22/segments/1495463607998.27/warc/CC-MAIN-20170525044605-20170525064605-00217.warc.gz
756,819,623
56,734
Check GMAT Club Decision Tracker for the Latest School Decision Releases https://gmatclub.com/AppTrack It is currently 24 May 2017, 23:08 ### 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,331
4,916
{"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.890625
4
CC-MAIN-2017-22
latest
en
0.933882
https://slideread.com/slide/introduction-to-sampling-distributions-2souyn
1,603,122,354,000,000,000
text/html
crawl-data/CC-MAIN-2020-45/segments/1603107863364.0/warc/CC-MAIN-20201019145901-20201019175901-00430.warc.gz
548,387,572
8,864
# Introduction to Sampling Distributions Chapter 7 Introduction to Sampling Distributions Understandable Statistics Ninth Edition By Brase and Brase Prepared by Yixun Shi Bloomsburg University of Pennsylvania Terms, Statistics & Parameters Terms: Population, Sample, Parameter, Statistics Copyright Houghton Mifflin Ha...
748
3,532
{"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.03125
4
CC-MAIN-2020-45
latest
en
0.81647
http://nrich.maths.org/public/leg.php?code=132&cl=3&cldcmpid=6564
1,503,168,659,000,000,000
text/html
crawl-data/CC-MAIN-2017-34/segments/1502886105712.28/warc/CC-MAIN-20170819182059-20170819202059-00505.warc.gz
302,076,465
8,840
# Search by Topic #### Resources tagged with Rotations similar to Countdown Fractions: Filter by: Content type: Stage: Challenge level: ### There are 38 results Broad Topics > Transformations and their Properties > Rotations ### Napoleon's Theorem ##### Stage: 4 and 5 Challenge Level: Triangle ABC has equilatera...
1,642
7,386
{"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.578125
4
CC-MAIN-2017-34
latest
en
0.890861
http://orms.pef.czu.cz/text/ExPrimalProblem.html
1,505,951,697,000,000,000
text/html
crawl-data/CC-MAIN-2017-39/segments/1505818687582.7/warc/CC-MAIN-20170920232245-20170921012245-00089.warc.gz
252,657,239
1,500
Example : Primal Problem Assume that two products, A and B, are manufactured on two machines, 1 and 2. Product A requires two hours on machine 1 and one-half hour on machine 2. Product B requires three hours on machine 1 and one and half-hour on machine 2. There are eight hours of available capacity on machine 1 an...
263
1,112
{"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.640625
4
CC-MAIN-2017-39
latest
en
0.897896
https://easyai.tech/en/ai-definition/tensor
1,652,889,172,000,000,000
text/html
crawl-data/CC-MAIN-2022-21/segments/1652662522284.20/warc/CC-MAIN-20220518151003-20220518181003-00657.warc.gz
260,335,001
21,798
## What is a tensor There are many ways to define tensor. Here we only discuss the concepts in the field of artificial intelligence. In the field of artificial intelligence, the definition is relatively simple. TensorFlow is defined as follows: A tensor is a generalization of vectors and matrices to potentially high...
384
2,081
{"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-2022-21
latest
en
0.924785
https://www.eductify.com/cs/matematika-testy/c5/5-rocnik/p-aa30
1,603,905,305,000,000,000
text/html
crawl-data/CC-MAIN-2020-45/segments/1603107900200.97/warc/CC-MAIN-20201028162226-20201028192226-00076.warc.gz
668,880,180
6,610
Matematika Testy - Cvičení z matematiky # Translating verbal expressions into equations The quotient of a number and three is 6 ⇒ x/3=6 ## Basic arithmetic operations Sum - outcome of adding two or more numbers Related expressions: addition, more than, total, plus, increase, altogether Examples: Calculate the sum o...
252
986
{"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.03125
4
CC-MAIN-2020-45
latest
en
0.856768
http://mathhelpforum.com/trigonometry/213216-simplifying-trig-expression-i-think.html
1,481,034,945,000,000,000
text/html
crawl-data/CC-MAIN-2016-50/segments/1480698541907.82/warc/CC-MAIN-20161202170901-00002-ip-10-31-129-80.ec2.internal.warc.gz
170,429,210
10,439
# Thread: simplifying trig expression (I think) 1. ## simplifying trig expression (I think) Not sure if this is a Calc or a trig question. But I wanted to take the derivative of this function: $y = -csc\,x - sin\,x$ Through simple steps I got: $-\frac{d}{dx}(csc\,x)\,-\,\frac{d}{dx}sin\,x$ $csc\,x\,cot\,x\,-\,cos...
486
1,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": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 13, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4
4
CC-MAIN-2016-50
longest
en
0.676162
https://justaaa.com/statistics-and-probability/379184-assume-that-the-weights-of-lahontan-cutthroat
1,716,173,611,000,000,000
text/html
crawl-data/CC-MAIN-2024-22/segments/1715971058147.77/warc/CC-MAIN-20240520015105-20240520045105-00225.warc.gz
281,191,706
9,774
Question Assume that the weights of Lahontan Cutthroat Trout are normally distributed with a population mean weight... 1. Assume that the weights of Lahontan Cutthroat Trout are normally distributed with a population mean weight of 5 pounds and a standard deviation of 1.2 pounds. • (a) What is the probability of catc...
415
1,081
{"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.90625
4
CC-MAIN-2024-22
latest
en
0.849283
http://nzmaths.co.nz/resource/space-crossing
1,467,039,544,000,000,000
text/html
crawl-data/CC-MAIN-2016-26/segments/1466783396029.85/warc/CC-MAIN-20160624154956-00129-ip-10-164-35-72.ec2.internal.warc.gz
221,349,710
10,029
Te Kete Ipurangi Communities Schools # Space Crossing Keywords: Achievement Objectives: Purpose: This activity has a logic and reasoning focus. Specific Learning Outcomes: recognise logical arguments Description of mathematics: This is a pure logic problem that doesn’t seem to relate to any other part of the ma...
1,303
4,899
{"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.03125
4
CC-MAIN-2016-26
latest
en
0.951391
https://www.physicsforums.com/threads/gas-contained-in-bottle.121399/
1,500,843,939,000,000,000
text/html
crawl-data/CC-MAIN-2017-30/segments/1500549424610.13/warc/CC-MAIN-20170723202459-20170723222459-00478.warc.gz
800,892,671
16,001
# Gas contained in bottle 1. May 19, 2006 ### Amith2006 Sir, An open mouthed bottle contains a gas at 60 degree Celsius. To what temperature should the bottle be heated so that ¼th of the mass of the gas may leave? I think that by increasing the temperature the gas molecules gain enough energy to overcome the interm...
563
1,996
{"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.6875
4
CC-MAIN-2017-30
longest
en
0.939299
http://www.jaapsch.net/puzzles/floppy2.htm
1,481,220,954,000,000,000
text/html
crawl-data/CC-MAIN-2016-50/segments/1480698542648.35/warc/CC-MAIN-20161202170902-00261-ip-10-31-129-80.ec2.internal.warc.gz
533,588,719
4,370
# The Super 3x3x1 / The Super Floppy This puzzle is generally known as the Super Floppy, as it is a Floppy Cube which also allows quarter turns. This allows the corner pieces to move to locations above and below the edge pieces, changing the shape of the puzzle. It was also invented by Katsuhiko Okamoto. There are tw...
1,527
5,023
{"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.78125
4
CC-MAIN-2016-50
longest
en
0.881271
https://www.physicsforums.com/threads/gravityless-capillary-tube.958120/
1,618,422,206,000,000,000
text/html
crawl-data/CC-MAIN-2021-17/segments/1618038077843.17/warc/CC-MAIN-20210414155517-20210414185517-00356.warc.gz
1,065,505,254
17,805
# "Gravityless" Capillary tube ## Homework Statement A 20 cm long capillary tube is dipled in water.The water rises up to 8cm .if the entire arrangement is put in a freely falling elevator ,the lenght of the water column is A)10cm B)8cm C)20cm D)4cm ## Homework Equations Its a theoretical sum ## The Attempt at...
384
1,534
{"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.59375
4
CC-MAIN-2021-17
longest
en
0.920046
https://nrich.maths.org/public/leg.php?code=5039&cl=1&cldcmpid=136
1,480,702,323,000,000,000
text/html
crawl-data/CC-MAIN-2016-50/segments/1480698540409.8/warc/CC-MAIN-20161202170900-00486-ip-10-31-129-80.ec2.internal.warc.gz
856,611,761
9,577
# Search by Topic #### Resources tagged with Interactivities similar to Noah: Filter by: Content type: Stage: Challenge level: ### There are 207 results Broad Topics > Information and Communications Technology > Interactivities ### Junior Frogs ##### Stage: 1 and 2 Challenge Level: Have a go at this well-known c...
2,002
8,814
{"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.84375
4
CC-MAIN-2016-50
longest
en
0.896582
https://web2.0calc.com/questions/expected-value_124
1,716,397,834,000,000,000
text/html
crawl-data/CC-MAIN-2024-22/segments/1715971058560.36/warc/CC-MAIN-20240522163251-20240522193251-00601.warc.gz
525,524,376
5,708
+0 # Expected value 0 104 1 I need help with these Suppose we have a bag with 10 slips of paper in it. Eight slips have a 3 on them and the other two have a 5 on them. (a) What is the expected value of the number shown when we draw a single slip of paper? (b) What is the expected value of the number shown if we ad...
586
1,966
{"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.46875
4
CC-MAIN-2024-22
latest
en
0.920434
https://money.stackexchange.com/questions/33880/paying-down-debt-during-a-no-interest-period
1,713,342,287,000,000,000
text/html
crawl-data/CC-MAIN-2024-18/segments/1712296817146.37/warc/CC-MAIN-20240417075330-20240417105330-00690.warc.gz
366,554,679
42,490
# Paying down debt during a no-interest period In this question, the OP had three cards, and the one with the largest balance had a promotion of 0% APR for a limited time. Normally, the most efficient way to pay down that debt is to start with the highest APR card... but what if the highest APR is the post-promotion ...
2,415
9,471
{"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-2024-18
latest
en
0.958625
https://math.stackexchange.com/questions/2035558/prove-that-is-a-equilateral-triangle/2037535
1,566,181,702,000,000,000
text/html
crawl-data/CC-MAIN-2019-35/segments/1566027314638.49/warc/CC-MAIN-20190819011034-20190819033034-00494.warc.gz
568,256,171
31,346
# Prove that is a equilateral triangle I'm trying to find an equilateral triangle with its height given. I've done the following: Triangle Let $C,D$ be points in the intersection of two circunferences of same radius and center $A$ and $B$. Then, I constructed the bisector of $CA$ and $DA$ and they cut in $E$ and $F$ ...
735
2,459
{"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.0625
4
CC-MAIN-2019-35
latest
en
0.911101
https://www.civilengineer9.com/calculate-deflection-of-beam/
1,722,773,268,000,000,000
text/html
crawl-data/CC-MAIN-2024-33/segments/1722640398413.11/warc/CC-MAIN-20240804102507-20240804132507-00165.warc.gz
577,177,814
31,928
# Calculate Deflection of Beam In Excel Sheet With this spreadsheet, you can calculate deflection of beam and check or determine the value for the safe design. Before this, you need to design the beam. In this Beam Design Excel Sheet, you can easily calculate the flexural reinforcement and shear reinforcement in beam...
596
2,736
{"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.84375
4
CC-MAIN-2024-33
latest
en
0.936202
http://docplayer.net/28734956-Chapter-3-probability.html
1,542,399,522,000,000,000
text/html
crawl-data/CC-MAIN-2018-47/segments/1542039743184.39/warc/CC-MAIN-20181116194306-20181116220306-00155.warc.gz
92,129,290
37,022
Chapter 3: Probability Save this PDF as: Size: px Start display at page: Transcription 1 Chapter 3: Probability We see probabilities almost every day in our real lives. Most times you pick up the newspaper or read the news on the internet, you encounter probability. There is a 65% chance of rain today, or a pre-ele...
17,535
72,636
{"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.75
5
CC-MAIN-2018-47
longest
en
0.941159
http://www.math.montana.edu/ahoegh/teaching/stat408/lecturematerials/Lecture3Ex.html
1,511,361,572,000,000,000
text/html
crawl-data/CC-MAIN-2017-47/segments/1510934806609.33/warc/CC-MAIN-20171122141600-20171122161600-00225.warc.gz
449,836,239
228,767
## Exercise: Order of operations Note that order of operations is important in writing R code. 4 - 2 ^ 2 5 * 2 - 3 ^ 2 ! TRUE & pi == 3 # & and operator ! (TRUE | FALSE) # | or operator Write out the mathematical representation for the first two expressions and then evaluate all four expressions. Note ! is R’s not o...
634
2,422
{"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.734375
4
CC-MAIN-2017-47
longest
en
0.766021
https://testbook.com/question-answer/35-98-84-280-is-divisible-by-which-of-the--608c10d817fb6bf5f447cade
1,638,581,323,000,000,000
text/html
crawl-data/CC-MAIN-2021-49/segments/1637964362923.11/warc/CC-MAIN-20211204003045-20211204033045-00153.warc.gz
603,233,442
29,718
# (35 + 98 + 84 + 280) is divisible by which of the following number 1. 7 2. 14 3. 8 4. 10 Option 1 : 7 ## Detailed Solution Given: (35 + 98 + 84 + 280) Calculation: (35 + 98 + 84 + 280) All terms are factor of 7 ⇒ {(7 × 5) + (7 × 14) + (7 × 12) + (7 × 40)} ⇒ 7(5 + 14 + 12 + 40) ⇒ 7 × 71 (35 + 98 +  84 + 28...
163
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
4
CC-MAIN-2021-49
latest
en
0.579791
https://cs.stackexchange.com/questions/133609/continue-on-prove-that-bppbpp-bpp?noredirect=1
1,632,345,810,000,000,000
text/html
crawl-data/CC-MAIN-2021-39/segments/1631780057388.12/warc/CC-MAIN-20210922193630-20210922223630-00334.warc.gz
248,814,234
38,160
# Continue on: Prove that $BPP^{BPP} = BPP$ regarding the following post: Prove that $$BPP^{BPP} = BPP$$ Let $$L\in BPP^{BPP}$$, by definition $$BPP^{BPP} =\bigcup_{O\in BPP}BPP^O$$, therefore there exists a language $$A\in BPP$$ such that $$L\in BPP^{A}$$. This means that there exists a $$\mathsf{PTM}$$ $$M^{A}(x,r)...
1,073
3,193
{"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.828125
4
CC-MAIN-2021-39
latest
en
0.830851
https://www.physicsforums.com/threads/stokes-theorem.145865/
1,547,974,917,000,000,000
text/html
crawl-data/CC-MAIN-2019-04/segments/1547583705091.62/warc/CC-MAIN-20190120082608-20190120104608-00070.warc.gz
915,145,319
12,599
# Stokes Theorem 1. Nov 28, 2006 ### Borat321 1. The problem statement, all variables and given/known data Let M be the capped cylindrical surface which is the union of two surfaces, a cylinder given by x^2 + y^2 = 9, 0 ≤ z ≤ 1, and a hemispherical cap defined by x^2 + y^2 + (z−1)^2 = 9, z ≥ 1. For the vector field ...
587
1,647
{"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-2019-04
latest
en
0.842476
http://chrisstead.net/algorithms,/applied/math,/coding,/data/structures,/foundation,/functional/programming,/javascript/2016/02/10/math-for-programmers-difference-of-sets.html
1,713,953,323,000,000,000
text/html
crawl-data/CC-MAIN-2024-18/segments/1712296819089.82/warc/CC-MAIN-20240424080812-20240424110812-00160.warc.gz
6,825,368
5,407
Last post we discussed union and intersection of sets. These two functions are common and well used, so they are quite important to understand at a deep level, especially if you work with databases on the regular. It can also be helpful to understand these behaviors if you have lots of sets of simple data which need to...
1,439
6,504
{"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.40625
4
CC-MAIN-2024-18
latest
en
0.957859
http://amudu-gowripalan.blogspot.com/2016/04/easy-way-to-learn-ecg-step-by-step-in.html
1,519,543,735,000,000,000
text/html
crawl-data/CC-MAIN-2018-09/segments/1518891816178.71/warc/CC-MAIN-20180225070925-20180225090925-00461.warc.gz
17,005,470
35,139
## Saturday, April 30, 2016 ### Easy way to learn ECG. Step by Step in a very easy way Source: Making sense of the ECG Always start by confirming the name and date of birth of the patient to confirm the ECG belongs to the right person. Also, confirm the date and time the ECG was performed. ##### Step 1 – Heart rate ...
1,681
6,808
{"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.9375
4
CC-MAIN-2018-09
longest
en
0.828253
http://nicholasworkshop.com/tag/linked/
1,516,509,236,000,000,000
text/html
crawl-data/CC-MAIN-2018-05/segments/1516084890187.52/warc/CC-MAIN-20180121040927-20180121060927-00076.warc.gz
265,254,684
9,769
## Interview Practice Extra 04 – Remove Node from Singly Linked List Question How do you remove a node from a singly linked list, given only that node? Head node is not given. Solution Set next of this node to the next of the next node. node->next = node->next->next; Reference Glassdoor ## Interview Practice 24 – Rev...
644
2,773
{"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.9375
4
CC-MAIN-2018-05
latest
en
0.813212
http://mathhelpforum.com/trigonometry/7659-right-triangle-trigonomentry.html
1,529,949,957,000,000,000
text/html
crawl-data/CC-MAIN-2018-26/segments/1529267868237.89/warc/CC-MAIN-20180625170045-20180625190045-00149.warc.gz
204,386,968
10,668
1. ## Right Triangle Trigonomentry I am having trouble understanding this concept, I would appreciate it if you could help explain this problem. The problem uses a right triangle with BC=2 and the angle phata=45, I need to find any missing angles or sides, with the answer to at least 3 decimal digits. AB= AC= B= This ...
895
3,258
{"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.21875
4
CC-MAIN-2018-26
latest
en
0.903356
http://math.stackexchange.com/questions/13436/how-would-i-solve-x-7x-3-x-75-x
1,464,674,289,000,000,000
text/html
crawl-data/CC-MAIN-2016-22/segments/1464051177779.21/warc/CC-MAIN-20160524005257-00132-ip-10-185-217-139.ec2.internal.warc.gz
183,000,854
19,813
# How would I solve $(x + 7)(x - 3) = (x + 7)(5 - x)$? I need to find the two roots (x-intercepts) from the equation: $$(x + 7)(x - 3) = (x + 7)(5 - x)$$ - By inspection 7 is an x intercept. Now divide by (x+7) on both sides (it wont be 0 at the other intercept). This leaves you with x-3 = 5-x or 2x = 8, that is x= ...
791
2,411
{"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...
4.65625
5
CC-MAIN-2016-22
longest
en
0.897972
https://fundacionfernandovillalon.com/x-2-16-x/
1,675,230,177,000,000,000
text/html
crawl-data/CC-MAIN-2023-06/segments/1674764499911.86/warc/CC-MAIN-20230201045500-20230201075500-00644.warc.gz
275,740,321
5,392
All equations of the form ax^2+bx+c=0 can be solved using the quadratic formula: frac-b±sqrtb^2-4ac2a. The quadratic formula gives two solutions, one when ± is addition and one when it is subtraction. Bạn đang xem: Solve x^2=16/x tiger algebra solver This equation is in standard form: ax^2+bx+c=0. Substitute 1 for a,...
1,285
3,386
{"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-2023-06
latest
en
0.829012
https://gmatclub.com/forum/1000-dollars-were-converted-into-pounds-and-then-the-pounds-69394.html?fl=similar
1,498,333,460,000,000,000
text/html
crawl-data/CC-MAIN-2017-26/segments/1498128320323.17/warc/CC-MAIN-20170624184733-20170624204733-00702.warc.gz
762,541,170
45,992
It is currently 24 Jun 2017, 12:44 ### 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 Daily Prep Questions via email. Customized for You we will pick new questions that match your level based o...
1,756
6,511
{"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...
4.0625
4
CC-MAIN-2017-26
longest
en
0.9231
http://freemathdictionary.com/oo/
1,394,495,185,000,000,000
text/html
crawl-data/CC-MAIN-2014-10/segments/1394011056097/warc/CC-MAIN-20140305091736-00090-ip-10-183-142-35.ec2.internal.warc.gz
76,040,540
3,785
# Posts belonging to Category Oo ## Oscillation Oscillation: Oscillation is the regularly repeated movement in one period [.....] ## Orthogonal vectors Orthogonal vectors: Orthogonal vectors refers to those vectors which are [.....] ## Orthogonal trajectory Orthogonal trajectory: Orthogonal trajectory is a member...
433
1,865
{"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-2014-10
longest
en
0.852518
https://www.doubtnut.com/question-answer/a3-4b00-and-c30-are-vertices-of-deltaabc-if-p-is-the-point-inside-the-deltaabc-such-that-dp-bcle-min-644741705
1,656,654,253,000,000,000
text/html
crawl-data/CC-MAIN-2022-27/segments/1656103920118.49/warc/CC-MAIN-20220701034437-20220701064437-00313.warc.gz
785,500,423
103,250
Home > English > Class 11 > Maths > Chapter > Straight Lines > A(3, 4),B(0,0) and c(3,0) are... Updated On: 27-06-2022 Get Answer to any question, just click a photo and upload the photo and get the answer completely free, 11//22none of these Solution : We have , <br> d (P , BC) le min {d (P, AB) , d(P, ...
300
784
{"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.953125
4
CC-MAIN-2022-27
latest
en
0.696108
https://metanumbers.com/52335
1,620,444,392,000,000,000
text/html
crawl-data/CC-MAIN-2021-21/segments/1620243988837.67/warc/CC-MAIN-20210508031423-20210508061423-00305.warc.gz
413,061,902
7,487
## 52335 52,335 (fifty-two thousand three hundred thirty-five) is an odd five-digits composite number following 52334 and preceding 52336. In scientific notation, it is written as 5.2335 × 104. The sum of its digits is 18. It has a total of 4 prime factors and 12 positive divisors. There are 27,888 positive integers (...
1,467
4,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...
3.609375
4
CC-MAIN-2021-21
latest
en
0.814712
https://www.turito.com/ask-a-doubt/Mathematics-2x-x-2-if-x-3-10-15-16-14-qccf16b
1,716,467,292,000,000,000
text/html
crawl-data/CC-MAIN-2024-22/segments/1715971058625.16/warc/CC-MAIN-20240523111540-20240523141540-00071.warc.gz
895,960,720
16,788
Mathematics Easy Question # 2x + x2 if x = 3 Hint: ## The correct answer is: 15 ### The given expression is 2x+x2There is one variable and one constant in the above expression. The variable is: ‘x’. Value assigned to the variable is x = 2. We have to substitute this value and find the final value of the expression...
286
1,192
{"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.40625
4
CC-MAIN-2024-22
latest
en
0.907717
http://www.wikihow.com/Draw-a-Hexagonal-Prism
1,505,913,158,000,000,000
text/html
crawl-data/CC-MAIN-2017-39/segments/1505818687281.63/warc/CC-MAIN-20170920123428-20170920143428-00174.warc.gz
623,741,032
45,716
Edit Article # wikiHow to Draw a Hexagonal Prism Do you want to learn how to draw a hexagonal-based prism? This article will teach you how to make any kind of prism easily! ### Method 1 Solid Prism 1. 1 Draw a hexagon. 2. 2 • For every visible corner, draw a straight vertical line. 3. 3 Finish the base. • Connect t...
555
2,151
{"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-39
latest
en
0.876613
https://www.shaalaa.com/question-bank-solutions/periodic-oscillatory-motions-the-periodic-time-linear-harmonic-oscillator-2-second-maximum-displacement-1-cm_794
1,597,457,304,000,000,000
text/html
crawl-data/CC-MAIN-2020-34/segments/1596439740423.36/warc/CC-MAIN-20200815005453-20200815035453-00516.warc.gz
824,433,145
9,370
Share # The Periodic Time of a Linear Harmonic Oscillator is 2π Second, with Maximum Displacement of 1 Cm. - Physics #### Question The periodic time of a linear harmonic oscillator is 2π second, with maximum displacement of 1 cm. If the particle starts from extreme position, find the displacement of the particle aft...
268
900
{"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.90625
4
CC-MAIN-2020-34
latest
en
0.713443
https://documen.tv/question/please-complete-it-i-promise-i-will-remember-to-give-brainlist-1-the-average-daily-rainfall-in-c-22272599-64/
1,638,288,233,000,000,000
text/html
crawl-data/CC-MAIN-2021-49/segments/1637964359037.96/warc/CC-MAIN-20211130141247-20211130171247-00334.warc.gz
285,783,109
16,355
## please complete it i promise i will remember to give brainlist 1.The average daily rainfall in Cambridge durin Question please complete it i promise i will remember to give brainlist 1.The average daily rainfall in Cambridge during April was 2.4 mm. How much rain fell during the month? A.72 mm B.75 mm C.63mm D.6...
699
2,015
{"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.703125
4
CC-MAIN-2021-49
latest
en
0.932732
https://heartandart.ca/?p=3512
1,621,079,477,000,000,000
text/html
crawl-data/CC-MAIN-2021-21/segments/1620243991801.49/warc/CC-MAIN-20210515100825-20210515130825-00362.warc.gz
299,267,672
16,243
# Number Lines: A Game Changer in Math Class This year, as in times past, planning my math program was filled with the usual excitement of clustering expectations and imagining ways in which I could creatively address the curriculum. Teaching a grade 3/4 combined grade for the first time, I was eager to be on top of m...
1,678
8,808
{"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.765625
4
CC-MAIN-2021-21
longest
en
0.968458
https://sunstarup.com/ncert-solutions-for-class-9-math-chapter-13-exercise-13-8/
1,632,367,586,000,000,000
text/html
crawl-data/CC-MAIN-2021-39/segments/1631780057416.67/warc/CC-MAIN-20210923013955-20210923043955-00353.warc.gz
596,601,537
13,967
# NCERT Solutions For Class 9 Math Chapter – 13 Exercise – 13.8 1. Find the volume of a sphere whose radius is (i) 7 cm (ii) 0.63 m (Assume π =22/7) Solution: (i) Radius of sphere, r = 7 cm Using, Volume of sphere = (4/3) πr3 = (4/3)×(22/7)×73 = 4312/3 Hence, volume of the sphere is 4312/3 cm3 (ii) Radius of ...
1,953
5,351
{"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.6875
5
CC-MAIN-2021-39
latest
en
0.79614
http://www.dlxedu.com/detail/5/441477.html
1,561,054,640,000,000,000
text/html
crawl-data/CC-MAIN-2019-26/segments/1560627999263.6/warc/CC-MAIN-20190620165805-20190620191805-00076.warc.gz
229,277,959
6,039
## 动力学知识库 Given a linked list, determine if it has a cycle in it. Can you solve it without using extra space? ## Floyd's Cycle Detection Algorithm (The Tortoise and the Hare) How do you determine if your singly-linked list has a cycle? In the late 1960s, Robert W. Floyd invented an algorithm that worked in linear (...
466
1,941
{"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-2019-26
latest
en
0.904753
http://danimgroup.com/michael-corbat-zybvv/ancient-medieval-and-anglo-norman-drama-8078d4
1,695,612,569,000,000,000
text/html
crawl-data/CC-MAIN-2023-40/segments/1695233506676.95/warc/CC-MAIN-20230925015430-20230925045430-00533.warc.gz
9,009,517
19,678
Select Page The following diagrams show the different methods to graph a linear equation. There is one special case where a limit of a linear function can have its limit at infinity taken: y = 0x + b. For example, if you were to go to the store with $12.00 to buy some candy bars that were$2.00 each, your total cost wo...
8,756
37,424
{"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": 1, "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-2023-40
latest
en
0.925499
http://www.ck12.org/book/CK-12-Physical-Science-Concepts-For-Middle-School/r7/section/4.24/
1,481,311,280,000,000,000
text/html
crawl-data/CC-MAIN-2016-50/segments/1480698542765.40/warc/CC-MAIN-20161202170902-00366-ip-10-31-129-80.ec2.internal.warc.gz
389,038,610
38,663
<img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=iA1Pi1a8Dy00ym" style="display:none" height="1" width="1" alt="" /> # 4.24: Calculating Acceleration from Force and Mass Difficulty Level: At Grade Created by: CK-12 Estimated2 minsto complete % Progress Practice Calculating Acceleration from Force and M...
1,371
5,531
{"found_math": true, "script_math_tex": 5, "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.71875
5
CC-MAIN-2016-50
longest
en
0.881722
http://www.jiskha.com/display.cgi?id=1187566895
1,462,432,303,000,000,000
text/html
crawl-data/CC-MAIN-2016-18/segments/1461860125897.68/warc/CC-MAIN-20160428161525-00006-ip-10-239-7-51.ec2.internal.warc.gz
605,515,181
3,852
Thursday May 5, 2016 Homework Help: math/algebra Posted by ms jay on Sunday, August 19, 2007 at 7:41pm. Can someone help me with this problem....5x/7-6x/5=3/35 find the common denominator for the left side You should get it to be 35 multiply both the numerator and the denominator by the number that makes each fra...
124
444
{"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.53125
4
CC-MAIN-2016-18
longest
en
0.917512