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://gomathanswerkey.com/texas-go-math-grade-3-lesson-11-3-answer-key/
1,721,612,932,000,000,000
text/html
crawl-data/CC-MAIN-2024-30/segments/1720763517805.92/warc/CC-MAIN-20240722003438-20240722033438-00430.warc.gz
238,177,626
56,191
# Texas Go Math Grade 3 Lesson 11.3 Answer Key Even and Odd Numbers Refer to our Texas Go Math Grade 3 Answer Key Pdf to score good marks in the exams. Test yourself by practicing the problems from Texas Go Math Grade 3 Lesson 11.3 Answer Key Even and Odd Numbers. ## Texas Go Math Grade 3 Lesson 11.3 Answer Key Even ...
4,437
15,162
{"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.625
5
CC-MAIN-2024-30
latest
en
0.891849
https://aakashdigitalsrv1.meritnation.com/ask-answer/question/a-rhombus-sheet-whose-perimeter-is-32-m-and-whose-one-diagno/heron-s-formula/2716521
1,638,425,572,000,000,000
text/html
crawl-data/CC-MAIN-2021-49/segments/1637964361169.72/warc/CC-MAIN-20211202054457-20211202084457-00267.warc.gz
157,856,771
8,848
# A rhombus sheet whose perimeter is 32 m and whose one diagnol is 10 cm long ,is painted on both sides at the rate of RS 5 per m^2.Find the cost of polishing. Since the perimeter of the rhombus is 32m, its side will be 32/4 = 8 m. (Note that in the question the diagonal should be 10 m and not 10 cm. If the diagonal i...
251
943
{"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-2021-49
latest
en
0.923962
https://www.houseofmath.com/no/encyclopedia/algebra/grunnleggende-algebra/parenteser/hva-er-parentesreglene
1,657,134,010,000,000,000
text/html
crawl-data/CC-MAIN-2022-27/segments/1656104676086.90/warc/CC-MAIN-20220706182237-20220706212237-00797.warc.gz
859,110,689
37,563
# Hva er parentesreglene? Her skal du se på alle parentesreglene samlet sammen. Regel ### Parenteser $\begin{array}{llll}\hfill \phantom{\rule{-0.17em}{0ex}}\left(a+b\right)\phantom{\rule{-0.17em}{0ex}}\left(c+d\right)& =a\cdot c+a\cdot d+b\cdot c\phantom{\rule{2em}{0ex}}& \hfill & \phantom{\rule{2em}{0ex}}\\ \hfil...
2,124
4,460
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 16, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.4375
4
CC-MAIN-2022-27
latest
en
0.222527
https://www.includehelp.com/icp/print-boundary-sum-of-a-binary-tree.aspx
1,723,608,260,000,000,000
text/html
crawl-data/CC-MAIN-2024-33/segments/1722641095791.86/warc/CC-MAIN-20240814030405-20240814060405-00702.warc.gz
631,771,409
50,479
# Print Boundary Sum of a Binary Tree In-this article, we are going to learn how to find boundary sum of a binary tree? This article contains the solution along with algorithm and program. Submitted by Radib Kar, on December 02, 2018 Problem statement: Given a binary tree, print the boundary sum of the tree. ## Solu...
1,133
4,233
{"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.65625
5
CC-MAIN-2024-33
latest
en
0.79228
https://stackoverflow.com/questions/72882207/whats-the-mathematical-formula-for-a-nested-loop
1,701,418,393,000,000,000
text/html
crawl-data/CC-MAIN-2023-50/segments/1700679100276.12/warc/CC-MAIN-20231201053039-20231201083039-00157.warc.gz
621,089,021
45,513
# What's the mathematical formula for a nested loop? Imagine this loop: ``````for i in range(3): for j in range(3): for k in range(3): print("{}{}{}".format(letter, number, symbol)) `````` I want to generate this sequence numerically - without a nested for loop, by manipulating the i, j and k values. What's the form...
2,432
8,529
{"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-2023-50
latest
en
0.638305
https://www.vetrina-eventi.com/how-many-millions-is-a-billion/
1,716,195,510,000,000,000
text/html
crawl-data/CC-MAIN-2024-22/segments/1715971058254.21/warc/CC-MAIN-20240520080523-20240520110523-00516.warc.gz
952,940,603
13,169
# How Many Millions is a Billion? Understanding the Value of Large Numbers ## Introduction If you’ve ever wondered how many millions is a billion, you’re not alone. Whether you’re working in finance, reading the news, or just curious about numbers, understanding the difference between millions and billions is importa...
939
4,658
{"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-2024-22
latest
en
0.909706
https://math.stackexchange.com/questions/2212219/what-is-the-closed-form-of-sum-n-geq-1-1n-1-psin2
1,726,599,207,000,000,000
text/html
crawl-data/CC-MAIN-2024-38/segments/1725700651829.57/warc/CC-MAIN-20240917172631-20240917202631-00038.warc.gz
347,003,820
42,758
# What is the closed form of $\sum_{n\geq 1}(-1)^{n-1}\psi'(n)^2$? This problem was proposed by Cornel Ioan Valean. What is the closed form of $$S=\sum_{n\geq 1}(-1)^{n+1}\psi'(n)^2$$ ? I recall that $\psi'(z)=\frac{d^2}{dz^2}\log\Gamma(z)=\sum_{m\geq 0}\frac{1}{(m+z)^2}$ for any $z>0$. My attempt was to perform the...
6,482
12,740
{"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.640625
4
CC-MAIN-2024-38
latest
en
0.697734
https://www.routledge.com/Linear-Algebra-What-you-Need-to-Know/Woerdeman/p/book/9780367684730
1,708,505,329,000,000,000
text/html
crawl-data/CC-MAIN-2024-10/segments/1707947473401.5/warc/CC-MAIN-20240221070402-20240221100402-00333.warc.gz
1,032,378,884
30,898
1st Edition # Linear Algebra What you Need to Know By Hugo J. Woerdeman Copyright 2021 282 Pages 29 B/W Illustrations by Chapman & Hall 282 Pages 29 B/W Illustrations by Chapman & Hall 282 Pages 29 B/W Illustrations by Chapman & Hall Also available as eBook on: There is good reason to be excited about Linear Alge...
907
4,110
{"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-2024-10
latest
en
0.919571
https://www.bartleby.com/solution-answer/chapter-1-problem-25rcc-precalculus-mathematics-for-calculus-6th-edition-6th-edition/9780840068071/21ba50bf-c2ae-11e8-9bb5-0ece094302b6
1,632,567,998,000,000,000
text/html
crawl-data/CC-MAIN-2021-39/segments/1631780057615.3/warc/CC-MAIN-20210925082018-20210925112018-00372.warc.gz
696,794,916
103,034
# The procedure to calculate the x and y intercepts on the graph. BuyFind ### Precalculus: Mathematics for Calcu... 6th Edition Stewart + 5 others Publisher: Cengage Learning ISBN: 9780840068071 BuyFind ### Precalculus: Mathematics for Calcu... 6th Edition Stewart + 5 others Publisher: Cengage Learning ISBN: 97808...
293
1,158
{"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-2021-39
latest
en
0.852897
https://www.eevblog.com/forum/blog/eevblog-1399-electronics-fundamentals-voltage-dividers/?wap2;PHPSESSID=806gkb6r4133ptse57oj61b785
1,627,383,439,000,000,000
text/html
crawl-data/CC-MAIN-2021-31/segments/1627046153391.5/warc/CC-MAIN-20210727103626-20210727133626-00192.warc.gz
755,692,935
2,381
EEVblog > EEVblog Specific EEVblog 1399 - Electronics Fundamentals: Voltage Dividers (1/2) > >> EEVblog: Fundamentals video. Voltage dividers, series and parallel resistors, current dividers, a revisit of Norton and Thevenin's theorems, rules of thumbs, and a trap for young players experiment on circuit loading. 00...
587
1,844
{"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-2021-31
latest
en
0.856793
https://documen.tv/question/a-force-of-15n-is-action-on-an-area-with-pressure-of-10pa-what-is-the-area-covered-23755747-86/
1,638,557,933,000,000,000
text/html
crawl-data/CC-MAIN-2021-49/segments/1637964362918.89/warc/CC-MAIN-20211203182358-20211203212358-00337.warc.gz
291,690,727
15,495
A force of 15N is action on an area with pressure of 10pa. What is the area covered? Question A force of 15N is action on an area with pressure of 10pa. What is the area covered? in progress 0 3 months 2021-08-01T13:58:10+00:00 1 Answers 0 views 0 150 Explanation: P=F/A 10=15/A 10*15=15/A*15 150=A I HOPE I HE...
131
371
{"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-2021-49
longest
en
0.79435
http://mathforum.org/kb/message.jspa?messageID=8323963
1,524,272,106,000,000,000
text/html
crawl-data/CC-MAIN-2018-17/segments/1524125944848.33/warc/CC-MAIN-20180420233255-20180421013255-00456.warc.gz
212,526,065
6,136
Search All of the Math Forum: Views expressed in these public forums are not endorsed by NCTM or The Math Forum. Notice: We are no longer accepting new posts, but the forums will continue to be readable. Topic: probability question about the dice game Replies: 21   Last Post: Feb 18, 2013 2:47 PM Messages: [ Previ...
983
2,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...
4.09375
4
CC-MAIN-2018-17
longest
en
0.878205
https://tratliff.webspace.wheatoncollege.edu/2021__Spring/math302/pre-class_assignments.html
1,620,839,978,000,000,000
text/html
crawl-data/CC-MAIN-2021-21/segments/1620243989766.27/warc/CC-MAIN-20210512162538-20210512192538-00257.warc.gz
607,276,213
5,667
# Pre-Class AssignmentsMath 302 Advanced Cryptography, Spring 2021 This page uses MathJax to display mathematical notation, so please let me know if any part isn't clear. All section numbers refer to the text, An Introduction to Mathematical Cryptography, 2nd Edition by Hoffstein, Pipher, and Silverman. All Echo360 ...
2,254
7,909
{"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-2021-21
latest
en
0.840089
https://justaaa.com/statistics-and-probability/1010605-cars-on-campus-statistics-students-at-a-community
1,719,037,242,000,000,000
text/html
crawl-data/CC-MAIN-2024-26/segments/1718198862252.86/warc/CC-MAIN-20240622045932-20240622075932-00237.warc.gz
293,040,465
10,783
Question # Cars on Campus. Statistics students at a community college wonder whether the cars belonging to students... Cars on Campus. Statistics students at a community college wonder whether the cars belonging to students are, on average, older than the cars belonging to faculty. They select a random sample of 49 c...
460
1,960
{"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-2024-26
latest
en
0.912544
http://infolab.stanford.edu/~nsample/cs245/handouts/hw3sol/cs245hw3soln.htm
1,508,383,549,000,000,000
text/html
crawl-data/CC-MAIN-2017-43/segments/1508187823220.45/warc/CC-MAIN-20171019031425-20171019051425-00321.warc.gz
178,486,348
3,127
## CS245 Summer 2000 Solution Set for Homework 3 ### Problem 1 (a) Since the blocks are stored sequentially, we only need a pointer to the first block. The first block of the index will have a block pointer to the first file block and key values. The rest of the index block will only have key values. We can fit ë(204...
1,631
5,203
{"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-2017-43
latest
en
0.813279
https://landsurveyorsunited.com/video/video/listTagged?tag=trigonometry
1,542,445,429,000,000,000
text/html
crawl-data/CC-MAIN-2018-47/segments/1542039743351.61/warc/CC-MAIN-20181117082141-20181117104141-00337.warc.gz
667,657,786
28,289
Next Generation Land Surveyor Community # All Surveying Videos Tagged trigonometry (13) • ### True Bearings and Trigonometry A boats sails on a true bearing of 140 for 40km, then changes to bearing of 250 for 80 km. Find dis… Tags: trigonometry, bearings ⚡Survenator⌁ Sep 25, 2017 142 views • ### Horizontal Curves (...
1,238
4,369
{"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-2018-47
latest
en
0.701414
http://mathhelpforum.com/calculus/6852-max-min-inflections-print.html
1,527,269,285,000,000,000
text/html
crawl-data/CC-MAIN-2018-22/segments/1526794867140.87/warc/CC-MAIN-20180525160652-20180525180652-00261.warc.gz
184,545,517
3,454
max, min, inflections • Oct 25th 2006, 12:15 PM gracy max, min, inflections . Let f(x) = x2ex (a)Find all of the local maxima and minima (b)find point of inflection (c)determine largest interval in which f(x) is concave downward. (d) evaluate lin x->-inf f(x) and lim x->inf f(X) • Oct 25th 2006, 12:23 PM ThePerfectHac...
898
2,646
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
4.3125
4
CC-MAIN-2018-22
latest
en
0.602807
https://stats.stackexchange.com/questions/219470/how-to-integrate-lognormal-equation
1,701,276,324,000,000,000
text/html
crawl-data/CC-MAIN-2023-50/segments/1700679100112.41/warc/CC-MAIN-20231129141108-20231129171108-00729.warc.gz
643,420,174
40,954
# How to integrate lognormal equation? The problem comes from the personal research $h \sim \log N(\mu,\sigma^2)$ then $$f_H(h) = \frac{1}{h\sigma\sqrt{2\pi}}\exp\left[-\frac{1}{2}\left(\frac{\log h-\mu}{\sigma}\right)^2\right].$$ Here is a integration $$P_l=\int_{-w}^{w} \int_{\frac{\ x_h}{\ y_h}(x_b-w)+l}^{\frac{...
364
972
{"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.5
4
CC-MAIN-2023-50
longest
en
0.743996
https://brainly.ph/question/250359
1,487,672,236,000,000,000
text/html
crawl-data/CC-MAIN-2017-09/segments/1487501170700.71/warc/CC-MAIN-20170219104610-00215-ip-10-171-10-108.ec2.internal.warc.gz
698,530,720
9,825
# How to get a percentage by volume and mass...and example 1 by Sonicely 2015-10-26T22:45:54+08:00 Example, A solution is prepared by dissolving 90 milliliters of pure hydrogen peroxide in enough water to make 3000 milliliters of solution.The concentration of the hydrogen peroxide solution is, SOLUTION: Given data: ...
288
1,139
{"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-2017-09
latest
en
0.788263
https://www.physicsforums.com/threads/wavelength-2-vs-tension-graph-conceptual.396104/
1,508,676,710,000,000,000
text/html
crawl-data/CC-MAIN-2017-43/segments/1508187825227.80/warc/CC-MAIN-20171022113105-20171022133105-00473.warc.gz
981,996,806
15,918
# Wavelength^2 vs. Tension (graph/conceptual) 1. Apr 17, 2010 ### anti404 hi, in our lab last Thursday we were doing standing waves on a string attached to a pulley and vibrator(at f=120Hz), and we produced loops by creating a tension force in the string. by calculating the wavelength(2*[distance from node to node]/...
649
2,314
{"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.96875
4
CC-MAIN-2017-43
longest
en
0.942625
https://www.physicsforums.com/threads/calculating-riemannian-metric-tensor-for-a-vector.216725/
1,713,611,228,000,000,000
text/html
crawl-data/CC-MAIN-2024-18/segments/1712296817576.41/warc/CC-MAIN-20240420091126-20240420121126-00435.warc.gz
831,003,048
16,733
Calculating Riemannian Metric Tensor for a Vector • ejays In summary: I will try to find a way to do it myself .In summary, the riemannian tensor is a map from the tangent space (bundle) x tangents space (bundle) to the real numbers. You take two vectors and plug them into the riemann tensor and then get a number. eja...
1,848
6,469
{"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.125
4
CC-MAIN-2024-18
latest
en
0.791514
http://mathforum.org/kb/message.jspa?messageID=7977862
1,524,416,374,000,000,000
text/html
crawl-data/CC-MAIN-2018-17/segments/1524125945624.76/warc/CC-MAIN-20180422154522-20180422174522-00128.warc.gz
203,872,824
6,197
Search All of the Math Forum: Views expressed in these public forums are not endorsed by NCTM or The Math Forum. Notice: We are no longer accepting new posts, but the forums will continue to be readable. Replies: 25   Last Post: Jan 8, 2013 1:51 AM Messages: [ Previous | Next ] Sylvia Else Posts: 146 Registered: ...
1,042
3,064
{"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.734375
4
CC-MAIN-2018-17
longest
en
0.943413
https://stats.stackexchange.com/questions/473424/finding-pmf-cdf-of-a-piecewise-function-of-an-rv
1,627,070,441,000,000,000
text/html
crawl-data/CC-MAIN-2021-31/segments/1627046150000.59/warc/CC-MAIN-20210723175111-20210723205111-00445.warc.gz
546,781,859
37,008
# Finding PMF, CDF of a piecewise function of an RV Here's the question: Let $$Z$$ have CDF $$F$$ and pdf $$f$$ and let $$A$$ be a subset of the real line. Further, let $$\begin{cases} W = 1 & \text{if Z \in A} \\ W = 0 &\text{otherwise} \\ \end{cases}$$. a.) Find the PMF of $$W$$. b.) Find the CDF of $$W$$. For ...
397
1,105
{"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.625
4
CC-MAIN-2021-31
latest
en
0.863148
https://www.physicsforums.com/threads/block-pulled-up-slope-coefficient-of-kinetic-friction.268827/
1,481,055,542,000,000,000
text/html
crawl-data/CC-MAIN-2016-50/segments/1480698541995.74/warc/CC-MAIN-20161202170901-00393-ip-10-31-129-80.ec2.internal.warc.gz
986,590,444
15,761
# Block Pulled Up Slope/Coefficient Of Kinetic Friction. 1. Nov 2, 2008 ### kaylanp01 1. The problem statement, all variables and given/known data Block A has a mass of 5.56 kg and is on a rough incline of 21.5 degrees to the horizontal. Block B has a mass of 4.66 kg and the coefficient of kinetic friction between B...
493
1,628
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
3.515625
4
CC-MAIN-2016-50
longest
en
0.90843
http://tug.org/pipermail/texhax/2006-May/006149.html
1,513,553,550,000,000,000
text/html
crawl-data/CC-MAIN-2017-51/segments/1512948599156.77/warc/CC-MAIN-20171217230057-20171218012057-00069.warc.gz
273,925,336
2,226
# [texhax] Math notation Michael Doob mdoob at ccu.umanitoba.ca Wed May 10 15:30:44 CEST 2006 On Tuesday 09 May 2006 9:46 pm, E. Krishnan wrote: unnatural. > > Sure it does, since we've been seeing the whole "dx" in italics for all > these years. But from a strictly notational point of view, it is > equivalent to th...
600
1,949
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 1, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
3.828125
4
CC-MAIN-2017-51
longest
en
0.831148
www.mlpro.io
1,627,197,355,000,000,000
text/html
crawl-data/CC-MAIN-2021-31/segments/1627046151638.93/warc/CC-MAIN-20210725045638-20210725075638-00381.warc.gz
928,245,207
13,604
3 Unsolved ###### Supervised Difficulty: 5 | Problem written by ankita ##### Problem reported in interviews at There are various optimization algorithms that are used to find a local minimum for a differentiable function by minimizing the cost function of the problem. Gradient descent is one such algorithm that ac...
1,148
3,410
{"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": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
3.5625
4
CC-MAIN-2021-31
latest
en
0.849718
https://convert-dates.com/days-from/2234/2024/08/02
1,723,204,051,000,000,000
text/html
crawl-data/CC-MAIN-2024-33/segments/1722640763425.51/warc/CC-MAIN-20240809110814-20240809140814-00224.warc.gz
142,044,164
4,382
## 2234 Days From August 2, 2024 Want to figure out the date that is exactly two thousand two hundred thirty four days from Aug 2, 2024 without counting? Your starting date is August 2, 2024 so that means that 2234 days later would be September 14, 2030. You can check this by using the date difference calculator to ...
921
2,718
{"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-2024-33
latest
en
0.922304
http://mathhelpforum.com/trigonometry/2349-trig-equation-print.html
1,498,569,930,000,000,000
text/html
crawl-data/CC-MAIN-2017-26/segments/1498128321410.90/warc/CC-MAIN-20170627115753-20170627135753-00520.warc.gz
242,086,621
2,976
# trig equation • Mar 26th 2006, 02:34 PM c_323_h trig equation solve the trig equation sec(x)-2=0 for exact solutions in the interval 0<= x <= 2pi • Mar 26th 2006, 03:39 PM topsquark Quote: Originally Posted by c_323_h solve the trig equation sec(x)-2=0 for exact solutions in the interval 0<= x <= 2pi sec(x)=2 Now...
513
1,501
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 4, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
3.671875
4
CC-MAIN-2017-26
longest
en
0.867063
https://convertoctopus.com/17-3-days-to-years
1,600,738,848,000,000,000
text/html
crawl-data/CC-MAIN-2020-40/segments/1600400202686.56/warc/CC-MAIN-20200922000730-20200922030730-00697.warc.gz
352,819,606
7,925
Conversion formula The conversion factor from days to years is 0.0027397260273973, which means that 1 day is equal to 0.0027397260273973 years: 1 d = 0.0027397260273973 yr To convert 17.3 days into years we have to multiply 17.3 by the conversion factor in order to get the time amount from days to years. We can also...
500
1,670
{"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.34375
4
CC-MAIN-2020-40
latest
en
0.781319
http://mathforum.org/kb/message.jspa?messageID=9283196
1,521,312,006,000,000,000
text/html
crawl-data/CC-MAIN-2018-13/segments/1521257645280.4/warc/CC-MAIN-20180317174935-20180317194935-00200.warc.gz
184,445,433
5,543
Search All of the Math Forum: Views expressed in these public forums are not endorsed by NCTM or The Math Forum. Notice: We are no longer accepting new posts, but the forums will continue to be readable. Topic: Could 0^0=0? Maybe! Replies: 10   Last Post: Sep 27, 2013 7:54 PM Messages: [ Previous | Next ] David C...
681
2,059
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
3.875
4
CC-MAIN-2018-13
latest
en
0.908735
http://abcnews.go.com/Technology/WhosCounting/story?id=97818&page=2
1,371,719,922,000,000,000
text/html
crawl-data/CC-MAIN-2013-20/segments/1368711005985/warc/CC-MAIN-20130516133005-00007-ip-10-60-113-184.ec2.internal.warc.gz
2,139,266
23,459
# Who’s Counting?: Probability and Risk in the News Answer to 2. The second probability would be vastly higher. To see this, let me make up some illustrative numbers. There are about four million innocent people in the area and, we'll assume, one guilty one. Let's estimate that 10 people (including the guilty one) own...
663
2,676
{"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-2013-20
longest
en
0.955224
http://metasd.com/tag/lookup/
1,544,598,897,000,000,000
text/html
crawl-data/CC-MAIN-2018-51/segments/1544376823785.24/warc/CC-MAIN-20181212065445-20181212090945-00587.warc.gz
185,644,892
13,303
## Polynomials & Interpolating Functions for Decision Rules Sometimes it’s useful to have a way to express a variable as a flexible function of time, so that you can find the trajectory that maximizes some quantity like profit or fit to data. A caveat: this is not generally the best thing to do. A simple feedback rule...
908
4,346
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
3.640625
4
CC-MAIN-2018-51
latest
en
0.906901
http://openstudy.com/updates/50fa0ef9e4b022b322700237
1,444,361,558,000,000,000
text/html
crawl-data/CC-MAIN-2015-40/segments/1443737913406.61/warc/CC-MAIN-20151001221833-00070-ip-10-137-6-227.ec2.internal.warc.gz
241,867,255
14,642
## sgta101 2 years ago Question in comments...plz help 1. Hawk3ye Ok. 2. sgta101 \[a^4-29a^2+100<0\] 3. sgta101 i really need an explanation or showing of work. 4. Hawk3ye Holy chiznets. What type of math is this. Geometry, Triginometry, Calculus, Algebra, etc. 5. sgta101 Algebra 6. Hawk3ye 1 or 2 7. sgta1...
836
2,226
{"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-2015-40
longest
en
0.770057
https://edurev.in/course/quiz/attempt/14991_28-Year-NEET-Questions-Electric-Charges-Fields/e201e218-2a74-48f0-9444-cc70d70a3ded
1,624,183,247,000,000,000
text/html
crawl-data/CC-MAIN-2021-25/segments/1623487660269.75/warc/CC-MAIN-20210620084505-20210620114505-00506.warc.gz
207,643,654
53,419
Courses 28 Year NEET Questions: Electric Charges & Fields 37 Questions MCQ Test Physics 28 Years Past year papers for NEET/AIPMT Class 12 | 28 Year NEET Questions: Electric Charges & Fields Description This mock test of 28 Year NEET Questions: Electric Charges & Fields for NEET helps you for every NEET entrance exam...
3,542
13,170
{"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-2021-25
latest
en
0.883011
https://sg.answers.yahoo.com/question/index?qid=20210303171512AAfEpG9
1,618,623,963,000,000,000
text/html
crawl-data/CC-MAIN-2021-17/segments/1618038098638.52/warc/CC-MAIN-20210417011815-20210417041815-00333.warc.gz
575,655,393
19,672
Anonymous Anonymous asked in Science & MathematicsPhysics · 1 month ago # What is the resistance of a 5.00km long copper wire that has a diameter of 0.500cm? resistivity of copper: 1.68x10^-8 ohm meters Relevance • 1 month ago radius = 0.25 cm = 0.0025 m area = πr² = 0.00001964 m² R = (1.68e-8)(5000)/(0.00001964)...
178
498
{"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.625
4
CC-MAIN-2021-17
latest
en
0.878498
http://www.thehealthsuccesssite.com/calculating-bmi-made-easy.html
1,513,318,133,000,000,000
text/html
crawl-data/CC-MAIN-2017-51/segments/1512948567042.50/warc/CC-MAIN-20171215060102-20171215080102-00271.warc.gz
456,754,226
8,275
# Calculating BMI Made Easy Before we start calculating BMI, let's discuss what BMI is, and what it isn't. BMI, or the body mass index, is a tool that's used to determine whether or not a person is at a normal weight for his or her height. It was invented between 1830 and 1850 by mathematician and scientist Adolphe Qu...
1,042
4,737
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
3.921875
4
CC-MAIN-2017-51
latest
en
0.953205
http://mathrec.org/old/2001dec/solutions.html
1,582,656,119,000,000,000
text/html
crawl-data/CC-MAIN-2020-10/segments/1581875146127.10/warc/CC-MAIN-20200225172036-20200225202036-00229.warc.gz
97,956,862
4,619
## Mathematical Recreations MathRec Home Last Month's Problem Introductory Problem Older Problemsand Links Educational Resources Steve's Personal Page #### Harmonic Oscillator With a Massive Spring: Solutions In order to attack this problem, we need to consider how a small segment of the spring will behave. If the ...
1,764
6,648
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.4375
4
CC-MAIN-2020-10
latest
en
0.908834
http://mathhelpforum.com/pre-calculus/172815-finding-limit-function-using-limit-rules.html
1,529,742,998,000,000,000
text/html
crawl-data/CC-MAIN-2018-26/segments/1529267864953.36/warc/CC-MAIN-20180623074142-20180623094142-00101.warc.gz
196,823,266
10,177
# Thread: Finding limit of this function, using Limit rules 1. ## Finding limit of this function, using Limit rules I have some problems where I need to determine if the limits exist using the limit definition or limit laws. For the following 2 I think i can use the laws but would like to make sure: $\displaystyle l...
683
2,323
{"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.125
4
CC-MAIN-2018-26
latest
en
0.923959
https://thegrandparadise.com/essay-tips/what-is-a-cycle-in-trigonometry/
1,718,288,971,000,000,000
text/html
crawl-data/CC-MAIN-2024-26/segments/1718198861451.34/warc/CC-MAIN-20240613123217-20240613153217-00282.warc.gz
522,192,081
11,390
# What is a cycle in trigonometry? ## What is a cycle in trigonometry? A periodic function is a trigonometric function which repeats a pattern of y-values at regular intervals. One complete repetition of the pattern is called a cycle. The period of a function is the horizontal length of one complete cycle. ### What ...
660
2,873
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.375
4
CC-MAIN-2024-26
latest
en
0.941807
https://yokolet.com/algo/linked_lists/2022-12-06-odd-even-linked-list
1,695,335,952,000,000,000
text/html
crawl-data/CC-MAIN-2023-40/segments/1695233506045.12/warc/CC-MAIN-20230921210007-20230922000007-00620.warc.gz
1,225,797,145
10,397
Published: Dec 6, 2022 ## Problem Description Given the `head` of a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and return the reordered list. The first node is considered odd, and the second node is even, and so on. Note that the relative order inside ...
674
2,277
{"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-40
latest
en
0.831889
https://www.thestudentroom.co.uk/showthread.php?t=5809734
1,552,956,800,000,000,000
text/html
crawl-data/CC-MAIN-2019-13/segments/1552912201812.2/warc/CC-MAIN-20190318232014-20190319014014-00286.warc.gz
939,620,359
38,531
# Markov ChainWatch #1 is the cumulative number of rolls of a die up to time n, with state space {0,1,2,...}. . I need to find out the probability that 9 or 10 get mentioned (in all the different paths). So I started thinking about the no. of ways 9 can get mentioned for up to 9 rolls. I.e. number of ways in 9 rolls...
3,331
12,731
{"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-2019-13
latest
en
0.962597
https://www.szjy-led.com/a/Resources/LED_Knowledge/2472.html
1,653,340,677,000,000,000
text/html
crawl-data/CC-MAIN-2022-21/segments/1652662561747.42/warc/CC-MAIN-20220523194013-20220523224013-00254.warc.gz
1,109,417,124
9,679
What is the resolution of the P2 full-color LED display? Jul 20,2021| LED Knowledge When buying indoor full-color LED displays, many customers don’t know the difference between the models, and don’t know what the p2 resolution is about. Now let’s take the indoor p2 full-color LED display as an example. How to calcula...
632
2,839
{"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-2022-21
latest
en
0.900286
equation-fermat.com
1,585,941,790,000,000,000
text/html
crawl-data/CC-MAIN-2020-16/segments/1585370518622.65/warc/CC-MAIN-20200403190006-20200403220006-00477.warc.gz
63,893,757
3,368
The equation Un + Vn = an is impossible ∀ U, V, a ∈ R with 1 ≤ UVa and ∀ n > 2        n odd integer. In the orthonormal system ( ou , ov ) the graphical representation of the equation is a curve ( Γn ) in between the circle ( C ) U² + V² = a² and the square K of side a. Inevitably we have UV < a < U + V. Let us pass...
759
2,317
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.28125
4
CC-MAIN-2020-16
latest
en
0.797581
https://goodmancoaching.nl/predicate-logic-natural-deduction-transcription/
1,675,450,677,000,000,000
text/html
crawl-data/CC-MAIN-2023-06/segments/1674764500074.73/warc/CC-MAIN-20230203185547-20230203215547-00294.warc.gz
293,315,796
20,007
# Predicate Logic (Natural deduction & transcription)? In natural deduction, to prove an implication of the form P ⇒ Q, we assume P, then reason under that assumption to try to derive Q. If we are successful, then we can conclude that P ⇒ Q. In a proof, we are always allowed to introduce a new assumption P, then reaso...
1,695
8,097
{"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.96875
4
CC-MAIN-2023-06
longest
en
0.941634
https://metanumbers.com/15105
1,621,124,237,000,000,000
text/html
crawl-data/CC-MAIN-2021-21/segments/1620243991488.53/warc/CC-MAIN-20210515223209-20210516013209-00619.warc.gz
404,878,953
7,493
## 15105 15,105 (fifteen thousand one hundred five) is an odd five-digits composite number following 15104 and preceding 15106. In scientific notation, it is written as 1.5105 × 104. The sum of its digits is 12. It has a total of 4 prime factors and 16 positive divisors. There are 7,488 positive integers (up to 15105)...
1,302
3,807
{"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-21
latest
en
0.805633
https://www.coursehero.com/file/213988/HW3s/
1,487,733,620,000,000,000
text/html
crawl-data/CC-MAIN-2017-09/segments/1487501170875.20/warc/CC-MAIN-20170219104610-00021-ip-10-171-10-108.ec2.internal.warc.gz
804,653,869
54,727
# HW3s - Spring 2006 Thermodynamics Homework #3, Solutions 1.... This preview shows pages 1–2. Sign up to view the full content. Spring 2006 1 ME 201 Thermodynamics Homework #3, Solutions 1. Convert the following temperatures to ° F, ° C, K, R (each temperature ¼ pt) a. 98.6 ° F T(°F)=98.6 ° F, T( ° C)=(98.6-32)/1.8=...
641
1,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-2017-09
longest
en
0.668578
https://amazingconverter.com/power-converter
1,716,542,945,000,000,000
text/html
crawl-data/CC-MAIN-2024-22/segments/1715971058709.9/warc/CC-MAIN-20240524091115-20240524121115-00687.warc.gz
73,445,921
8,930
# Power converter Published: 2/6/2021 Last updated: 2/6/2021 The power converter – tool for making powerful conversion of any unit of power. Quickly, easily and for free. No more mistakes, no more wasting your time. Click here and try it on your own. Not every of our converters can be named as general. There are also...
1,298
5,727
{"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-2024-22
latest
en
0.965813
https://www.instasolv.com/question/4-3-3-a-vb-then-b-a-is-ex-3-if-77-473-1-13-3-13-2-2213-4-373-77-a250cy
1,610,767,114,000,000,000
text/html
crawl-data/CC-MAIN-2021-04/segments/1610703499999.6/warc/CC-MAIN-20210116014637-20210116044637-00795.warc.gz
847,365,118
10,623
4+3/3=A+VB, then B - A is Ex.3. If ... Question # 4+3/3=A+VB, then B - A is Ex.3. If 77 +473 (1) -13 (3) 13 (2) 2213 (4) 373 - 77 11th - 12th Class Maths Solution 108 4.0 (1 ratings) Sol. (3) ( sqrt{7+4 sqrt{3}}=sqrt{7+2 times 2 times sqrt{3}} ) ( =sqrt{4+3+2 times 2 times sqrt{3}}=sqrt{(2+sqrt{3})^{2}}=2+sqrt{3} ) (...
326
670
{"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-2021-04
latest
en
0.320568
https://venn-diagram.net/venn-diagram-template-3/
1,653,653,675,000,000,000
text/html
crawl-data/CC-MAIN-2022-21/segments/1652662647086.91/warc/CC-MAIN-20220527112418-20220527142418-00626.warc.gz
635,322,714
15,239
# Venn Diagram Template 3 ## The Definition and the Uses of Venn Diagram Venn Diagram Template 3 – You have most likely been exposed to or encountered an Venn diagram in the past. Anyone who has attended Mathematics, especially Algebra and Probability, must be already familiar with this image. This is an image tool u...
738
3,763
{"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-2022-21
longest
en
0.97125
https://brilliant.org/practice/lorentz-force-law-magnetic-fields/
1,490,479,201,000,000,000
text/html
crawl-data/CC-MAIN-2017-13/segments/1490218189083.86/warc/CC-MAIN-20170322212949-00562-ip-10-233-31-227.ec2.internal.warc.gz
783,902,707
16,697
× Back to all chapters # Magnetic Fields Magnets have bewildered everyone from the Insane Clown Posse to Tim Allen. Stand apart from the madding crowd and set yourself straight on the fields of moving charges. # Lorentz force law (magnetic fields) A negatively charged particle moving horizontally enters a region wh...
625
2,729
{"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.796875
4
CC-MAIN-2017-13
longest
en
0.878094
http://www.algebra.com/algebra/homework/Linear-equations/Linear-equations.faq.question.136250.html
1,444,191,634,000,000,000
text/html
crawl-data/CC-MAIN-2015-40/segments/1443736682102.57/warc/CC-MAIN-20151001215802-00111-ip-10-137-6-227.ec2.internal.warc.gz
362,722,449
5,462
# SOLUTION: This problem is coming from a worksheet and states to solve the problem by graphing. Can you please help with solving and graphing the problem? Note: There is a line under the gre Algebra ->  Linear-equations -> SOLUTION: This problem is coming from a worksheet and states to solve the problem by graphing. ...
418
1,815
{"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-2015-40
latest
en
0.95018
http://mathhelpforum.com/pre-calculus/168214-re-arranging-formula-print.html
1,513,450,653,000,000,000
text/html
crawl-data/CC-MAIN-2017-51/segments/1512948588420.68/warc/CC-MAIN-20171216181940-20171216203940-00044.warc.gz
180,443,521
3,483
# Re-arranging formula • Jan 13th 2011, 04:31 AM kenmunger Re-arranging formula Hi, im new here. Just wondering if someone could walk me through solving this for equation for V2. I have a solution but some parts seemed to have been skipped and i dont quite understand why: 150*V2^1.3 = 100*((5*10^-3)+V2)^1.3 Thanks •...
918
2,294
{"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": 11, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.21875
4
CC-MAIN-2017-51
longest
en
0.729324
https://rebelsky.cs.grinnell.edu/Courses/CS302/2006S/EBoards/semantics-2.txt
1,713,469,516,000,000,000
text/plain
crawl-data/CC-MAIN-2024-18/segments/1712296817239.30/warc/CC-MAIN-20240418191007-20240418221007-00089.warc.gz
444,204,014
2,740
CSC302 2006S, Class 14: Scheme Semantics (2) Admin: * Cookies! * This week, we're clearly doing stuff that looks like Math. * Reading for Friday: The meaning of lambda (three equations, plus any auxiliaries). [May be updated] * Extra credit for tomorrow's talk! Overview: * The three lambdas * About the four semantic fu...
1,188
4,743
{"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-2024-18
latest
en
0.84397
https://cstheory.stackexchange.com/questions/21533/faster-pseudo-polynomial-time-algorithm-for-subset-sum
1,721,713,166,000,000,000
text/html
crawl-data/CC-MAIN-2024-30/segments/1720763518014.29/warc/CC-MAIN-20240723041947-20240723071947-00437.warc.gz
161,951,333
38,426
Faster pseudo-polynomial time algorithm for subset-sum? Let $S(X) = \{\sum_{i\in Y} i | Y\subset X \}$, the set of subset sums of $X$. $S_n(X) = S(X)\cap \{1,\ldots,n\}$. Consider the following variant of subset sum. ALL-SUBSET-SUMS INPUT: positive integer $n$ and set $X\subset \{1,\ldots,n\}$. OUTPUT: $S_n(X)$ Ther...
452
1,502
{"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.6875
4
CC-MAIN-2024-30
latest
en
0.83194
https://thetextchemistry.org/qa/quick-answer-what-is-the-main-unit-of-weight.html
1,604,066,115,000,000,000
text/html
crawl-data/CC-MAIN-2020-45/segments/1603107910815.89/warc/CC-MAIN-20201030122851-20201030152851-00585.warc.gz
538,604,991
6,886
# Quick Answer: What Is The Main Unit Of Weight? ## How can I calculate weight? The formula for calculating weight is F = m × 9.8 m/s2, where F is the object’s weight in Newtons (N) and m is the object’s mass in kilograms. The Newton is the SI unit for weight, and 1 Newton equals 0.225 pounds.. ## What is the large...
590
2,540
{"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-2020-45
latest
en
0.941579
https://www.phys-l.org/archives/2010/1_2010/msg00106.html
1,713,723,306,000,000,000
text/html
crawl-data/CC-MAIN-2024-18/segments/1712296817790.98/warc/CC-MAIN-20240421163736-20240421193736-00776.warc.gz
825,134,086
3,541
Chronology Current Month Current Thread Current Date [Year List] [Month List (current year)] [Date Index] [Thread Index] [Thread Prev] [Thread Next] [Date Prev] [Date Next] # Re: [Phys-l] Action 1. Why should there be only one parabolic path that minimizes the action for your situation? Backing up a step, we know tha...
896
3,659
{"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.891275
https://gmatclub.com/forum/time-speed-di-253981.html
1,540,171,664,000,000,000
text/html
crawl-data/CC-MAIN-2018-43/segments/1539583514443.85/warc/CC-MAIN-20181022005000-20181022030500-00170.warc.gz
659,222,966
48,593
GMAT Question of the Day - Daily to your Mailbox; hard ones only It is currently 21 Oct 2018, 18:27 ### 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. Customize...
673
2,901
{"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-2018-43
latest
en
0.919497
https://stromcv.com/how-to-explaining-the-n-in-statistics-16
1,675,240,820,000,000,000
text/html
crawl-data/CC-MAIN-2023-06/segments/1674764499919.70/warc/CC-MAIN-20230201081311-20230201111311-00185.warc.gz
561,912,184
6,163
# How to find the n in statistics These sites allow users to input a Math problem and receive step-by-step instructions on How to find the n in statistics. ## Sample Size in Statistics (How to Find it): Excel, Cochrans a) is correct. b) The problem is that the formula for the minimum required sample size is. n = z 2...
755
3,413
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
3.734375
4
CC-MAIN-2023-06
latest
en
0.954352
http://mathhelpforum.com/calculus/227574-differential-equation-help.html
1,480,714,145,000,000,000
text/html
crawl-data/CC-MAIN-2016-50/segments/1480698540563.83/warc/CC-MAIN-20161202170900-00455-ip-10-31-129-80.ec2.internal.warc.gz
181,234,211
10,531
1. ## Differential Equation help? I have this question: I actually got -2.9 though, not -3.2. :/ To get this I found that separated dy/dx=xcosx^2 is y=c+((sin(x^2)/2) So when I put (0,-3) into that I get that c=-3. So then when I plug pi in for x I get that (sin(9.8)/2)-3= -2.9 ..What am I doing wrong here? :/ Thanks!...
252
773
{"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": 1, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
3.8125
4
CC-MAIN-2016-50
longest
en
0.934006
http://mathforum.org/library/drmath/view/55497.html
1,498,698,215,000,000,000
text/html
crawl-data/CC-MAIN-2017-26/segments/1498128323808.56/warc/CC-MAIN-20170629000723-20170629020723-00061.warc.gz
244,397,811
3,216
Associated Topics || Dr. Math Home || Search Dr. Math ### Three-Dimensional Cross Product Derivation ``` Date: 07/26/99 at 08:45:22 From: Rohin Wood Subject: Derivation of 3-dimensional cross product. G'day, I am a 17 year old, year 12, maths 2 student who completely dislikes the idea of accepting a formula without...
705
2,114
{"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-2017-26
longest
en
0.849967
https://blogen.pasithee.fr/tag/probability/
1,685,635,267,000,000,000
text/html
crawl-data/CC-MAIN-2023-23/segments/1685224647895.20/warc/CC-MAIN-20230601143134-20230601173134-00498.warc.gz
169,123,759
28,667
## Intro to probability theory – part 2 Ce billet a été traduit de sa version originale en français : Probabilités – Partie 2. After the previous post about probability theory, here’s the second part, in which I’ll talk about random variables. The idea of random variables is to have some way of dealing with events f...
4,422
16,540
{"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": 134, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "m...
4.53125
5
CC-MAIN-2023-23
latest
en
0.875043
https://brainly.in/question/224789
1,484,942,900,000,000,000
text/html
crawl-data/CC-MAIN-2017-04/segments/1484560280872.69/warc/CC-MAIN-20170116095120-00576-ip-10-171-10-70.ec2.internal.warc.gz
802,949,198
9,918
# How many matches did I win and how many ended in draw? Once I challenged my neighbor for a game of chess everyday for an entire month consisting of 31 days. It was decided that whoever won after every match would be entitled to get \$2 dollars from the loser and the entire money won would be paid at the end of the mo...
225
792
{"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-2017-04
latest
en
0.982502
https://testbook.com/question-answer/a-body-of-mass-m-is-moving-uniformly-alo--5fb7d669546fa368e749923c
1,718,814,771,000,000,000
text/html
crawl-data/CC-MAIN-2024-26/segments/1718198861828.24/warc/CC-MAIN-20240619154358-20240619184358-00843.warc.gz
516,996,666
46,898
# A body of mass 'm' is moving uniformly along a circle having radius 'r'. The centripetal force on the body is: 1. $$\dfrac{mv^2}{r}$$ 2. $$\dfrac{mv^2}{r^2}$$ 3. $$\dfrac{mv}{r^2}$$ 4. $$\dfrac{mv}{r}$$ ## Answer (Detailed Solution Below) Option 1 : $$\dfrac{mv^2}{r}$$ Free UP TGT History Mock Test 12.3 K Users 10...
458
1,544
{"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.09375
4
CC-MAIN-2024-26
latest
en
0.682477
https://tellmeanumber.hostcoder.com/472983/
1,659,901,534,000,000,000
text/html
crawl-data/CC-MAIN-2022-33/segments/1659882570692.22/warc/CC-MAIN-20220807181008-20220807211008-00334.warc.gz
545,656,839
4,758
# Question Is 472,983 a prime number? The number 472,983 is NOT a PRIME number. #### How to check if the number 472,983 is a prime number A prime number can be divided, without a remainder, only by itself and by 1. For example, 13 can be divided only by 13 and by 1. In this case, the number 472,983 that you looked f...
873
3,307
{"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.96875
4
CC-MAIN-2022-33
latest
en
0.858127
http://gmatclub.com/forum/between-1975-and-1985-nursing-home-occupancy-rates-averaged-15192.html?fl=similar
1,485,148,477,000,000,000
text/html
crawl-data/CC-MAIN-2017-04/segments/1484560282110.46/warc/CC-MAIN-20170116095122-00193-ip-10-171-10-70.ec2.internal.warc.gz
116,934,719
57,342
Between 1975 and 1985, nursing-home occupancy rates averaged : GMAT Critical Reasoning (CR) Check GMAT Club Decision Tracker for the Latest School Decision Releases http://gmatclub.com/AppTrack It is currently 22 Jan 2017, 21:14 ### GMAT Club Daily Prep #### Thank you for using the timer - this advanced tool can es...
2,770
10,548
{"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-2017-04
latest
en
0.914012
https://www.coursehero.com/file/6858740/Hwang-Review-solns/
1,524,411,046,000,000,000
text/html
crawl-data/CC-MAIN-2018-17/segments/1524125945604.91/warc/CC-MAIN-20180422135010-20180422155010-00153.warc.gz
786,014,707
104,351
{[ promptMessage ]} Bookmark it {[ promptMessage ]} Hwang Review solns # Hwang Review solns - Holy Cross College Fall Semester 2003... This preview shows pages 1–4. Sign up to view the full content. Holy Cross College, Fall Semester, 2003 Math 131, Course Review Sheet Answers Professor Hwang 1. What type of funct...
1,087
3,863
{"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-2018-17
latest
en
0.86382
https://electronics.stackexchange.com/questions/7755/what-resistor-should-i-use-when-wiring-10-leds-in-series
1,660,423,632,000,000,000
text/html
crawl-data/CC-MAIN-2022-33/segments/1659882571987.60/warc/CC-MAIN-20220813202507-20220813232507-00760.warc.gz
241,551,359
68,463
# What resistor should I use when wiring 10 LEDs in series? I want to wire 10 of these LEDs into a circuit with a 9-V battery. The site states that the forward voltage is 3.2-3.8 V at 20 mA current. Should I assume 20 mA is the max amount of current that can flow throw this circuit? Using V = RI, I calculate that I n...
1,372
4,876
{"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.96875
4
CC-MAIN-2022-33
longest
en
0.949323
https://cracku.in/157-when-25-of-a-number-is-added-to-169-it-becomes-thr-x-sbi-clerk-2015-3
1,726,420,955,000,000,000
text/html
crawl-data/CC-MAIN-2024-38/segments/1725700651632.84/warc/CC-MAIN-20240915152239-20240915182239-00809.warc.gz
162,345,075
26,175
Question 157 # when 2/5 of a number is added to 169 , it becomes thrice of itself . What is the number ? Solution Let the number be $$x$$ => $$\frac{2}{5} x + 169 = 3x$$ => $$3x - \frac{2x}{5} = 169$$ => $$13x = 5 \times 169$$ => $$x = \frac{5 \times 169}{13}$$ => $$x = 5 \times 13 = 65$$
123
297
{"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.0625
4
CC-MAIN-2024-38
latest
en
0.738477
https://studdy.ai/shared-solution/74f97a85-8ab9-4af3-a474-dbf021d22cc0
1,721,377,451,000,000,000
text/html
crawl-data/CC-MAIN-2024-30/segments/1720763514900.59/warc/CC-MAIN-20240719074314-20240719104314-00816.warc.gz
470,279,710
12,892
# Math Snap ## Let $\sum y_{n}$ be a series such that $\frac{1}{n^{1 / \pi}} \leq y_{n}$ for all $n \geq 1$. Then Select one: a. The series $\sum y_{n}$ is divergent by Limit Comparison Test. b. The series $\sum Y_{n}$ is divergent by Direct Comparison Test. c. Non of them d. The series $\sum y_{n}$ is convergent by D...
601
1,739
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 36, "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.59375
5
CC-MAIN-2024-30
latest
en
0.722453
https://www.onlinemath4all.com/solving-systems-of-equations-by-substitution.html
1,669,489,420,000,000,000
text/html
crawl-data/CC-MAIN-2022-49/segments/1669446708046.99/warc/CC-MAIN-20221126180719-20221126210719-00763.warc.gz
990,799,024
7,123
# SOLVING SYSTEMS OF EQUATIONS BY SUBSTITUTION The following steps will be useful to solve system of equations using substitution. Step 1 : In the given two equations, solve one of the equations either for x or y. Step 2 : Substitute the result of step 1 into other equation and solve for the second variable. Step...
1,402
3,572
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.8125
5
CC-MAIN-2022-49
latest
en
0.684993
https://www.physicsforums.com/threads/a-euclidean-challenge.538678/
1,542,757,135,000,000,000
text/html
crawl-data/CC-MAIN-2018-47/segments/1542039746847.97/warc/CC-MAIN-20181120231755-20181121013755-00124.warc.gz
965,456,851
15,575
# A Euclidean Challenge 1. Oct 10, 2011 ### mintparasol Hi forum, Here is a little challenge that I came up with that some of you may find interesting:- Using only a compass, ruler and pencil, can you draw a circle, of any diameter you wish, and divide its circumference exactly into 360 equal sections? It seems t...
1,105
4,218
{"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-2018-47
latest
en
0.94307
https://chem.libretexts.org/Courses/CSU_San_Bernardino/CHEM_4300%3A_Inorganic_Chemistry_(Mink)/02%3A_Symmetry_and_Group_Theory/2.01%3A_Symmetry_Elements_and_Operations
1,723,341,684,000,000,000
text/html
crawl-data/CC-MAIN-2024-33/segments/1722640843545.63/warc/CC-MAIN-20240811013030-20240811043030-00652.warc.gz
121,154,522
38,710
# 2.1: Symmetry Elements and Operations $$\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}\...
6,882
27,462
{"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.03125
4
CC-MAIN-2024-33
latest
en
0.201141
https://stats.stackexchange.com/questions/243635/combination-multiplication-and-joint-probability-of-independent-events-probabili
1,603,748,201,000,000,000
text/html
crawl-data/CC-MAIN-2020-45/segments/1603107892062.70/warc/CC-MAIN-20201026204531-20201026234531-00561.warc.gz
516,368,013
33,412
# Combination multiplication and joint probability of independent events probability Is there direct correspondence between the rule of multiplication of combinations and probability multiplication in case of independent events? For combinations, whichever cup I choose, I can chose any spoon, which makes me cups x sp...
284
1,346
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
4.03125
4
CC-MAIN-2020-45
latest
en
0.914168
https://openlab.citytech.cuny.edu/mat1175fa2011/day-11-systems-of-linear-equations-2-2/
1,660,714,049,000,000,000
text/html
crawl-data/CC-MAIN-2022-33/segments/1659882572833.95/warc/CC-MAIN-20220817032054-20220817062054-00293.warc.gz
420,652,684
24,092
# Day 11 – Systems of Linear Equations 2 Last time, we learned to solve systems of linear equations both graphically and using the substitution method.  Today we we will learn one more method of solving these problems, called the addition method (or sometimes the elimination method).  It is based on the principle that...
810
3,411
{"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.5625
5
CC-MAIN-2022-33
latest
en
0.953658
diagram-phfbwna.evmethkirche-ojk.de
1,606,262,339,000,000,000
text/html
crawl-data/CC-MAIN-2020-50/segments/1606141177607.13/warc/CC-MAIN-20201124224124-20201125014124-00661.warc.gz
25,666,247
8,192
# 1983 Yamaha Xj 750 Wire Diagram • Wire Diagram • Date : November 24, 2020 ## 1983 Yamaha Xj 750 Wire Diagram Yamaha Xj 750 Downloads 1983 Yamaha Xj 750 Wire Diagram yamaha xj 750 exhaust yamaha xj 750 41y yamaha xj 750 for sale yamaha xj 750 seca 1982 yamaha xj 750 maxim yamaha xj 750 restoration yamaha xj 750 se...
661
2,860
{"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-2020-50
latest
en
0.892347
https://www.coursehero.com/file/6718683/Differential-Equations-Solutions-110/
1,498,216,599,000,000,000
text/html
crawl-data/CC-MAIN-2017-26/segments/1498128320049.84/warc/CC-MAIN-20170623100455-20170623120455-00449.warc.gz
843,600,297
23,770
Differential Equations Solutions 110 # Differential Equations Solutions 110 - 120 Chapter 20... This preview shows page 1. Sign up to view the full content. This is the end of the preview. Sign up to access the rest of the document. Unformatted text preview: 120 Chapter 20. Solutions: Solution of Ordinary Differenti...
585
1,464
{"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-26
longest
en
0.490455
http://mathhelpforum.com/calculus/12686-help-related-rates-print.html
1,524,519,511,000,000,000
text/html
crawl-data/CC-MAIN-2018-17/segments/1524125946199.72/warc/CC-MAIN-20180423203935-20180423223935-00586.warc.gz
207,995,610
3,225
# Help Related rates • Mar 18th 2007, 08:07 AM Help Related rates Hi people this is my last problem so sorry for asking too much because its our finals day tommorow... 1.) A conical tent with no floor is to have a capacity of 1000cubic meters. Find the dimensions that minimize the amount of canvas required: 2.) A bo...
619
2,018
{"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-2018-17
latest
en
0.880428
http://www.enotes.com/homework-help/how-do-you-solve-following-3-x-3-4-x-2-4-4x-3-lt-6-222245
1,462,547,054,000,000,000
text/html
crawl-data/CC-MAIN-2016-18/segments/1461861831994.45/warc/CC-MAIN-20160428164351-00189-ip-10-239-7-51.ec2.internal.warc.gz
498,231,163
12,305
# How do you solve the following? 3/(x - 3) - 4/(x - 2) = -4 √4x + 3 < 6. Posted on We have to solve • 3/(x - 3) - 4/(x - 2) = -4 • sqrt (4x) + 3 < 6. Now 3/(x - 3) - 4/(x - 2) = -4 multiply all terms by (x-3)(x-2) => 3(x-2) - 4(x-3) = -4(x-3)(x-2) => 3x - 6 - 4x + 12 = -4 ( x^2 - 5x + 6) => 6 - x = -4x^2 + 20x...
1,005
1,817
{"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.34375
4
CC-MAIN-2016-18
longest
en
0.675127
https://nrich.maths.org/754
1,524,130,568,000,000,000
text/html
crawl-data/CC-MAIN-2018-17/segments/1524125936833.6/warc/CC-MAIN-20180419091546-20180419111546-00212.warc.gz
534,716,680
5,805
### Painting Cubes Imagine you have six different colours of paint. You paint a cube using a different colour for each of the six faces. How many different cubes can be painted using the same set of six colours? ### Tri-colour Six points are arranged in space so that no three are collinear. How many line segments ca...
1,425
3,577
{"found_math": false, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.8125
5
CC-MAIN-2018-17
longest
en
0.923639
http://www.jiskha.com/display.cgi?id=1298854565
1,495,934,507,000,000,000
text/html
crawl-data/CC-MAIN-2017-22/segments/1495463609404.11/warc/CC-MAIN-20170528004908-20170528024908-00181.warc.gz
678,437,876
4,307
posted by on . An m = 6.80-kg clay ball is thrown directly against a perpendicular brick wall at a velocity of 22.0 m/s and shatters into three pieces, which all fly backward, as shown in the figure. The wall exerts a force on the ball of 2670 N for 0.110 s. One piece of mass m1 = 2.80 kg travels backward at a velocit...
460
1,374
{"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-2017-22
latest
en
0.726462
https://web2.0calc.com/members/floccinaucini/
1,618,589,945,000,000,000
text/html
crawl-data/CC-MAIN-2021-17/segments/1618038088245.37/warc/CC-MAIN-20210416161217-20210416191217-00409.warc.gz
712,274,974
6,653
# floccinaucini Username floccinaucini Score 76 Membership Stats Questions 14 Answers 1 0 35 1 +76 ### Suppose $f(x)=\frac{3}{2-x}$. If $g(x)=\frac{1}{f^{-1}(x)}+9$, find $g(3)$. floccinaucini  Apr 8, 2021 0 25 1 +76 floccinaucini  Apr 6, 2021 0 38 1 +76 ### if f(x) is a function whose domain is [-1, 9], and g(x)...
634
1,630
{"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.578125
4
CC-MAIN-2021-17
latest
en
0.7676
https://eng.libretexts.org/Bookshelves/Civil_Engineering/Book%3A_Fluid_Mechanics_(Bar-Meir)/13%3A_Multi%E2%80%93Phase_Flow/13.7%3A_Homogeneous_Models/13.7.1%3A_Pressure_Loss_Components
1,675,793,066,000,000,000
text/html
crawl-data/CC-MAIN-2023-06/segments/1674764500628.77/warc/CC-MAIN-20230207170138-20230207200138-00296.warc.gz
246,172,698
28,134
# 13.7.1: Pressure Loss Components $$\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}\,}$$ $$\n...
612
1,872
{"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.90625
4
CC-MAIN-2023-06
latest
en
0.504364
https://hypernews.slac.stanford.edu/HyperNews/geant4/get/particles/383/1.html?inline=-1
1,596,765,229,000,000,000
text/html
crawl-data/CC-MAIN-2020-34/segments/1596439737050.56/warc/CC-MAIN-20200807000315-20200807030315-00239.warc.gz
344,657,864
5,350
Message: Re: Angle distribution from direction cosines Not Logged In (login) ## Re: Angle distribution from direction cosines Keywords: angle Forum: Particles Re: Angle distribution from direction cosines (valentina) Date: 04 Feb, 2008 From: G.A.P.Cirrone <G.A.P.Cirrone> Dear Valentina, perhaps this can be usefull ...
480
1,594
{"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-2020-34
latest
en
0.7584
http://jwilson.coe.uga.edu/EMAT6680Fa05/Schultz/Assignment08/Inscribed%20Triangles
1,369,231,863,000,000,000
text/html
crawl-data/CC-MAIN-2013-20/segments/1368701806508/warc/CC-MAIN-20130516105646-00051-ip-10-60-113-184.ec2.internal.warc.gz
150,921,772
2,398
An Interesting Relationship Between Inscribed Triangles by Kyle Schultz An Initial Construction To begin this investigation, construct Triangle ABC, it's circumcenter and circumcircle. Next, construct the angle bisectors of Angles A, B, and C and the point where each bisector intersects the circumcircle. Finally, c...
591
2,635
{"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-2013-20
longest
en
0.936852
https://www.coursehero.com/file/p2ld0gr/1-3x-24x-3-Multiply-the-firsts-3x-2-4x-3-3x-4x-12x-2-Multiply-the-outsides-3x/
1,603,565,037,000,000,000
text/html
crawl-data/CC-MAIN-2020-45/segments/1603107884322.44/warc/CC-MAIN-20201024164841-20201024194841-00029.warc.gz
682,599,088
639,366
1 3x 24x 3 Multiply the firsts 3x 2 4x 3 3x 4x 12x 2 Multiply the outsides 3x # 1 3x 24x 3 multiply the firsts 3x 2 4x 3 3x 4x 12x 2 This preview shows page 13 - 16 out of 16 pages. 1) (3x 2)(4x + 3) Multiply the “ firsts ( 3x 2)( 4x + 3) 3x 4x = 12x 2 Multiply the “ outsides ( 3x 2)(4x + 3 ) 3x 3 = 9x Multiply the ...
1,129
2,101
{"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.59375
5
CC-MAIN-2020-45
latest
en
0.65206
http://mathhelpforum.com/calculus/118714-find-limiting-velocity.html
1,508,362,293,000,000,000
text/html
crawl-data/CC-MAIN-2017-43/segments/1508187823114.39/warc/CC-MAIN-20171018195607-20171018215607-00831.warc.gz
209,032,144
13,086
# Thread: Find the limiting velocity 1. ## Find the limiting velocity This is a question i got, which i have NO CLUE how to solve, or what they are asking. Can I please get some help?? The velocity of a body of mass m falling from rest under the action of gravity is given by the equation $\mbox{v}= \sqrt {\frac{mg}{...
2,097
6,729
{"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": 46, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
3.984375
4
CC-MAIN-2017-43
longest
en
0.754529
http://illuminations.nctm.org/Lesson.aspx?id=814
1,429,362,744,000,000,000
text/html
crawl-data/CC-MAIN-2015-18/segments/1429246634333.17/warc/CC-MAIN-20150417045714-00153-ip-10-235-10-82.ec2.internal.warc.gz
126,365,392
26,001
## A Brownie Bake • Lesson 3-5 2 Students determine the amount of each ingredient needed to make brownies, and then they figure out how to divide the brownies evenly among their classmates. This lesson helps students reinforce their measurement skills in a practical situation. Preparing the Investigation Students s...
2,118
9,786
{"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-2015-18
longest
en
0.930863
http://electricaldarwaza.com/electrical-technology/how-to-calculate-electrical-power-in-watts/
1,611,400,643,000,000,000
text/html
crawl-data/CC-MAIN-2021-04/segments/1610703537796.45/warc/CC-MAIN-20210123094754-20210123124754-00336.warc.gz
30,640,425
9,837
# How to calculate electrical power in watts? Teaching how to calculate electrical power in watts seems obvious, since electrical power is only given in watts, isn’t it? In fact it is not so, there are other types of electrical power and several ways to calculate. We will cover in this article what are the types of po...
942
4,611
{"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-2021-04
latest
en
0.952156
https://www.brainkart.com/article/Summary_44150/
1,669,840,625,000,000,000
text/html
crawl-data/CC-MAIN-2022-49/segments/1669446710771.39/warc/CC-MAIN-20221130192708-20221130222708-00298.warc.gz
711,269,961
6,611
Home | | Maths 7th Std | Summary # Summary 7th Maths : Term 1 Unit 2 : Measurements : Summary Summary ● Parallelogram is a four sided closed shape in which opposite sides are both parallel and equal. Area of the Parallelogram = b × h sq. units, where b = base ; h = height. ● In a parallelogram if all the sides ar...
296
1,071
{"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-2022-49
longest
en
0.881887
https://numbersworksheet.com/ordering-numbers-worksheet/
1,708,575,623,000,000,000
text/html
crawl-data/CC-MAIN-2024-10/segments/1707947473690.28/warc/CC-MAIN-20240222030017-20240222060017-00493.warc.gz
453,953,139
14,593
# Ordering Numbers Worksheet The Negative Phone numbers Worksheet is a great way to start off training your kids the concept of unfavorable numbers. A poor quantity is any amount that is lower than absolutely no. It might be additional or subtracted. The minus sign signifies the negative variety. You can even compose ...
615
3,214
{"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-2024-10
longest
en
0.963161
https://hextobinary.com/unit/acceleration/from/microms2/to/ams2/600
1,719,255,054,000,000,000
text/html
crawl-data/CC-MAIN-2024-26/segments/1718198865482.23/warc/CC-MAIN-20240624182503-20240624212503-00899.warc.gz
265,347,318
15,617
# 600 Micrometer/Second Squared in Attometer/Second Squared Acceleration Micrometer/Second Squared Attometer/Second Squared 600 Micrometer/Second Squared = 600000000000000 Attometer/Second Squared ## How many Attometer/Second Squared are in 600 Micrometer/Second Squared? The answer is 600 Micrometer/Second Squared i...
1,802
6,795
{"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.546875
4
CC-MAIN-2024-26
latest
en
0.932093
http://www.all-science-fair-projects.com/science_fair_projects_encyclopedia/Radian
1,369,445,898,000,000,000
text/html
crawl-data/CC-MAIN-2013-20/segments/1368705310619/warc/CC-MAIN-20130516115510-00073-ip-10-60-113-184.ec2.internal.warc.gz
305,195,315
5,555
# All Science Fair Projects ## Science Fair Project Encyclopedia for Schools! Search    Browse    Forum  Coach    Links    Editor    Help    Tell-a-Friend    Encyclopedia    Dictionary # Science Fair Project Encyclopedia For information on any area of science that interests you, enter a keyword (eg. scientific met...
537
2,197
{"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": 5, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
4.09375
4
CC-MAIN-2013-20
latest
en
0.849222
https://codegolf.stackexchange.com/questions/223300/a-problem-of-rarity
1,621,253,574,000,000,000
text/html
crawl-data/CC-MAIN-2021-21/segments/1620243991772.66/warc/CC-MAIN-20210517115207-20210517145207-00314.warc.gz
197,682,731
37,002
# A problem of rarity [closed] Given a positive input $$\n > 0\$$, output the amout of two types based on their rarity. The two types are called $$\A\$$ and $$\B\$$, we know the followings: • $$\n\$$ is a limited input and the maximum is $$\nmax\$$ • At the start $$\B\$$ is twice as rare as $$\A\$$ • As the presence ...
1,153
3,314
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 0, "mathjax_tag": 0, "mathjax_inline_tex": 1, "mathjax_display_tex": 0, "mathjax_asciimath": 1, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "mat...
3.734375
4
CC-MAIN-2021-21
longest
en
0.802126
https://www.atozexams.com/mcq/maths/775.html
1,719,148,578,000,000,000
text/html
crawl-data/CC-MAIN-2024-26/segments/1718198862474.84/warc/CC-MAIN-20240623131446-20240623161446-00053.warc.gz
567,137,912
10,057
# If tn=1/4(n+2)(n+3) for n=1,2,3… then 1/t1+1/t2+1/t3+…..1/t2003= 1.  4006/3006 2.  4003/3007 3.  4006/3008 4.  4006/3009 4 4006/3009 Explanation : No Explanation available for this question # Let S(k)=1+3+5+….+(2k-1)=3+k2 Then which of the following is true 1.  s(1) is correct 2.  principle of mathematical ...
788
1,981
{"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-2024-26
latest
en
0.494547
http://www.studymode.com/essays/Dismath-1633938.html
1,524,821,434,000,000,000
text/html
crawl-data/CC-MAIN-2018-17/segments/1524127095762.40/warc/CC-MAIN-20180427075937-20180427095937-00344.warc.gz
506,621,089
19,647
# Dismath Topics: State diagram, Tree, Graph theory Pages: 20 (6653 words) Published: April 25, 2013 Trees and Networks Trees A connected graph that contains no simple circuits is called a tree. Trees were used as long ago as 1857, when the English mathematician Arthur Cayley used them to count certain types of chemic...
844
4,064
{"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-2018-17
latest
en
0.950468
http://gmatclub.com/forum/m23-q18-115958.html?fl=similar
1,485,295,697,000,000,000
text/html
crawl-data/CC-MAIN-2017-04/segments/1484560285289.45/warc/CC-MAIN-20170116095125-00107-ip-10-171-10-70.ec2.internal.warc.gz
118,314,189
50,582
M23 Q18 : GMAT Quantitative Section Check GMAT Club Decision Tracker for the Latest School Decision Releases http://gmatclub.com/AppTrack It is currently 24 Jan 2017, 14:08 ### GMAT Club Daily Prep #### Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questi...
467
1,662
{"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-2017-04
latest
en
0.798362
http://www.mathisfunforum.com/post.php?tid=18704&qid=246347
1,394,214,774,000,000,000
text/html
crawl-data/CC-MAIN-2014-10/segments/1393999649814/warc/CC-MAIN-20140305060729-00028-ip-10-183-142-35.ec2.internal.warc.gz
435,881,742
7,766
Discussion about math, puzzles, games and fun.   Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ ° You are not logged in. • Index •  » Help Me ! •  » How do I get an angle in (x,y) between two points? | Options bob bundy 2012-12-30 04:20:07 hi greenbug, Glad you got it sorted.  Now just add the sou...
2,325
7,449
{"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-2014-10
longest
en
0.834727
https://aakashsrv1.meritnation.com/cbse-class-9/maths/rs-aggarwal-2020-2021/triangles/textbook-solutions/11_1_3510_24370_252_63966
1,660,503,499,000,000,000
text/html
crawl-data/CC-MAIN-2022-33/segments/1659882572063.65/warc/CC-MAIN-20220814173832-20220814203832-00402.warc.gz
111,773,020
16,397
Rs Aggarwal 2020 2021 Solutions for Class 9 Maths Chapter 8 Triangles are provided here with simple step-by-step explanations. These solutions for Triangles are extremely popular among Class 9 students for Maths Triangles Solutions come handy for quickly completing your homework and preparing for exams. All questions a...
4,249
10,627
{"found_math": true, "script_math_tex": 0, "script_math_asciimath": 0, "math_annotations": 0, "math_alttext": 0, "mathml": 49, "mathjax_tag": 0, "mathjax_inline_tex": 0, "mathjax_display_tex": 0, "mathjax_asciimath": 0, "img_math": 0, "codecogs_latex": 0, "wp_latex": 0, "mimetex.cgi": 0, "/images/math/codecogs": 0, "ma...
4.8125
5
CC-MAIN-2022-33
latest
en
0.575397
https://gmatclub.com/forum/inequalities-243846.html
1,558,930,838,000,000,000
text/html
crawl-data/CC-MAIN-2019-22/segments/1558232260658.98/warc/CC-MAIN-20190527025527-20190527051527-00075.warc.gz
487,856,724
138,077
GMAT Question of the Day - Daily to your Mailbox; hard ones only It is currently 26 May 2019, 21:20 ### 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. Customize...
577
2,223
{"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-2019-22
latest
en
0.904125
https://www.jiskha.com/questions/22718/parrots-those-life-spance-is-no-longer-than-20-year-is-the-use-of-the-term-no-longer
1,627,592,830,000,000,000
text/html
crawl-data/CC-MAIN-2021-31/segments/1627046153897.89/warc/CC-MAIN-20210729203133-20210729233133-00651.warc.gz
868,304,210
4,889
# English parrots,those life spance is no longer than 20 year.... is the use of the term "no longer" correct in this sentence? or is there any other mistakes in this sentence? thx. There are several spelling and word choice errors, an error of fact, AND it is not a sentence. spance should be span those should be wh...
859
3,135
{"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-31
latest
en
0.941536