Search is not available for this dataset
url
string
text
string
date
timestamp[s]
meta
dict
https://mathematica.stackexchange.com/questions/176926/plotting-histograms-with-bin-count-multiplied-by-some-factor
# Plotting histograms with bin count multiplied by some factor Consider, for example Histogram[RandomVariate[NormalDistribution[0, 0.6], 1000]] which gives me, Now, is there a way to change the bin counts, as in, I want to multiply some factor to the bin counts (lets say "0.5"). meaning there should be only about 70 events(y-axis) at -0.5 (x-axis) instead of about 140 events. how do I reflect this on this histogram? --Thanks much! The function fh in Histogram[data, bspec, fh] is applied to two arguments: a list of bins {{b1, b2}, {b2, b3}, ...}, and a corresponding list of counts {c1, c2, ...}. The function should return a list of heights to be used for each of the ci]. So you just need to use a height function to scale the list of counts: Histogram[data, Automatic, .5 #2 &] • Perfect! just what I was looking for! Thank you so so much! – nick Jul 8 '18 at 20:14 An alternative approach is to use the option ChartElementFunction with a function that modifies the built-in functions to change the appropriate element of rectangle coordinates: SeedRandom[1] data = RandomVariate[NormalDistribution[0, 0.6], 1000]; Histogram[data, {-2, 2, .2}, ChartElementFunction -> (ChartElementData["Rectangle"][{{1, 1}, {1, .5}} #, ##2] &)] The advantages of this approach are (1) you can use other built-in height functions such as "PDF" without additional work, (2) you can have multiple datasets each with its own scaling (as long as you don't need them "Stacked"), and (3) you can use the tooltips to see the unscaled values of bar heights. The simple method above works only for the default setting ("Bottom") for the option BarOrigin. The following function makes this approach work for non-default BarOrigin settings: ClearAll[ceF] ceF[sc_ : 1][cedf_ : "Rectangle", o : OptionsPattern[]] := Module[{origin = ChartingChartStyleInformation["BarOrigin"], box = #}, Switch[origin, Bottom, box[[2, 2]] = sc box[[2, 2]], Top, box[[2, 1]] = sc box[[2, 1]], Left, box[[1, 2]] = sc box[[1, 2]], Right, box[[1, 1]] = sc box[[1, 1]]]; ChartElementDataFunction[cedf, o][box, ##2]] &; Examples: Histogram[data, {-2, 2, .2}, "PDF", ImageSize -> 300, BarOrigin -> Bottom, ChartElementFunction -> ceF[.5][] ] Histogram[data, {-2, 2, .2}, ColorFunction -> "Rainbow", ImageSize -> 200, BarOrigin -> #, ChartElementFunction -> ceF[.5][]] & /@ {Bottom, Top, Left, Right} // Grid[Partition[#, 2], Dividers -> All] & Multiple datasets each with its own scaling: Histogram[{data, data}, {-2, 2, .2}, ChartElementFunction -> {ceF[.5][], ceF[.8][]}] `
2019-11-14T07:23:59
{ "domain": "stackexchange.com", "url": "https://mathematica.stackexchange.com/questions/176926/plotting-histograms-with-bin-count-multiplied-by-some-factor", "openwebmath_score": 0.2726743817329407, "openwebmath_perplexity": 6517.680523303301, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9572778012346834, "lm_q2_score": 0.8774767858797979, "lm_q1q2_score": 0.8399890482214901 }
http://math.stackexchange.com/questions/174108/difference-between-space-and-algebraic-structure
# Difference between “space” and “algebraic structure” What is the difference between a "space" and an "algebraic structure"? For example, metric spaces and vector spaces are both spaces and algebraic structures. Is a group a space? Is a manifold a space or an algebraic structure, both or neither? - A metric space has no inherent algebraic structure. – Brian M. Scott Jul 23 '12 at 7:00 As I understand it an algebraic structure with at least one operation defined on it. Isn't a metric space an algebraic structure where that operation is "distance", with the regular axioms? – Aqwis Jul 23 '12 at 7:08 The metric isn’t in general an operation on the space $X$: it doesn’t take values in $X$. – Brian M. Scott Jul 23 '12 at 7:10 Guess that the terminology is not too canonical, but I'd say that an "algebraic structure" on a set $X$ is the datum of one or more possibly interacting operations on $X$. By a "space" $X$ we mean a set with some extra-structure of geometric type, such as a metric or a topology. – Andrea Mori Jul 23 '12 at 8:06 If we take "algebraic structure" to be a synonym for "algebra" (in the sense of universal algebra), then an algebraic structure is a set $X$, together with a family of operations on $X$. Recall that given a set $X$, an "operation" on $X$ is a function $X^{\alpha}\to X$, where $\alpha$ is an ordinal. Such a function is called an $\alpha$-ary operation; when $\alpha$ is a natural number, the operation is said to be "finitary" (takes only finitely many arguments). Sometimes, algebraic structures are further enriched with (i) "partial operations" (functions defined on a subset $A\subseteq X^{\alpha}$ rather than all of $X^{\alpha}$), or (ii) $\beta$-ary relations (subsetes of $A^{\beta}$). We can also impose identities (requires that the operations/relations satisfy certain properties such as commutativity, etc). In this sense, vector spaces, groups, rings, fields, etc. are all (enriched) "algebras"; metric spaces are not. "Space" is a bit fuzzier; I would not put "vector spaces" in the class, restricting it rather to things like topological spaces, manifolds, metric spaces, normed spaces, etc. Now, one should realize that you this does not have to be a dichotomy: you can have structures that include both kinds of data: a topological group is both an algebraic structure (a group) and a space (topological space), in a way that makes both structures interact with one another "nicely". Normed vector spaces are both algebraic structures (vector spaces), and "spaces" (normed spaces, hence metric, hence topological), where, again, we ask that the two structures interact nicely. In fact, there is a lot of interesting stuff that can be obtained by having the two kinds of structures and "playing them off against one another." For example, Stone Duality and Priestley Duality exploit this kind of "structured topological space" (a topological space that also has operations, partial operations, and relations that interact well with the topology). -
2013-05-22T23:38:49
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/174108/difference-between-space-and-algebraic-structure", "openwebmath_score": 0.9365767240524292, "openwebmath_perplexity": 470.06294377812657, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.957277806109987, "lm_q2_score": 0.8774767762675405, "lm_q1q2_score": 0.8399890432978551 }
https://math.stackexchange.com/questions/552854/volume-of-a-sphere-with-three-holes-drilled-in-it
# Volume of a sphere with three holes drilled in it. Suppose that the sphere $x^2+y^2+z^2=9$ has three holes of radius $1$ drilled through it. One down the $z$-axis, one along the $x$-axis, and one along the $y$-axis. What is the volume of the resulting solid? I can do it for two holes but I'm stuck on three. • What makes it more difficult with three holes? – M.B. Nov 5 '13 at 12:58 The 3 holes such drilled form an intersection of 3 cylinders in the center, plus 6 cylinder/cap pairs. I will treat each problem in turn. Here is a picture of the situation: Intersection of 3 cylinders The problem is to find the volume of three orthogonal, intersecting cylinders: \begin{align}x^2+y^2&=1\\x^2+z^2&=1\\ y^2+z^2&=1\end{align} The intersection region is pictured below: We note that there are two ways to bound the volume over $x$: \begin{align}|x| &\le \sqrt{1-y^2}\\ |x| &\le \sqrt{1-z^2}\end{align} Since we are computing the volume of the interior of the region defined by these bounds, it stands to reason that $|x|$ must be bounded by the smaller of these two bounds: $$|x| \le \min{\left(\sqrt{1-y^2},\sqrt{1-z^2}\right)}$$ so that the volume integral takes the form $$\int_{-1}^1 dz \: \int_{-\sqrt{1-z^2}}^{\sqrt{1-z^2}} dy \: \int_{-m(y,z)}^{m(y,z)} dx = 2 \int_{-1}^1 dz \: \int_{-\sqrt{1-z^2}}^{\sqrt{1-z^2}} dy \: m(y,z)$$ Below is a representation of the integration region for this integral: The reason for the lines is because $\sqrt{1-y^2} \lt \sqrt{1-z^2}$ according to whether $|y| \gt |z|$. The integral is then symmetric over the regions bounded by the sloped lines; thus, we need only consider one such region and the others will yield the same result. Let's then consider the region surrounding the positive $y$ (horizontal) axis in the above figure. In this case, $m(y,z) = \sqrt{1-y^2}$; when we use polar coordinates, the integral becomes \begin{align}8 \int_{-\pi/4}^{\pi/4} d\phi \: \int_0^1 d\rho \, \rho \sqrt{1-\rho^2 \cos^2{\phi}} &= 4 \frac{2}{3} \int_{-\pi/4}^{\pi/4} d\phi \: \left( 1- \left|\sin^3{\phi}\right|\right) \sec^2{\phi}\\ &= \frac{16}{3} - \frac{16}{3} \int_0^{\pi/4} d\phi \: \sin^3{\phi} \, \sec^2{\phi}\\ &= 8 \left (2 - \sqrt{2}\right ) \end{align} Cylinder and cap The cross-sectional geometry here corresponds to a rectangle of width $2$ inscribed symmetrically about a diameter of a circle of radius $3$, with the cap corresponding to the resulting circular segment. The distance from center of circle to short edge of rectangle is $\sqrt{3^2-1^2}=2 \sqrt{2}$, so the height of the cylinder outside the intersection above is $2 \sqrt{2}-1$. The volume of a cylinder is thus $\pi \cdot 1^2 \cdot (2 \sqrt{2}-1) = (2 \sqrt{2}-1) \pi$. The volume of the cap is the difference between the volume of the spherical sector subtended by the solid angle defined by the hole and the corresponding cone. The volume of the spherical sector is given by $\frac13 (3)^3 \Omega$, where $\Omega$ is the solid angle. We find $\Omega$ by integrating over angle in spherical coordinates: $$\Omega = \int_0^{\theta_0} d\theta \, \sin{\theta} \, \int_0^{2 \pi} d\phi = 2 \pi (1-\cos{\theta_0})$$ where $\sin{\theta_0} = \frac13 \implies \cos{\theta_0} = 2 \sqrt{2}/3$. Thus the volume of a sector is $6\pi (3-2 \sqrt{2})$. The volume of a cone is $\frac13 \pi (1^2) 2 \sqrt{2} = 2 \sqrt{2} \pi/3$. Thus, the volume of a cap is $$6\pi (3-2 \sqrt{2}) - \frac{2 \sqrt{2} \pi}{3} = \left (18 - \frac{38 \sqrt{2}}{3}\right )\pi$$ Putting it all together The volume of the holes is $6$ times the sum of the volumes of the cylinder and cap, plus the volume of the intersection: $$V_{\text{holes}} = 6 \pi (2 \sqrt{2}-1) + \left (108- 76 \sqrt{2}\right )\pi + 8 (2-\sqrt{2})= (102-64\sqrt{2})\pi + 8 (2-\sqrt{2})$$ The volume left over after drilling is therefore the volume of the sphere minus the volume of the holes, or $$V = \frac{4 \pi}{3} (3)^3 - V_{\text{holes}} = (64 \sqrt{2}-66) \pi - 8 (2-\sqrt{2}) \approx 72.31$$ compared with the original volume of the sphere $36 \pi \approx 113.1$. • you should know that the intersection area is not like a cube. i think you have missed to compute the additional volume to find the total volume of holes. help me if i am wrong. – Bhaskara-III Sep 4 '16 at 14:49 • @Bhaskara-III When did I say it was like a cube? My diagram clearly illustrates what the volume is. – Ron Gordon Sep 4 '16 at 15:02 • you have considered 6 cylinders each of length $2\sqrt 2-1$ outside the intersection region which have flat circular ends of radius $1$. actually, you can't separate them with flat faces, in reality each cylinder has one end as flat circle of radius $1$ while other as non planar complicated shape i.e. not as a flat circle. the volume of each cylinder is not equal to $\color{red}{\pi \cdot1^2\cdot (2\sqrt 2-1)}$ that's why your answer has error in the value. – Bhaskara-III Sep 8 '16 at 7:02 • The figure was generated in Mathematica and is based on no assumption. I dispute your assertion. If you are going to stick with it, then why don't you give us an idea of what this "complicated surface" looks like. – Ron Gordon Sep 8 '16 at 13:19 • you may have a close look on my picture added in the answer which shows that the common region of three cylinders does not have any flat face. – Bhaskara-III Sep 11 '16 at 10:35 It is just a hint to visualize the region of intersection inside the sphere of radius 3. here is picture showing that the region of intersection of three cylinders ,each having radius 1, doesn't have any flat face. volume of intersection region has been calculated in the answer as $8(2-\sqrt 2)$. Now, how to calculate the volume of remaining region of holes? in the answer, it has been assumed that the faces of intersection region are flat. i don't know why. please someone clarify my doubt.
2019-11-14T04:15:02
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/552854/volume-of-a-sphere-with-three-holes-drilled-in-it", "openwebmath_score": 0.951598048210144, "openwebmath_perplexity": 338.96203726818834, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.990587412635403, "lm_q2_score": 0.847967764140929, "lm_q1q2_score": 0.8399861934785905 }
http://mathhelpforum.com/algebra/134295-range-function.html
# Thread: The range of this function? 1. ## The range of this function? The function is f(x)= [6/(x+2)]-3 I wanted to find the range, also could you please post your working as I want to understand how you came to your answer, thanks. Regards Ossy 2. $f(x)= \frac{6}{x+2}-3$ Where is $f(x)$ undefined? Naturally we look for such things as division by $0.$ When will we have division by $0?$ Clearly when $x+2 = 0,$ $i.e.,$ when $x= -2.$ So $f(x)$ take on all values except when $x = -2.$ What is your range? 3. Originally Posted by osmosis786 The function is f(x)= [6/(x+2)]-3 I wanted to find the range, also could you please post your working as I want to understand how you came to your answer, thanks. Regards Ossy one method of determining the range of a function is to determine the domain of the function's inverse. of course, this depends on whether the inverse exists and is relatively easy to find. $y = \frac{6}{x+2} - 3$ swap variables ... $x = \frac{6}{y+2} - 3$ solve for $y$ ... $x+3 = \frac{6}{y+2}$ $y+2 = \frac{6}{x+3}$ $y = \frac{6}{x+3} - 2$ this is the inverse function ... note that its domain is all real values $x$ such that $x \ne -3$. so ... the range of the original function is all real $y$ , $y \ne -3$. 4. Hello, osmosis786! When possible, I like to sketch a graph. Find the range of: . $f(x)\:=\:\frac{6}{x+2} -3$ The graph of . $y \,=\,\frac{1}{x}$ .looks like this: Code: | |* | | * | * | * | * --------------+---------------- * | * | * | * | | *| | Domain: . $x\,\neq\,0$ . Range: . $y\,\neq\,0$ The graph of . $y \:=\:\frac{1}{x+2}$ . . is the previous graph moved two units to the left. Code: : | :* | : | : * | : *| : |* : | * --------------+---+---------------- * -2 | * : | * : | * : | : | *: | : | Domain: . $x\,\neq\,-2$ . Range: . $y\,\neq\,0$ The graph of . $y \:=\:\frac{6}{x+2}$ . rises more "steeply" . . and "flattens slower", but has the same basic shape. The graph of . $y \:=\:\frac{6}{x+2} - 3$ . is the previous graph lowered 3 units. Code: : | :* | : | : * | --------------+--*|-------------- : |* : | * - - - - - - o - | - - - - - - * (-2,-3)| * : | * : | * : | : | *: | : | Domain: . $x\,\neq\,-2$ . Range: . $y \,\neq\,-3$
2016-08-27T10:15:11
{ "domain": "mathhelpforum.com", "url": "http://mathhelpforum.com/algebra/134295-range-function.html", "openwebmath_score": 0.8695751428604126, "openwebmath_perplexity": 2220.7708103413433, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9905874098566368, "lm_q2_score": 0.8479677602988601, "lm_q1q2_score": 0.8399861873163813 }
https://math.stackexchange.com/questions/3760040/number-of-non-decreasing-sequence-a-i-such-that-every-a-i-geq-i
# Number of non-decreasing sequence $\{a_i\}$ such that every $a_i \geq i$ Find the number of non-decreasing sequences $$a_1, a_2, a_3, a_4, a_5$$ such that $$a_i \geq 1$$, $$a_5 \leq 20$$ and $$a_i \geq i$$; ## My attempt I tried to use the Inclusion-Exclusion principle, the number of non-decreasing sequences $$a_1, a_2, a_3, a_4, a_5$$ such that $$a_i \geq 1$$,$$a_5 \leq 20$$ is $${24\choose5}$$, However, I am having trouble counting the number of such sequences so that there is some $$a_i \lt i$$. I tried to seperate them into $$4$$ cases $$\{a_1, 1, a_3, a_4, a_5\}$$, $$\{a_1, a_2, 2, a_4, a_5\}$$, $$\{a_1, a_2, a_3, 3, a_5\}$$, $$\{a_1, a_2, a_3, a_4, 4\}$$, but there are lots of overlapping cases and I do not want to handle them. ## Question • Should I use Inclusion-Exclusion principle here? If yes, is there any smarter way than mine? • What is the most efficient way to find the answer? • Hint: Consider all sequences of distint numbers and order them-they automatically fulfill the requirements, you have $\binom{20,5}$ possibilities, now consider the cases of multiple equals seperately. – IMOPUTFIE Jul 17 '20 at 11:31 • @IMOPUTFIE Thanks for the hints, but I have another question, consider the case of the form $\{a,a,b,c,d\}$, I should use inclusion-exclusion right? Because the only case for this to be invalid is $\{1,1,a,b,c\}$ – Learning Mathematics Jul 17 '20 at 11:48 • @IMOPUTFIE Can you elaborate? While I understand Brain's approach, I would really want to know how do you consider the cases of multiple in an organised way – Learning Mathematics Jul 18 '20 at 11:36 I found it easiest to convert it to a problem in counting paths on the integer lattice in the plane: it can be solved using the reflection method, one of the standard ways to show that $$C_n=\frac1{n+1}\binom{2n}n$$, where $$C_n$$ is the $$n$$-th Catalan number. Suppose that $$\langle a_1,\ldots,a_5\rangle$$ is such a sequence. We can interpret it as directions for a walk on the integer lattice in the plane, starting at the origin: we first take $$a_1$$ steps north to $$\langle 0,a_1\rangle$$, then one step east to $$\langle 1,a_1\rangle$$, then $$a_2-a_1$$ steps north to $$\langle 1,a_2\rangle$$ and one step east to $$\langle 2,a_2\rangle$$, and so on, finishing by taking $$20-a_5$$ steps north from $$\langle 5,a_5\rangle$$ to $$\langle 5,20\rangle$$; the requirement that each $$a_k\ge k$$ is then the requirement that this path never drop below the diagonal $$y=x$$. Moreover, each NE path (i.e., a path using only steps to the north and to the east) from $$\langle 0,0\rangle$$ to $$\langle 5,20\rangle$$ that never drops below the diagonal corresponds to a unique sequence $$\langle a_1,\ldots,a_5\rangle$$ satisfying the conditions of the problem, so our problem reduces to counting such paths. Suppose that a path first drops below the diagonal at $$\langle k,k-1\rangle$$; after that point it must take $$5-k$$ steps to the east and $$21-k$$ to the north. If we reflect it in the diagonal, we get a path starting at $$\langle k,k-1\rangle$$ and taking $$21-k$$ steps to the east and $$5-k$$ steps north and thus ends at $$\langle 21,4\rangle$$. Conversely, any NE path from $$\langle 0,0\rangle$$ to $$\langle 21,4\rangle$$ must stay on or above the diagonal until it hits a point of the form $$\langle k,k-1\rangle$$, and reflecting the remainder of the path in the diagonal gives us a path from $$\langle 0,0\rangle$$ to $$\langle 5,20\rangle$$ that first drops below the diagonal at $$\langle k,k-1\rangle$$. There are clearly $$\binom{25}5$$ NE paths from $$\langle 0,0\rangle$$ to $$\langle 5,20\rangle$$. There is a bijection between those that drop below the diagonal and NE paths from $$\langle 0,0\rangle$$ to $$\langle 21,4\rangle$$, and there are $$\binom{25}4$$ of those, so there are $$\binom{25}5-\binom{25}4=53130-12650=40480$$ NE paths from $$\langle 0,0\rangle$$ to $$\langle 5,20\rangle$$ that do not drop below the diagonal. More generally, the number of non-decreasing sequences $$a_1,\ldots,a_n$$ such that $$a_1\ge 1$$, $$a_k\ge k$$ for $$k=1\ldots,n$$, and $$a_n\le m$$ is $$\binom{n+m}n-\binom{n+m}{n-1}=\binom{n+m}n-\frac{n}{m+1}\binom{n+m}n=\frac{m+1-n}{m+1}\binom{n+m}n\;.$$ When $$m=n$$ this reduces to $$C_n=\frac1{n+1}\binom{2n}n$$.
2021-08-01T18:34:30
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3760040/number-of-non-decreasing-sequence-a-i-such-that-every-a-i-geq-i", "openwebmath_score": 0.7629914283752441, "openwebmath_perplexity": 117.44973990160902, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9905874115238967, "lm_q2_score": 0.8479677583778258, "lm_q1q2_score": 0.8399861868272115 }
http://math.stackexchange.com/questions/454583/volume-of-cube-section-above-intersection-with-plane
# Volume of cube section above intersection with plane Suppose we have a unit cube (side=1) and a plane with equation $x+y+z=\alpha$. I'd like to compute the volume of the region that results once the plane sections the cube (above the plane). There are three cases to analyze, and I can't quite visualize one of them. Case 1: $0 \le \alpha < 1$ In this case, the section looks like a triangle, and the volume of interest is 1 minus the volume of the lower left tetrahedron, i.e., $$V = 1 - \int_0^\alpha \int_0^{\alpha-x} \int_0^{\alpha-x-y} dz\,dy\,dx = 1 - \frac{\alpha^3}{6}.$$ Case 3: $2 < \alpha \le 3$. Here, the section is again a triangle, and the volume of interest is the upper right tetrahedron, i.e., $$V = \int_{\alpha-2}^1 \int_{\alpha-x-1}^1 \int_{\alpha-x-y}^1 dz\,dy\,dx = \frac{(3-\alpha)^3}{6}.$$ Case 2: $1 \le \alpha \le 2$. This is where I'm sort of stuck. The section is a hexagon, with one of the inequalities being $\alpha-x-y \le z \le 1$, hence the innermost integral should be $\int_{\alpha-x-y}^1 dz$. The projection of the hexagon slice onto the $xy$-plane is described by $y \ge \alpha-1-x$ and $y \le \alpha-x$. Hence, the area of the hexagon projection is $$A = \int_0^{\alpha-1} \int_{\alpha-x-1}^1 dy\,dx + \int_{\alpha-1}^1 \int_0^{\alpha-x} dy\,dx$$ Question: When I move from $A$ to $V$ am I allowed to distribute the innermost integral between the summing terms, i.e. is it correct to write $$V = \int_0^{\alpha-1} \int_{\alpha-x-1}^1 \int_{\alpha-x-y}^1 dz\,dy\,dx + \int_{\alpha-1}^1 \int_0^{\alpha-x} \int_{\alpha-x-y}^1 dz\,dy\,dx \quad ??$$ If not, what's the approach? Note that there's a neat connection between this problem and figuring out the CDF of a sum of a random variable that has triangular distribution with support on $[0,2]$ and a random variable with uniform distribution on $[0,1]$ (assuming independence). Hence, I know what the answer should be for Case 2 because I worked out the convolution, but I just want to figure out the answer geometrically as well. - Are you certain that it's a pentagon and not a hexagon? – abiessu Jul 29 '13 at 4:52 I think it's a pentagon, because the bottom of the cube is not touched by the slice. I may be wrong. – baudolino Jul 29 '13 at 4:54 If I recall the slicing correctly, you get triangles hexagons triangles when you view the cross-section of a cube as it passes from corner to corner through a surface... Is this a different interpretation from what you are describing? – abiessu Jul 29 '13 at 4:58 I don't think you can get a pentagon by slicing a cube (though I can't prove this). – bubba Jul 29 '13 at 5:39 You're right about it being a hexagon after all (because the plane rests on $xy$ as well). However, in general, getting a pentagon is also possible (the section looks like a baseball diamond). Just make the cut starting at some height $z$ above the base and go at an angle so that you exit the cube on the top facet, but beyond that square's diagonal. – baudolino Jul 30 '13 at 0:24 For $1 \le \alpha \le 2$, it is much easier to visualize the integral by subtracting instead of adding pieces of the volume. As shown in the picture below, when $1 \le \alpha \le 2$, the volume of cube section below intersection of the plane $x + y + z = \alpha$ is the difference of the volume of one big tetrahedron with width/height/depth $= \alpha$ with three smaller ones with width/height/depth $= \alpha-1$. So the volume above the intersection becomes $$1 - \left( \frac16 \alpha^3 - 3 ( \frac16 (\alpha-1)^3 )\right) = 1 - \frac16 \alpha^3 + \frac12 (\alpha-1)^3$$ Update About the question whether this argument can be extended to higher dimension, the answer is yes. Let's look at the 3-dimension $2 \le \alpha \le 3$ case first. As one increases $\alpha$ beyond $2$, the three tetrahedron in first figure start overlap. As shown in second figure, the intersection of the three tetrahedra are now three even smaller tetrahedra of width/height/depth = $\alpha -2$. Previous way to compute the "volume" of cube section below the plane $x + y + z = \alpha$ now subtract too much from this three even smaller tetrahedron. One need to add them back. As a result, the volume above the plane becomes: \begin{align}&1 - \left( \frac16 \alpha^3 - 3(\frac16 (\alpha-1)^3 + 3(\frac16 (\alpha-2)^3 \right)\\ = & 1 - \frac16 \alpha^3 + \frac12 (\alpha-1)^3 - \frac12 (\alpha-2)^3\\ = & \frac{(3-\alpha)^3}{6} \end{align} Let us switch to the $k$-dimension case. To compute the "volume" of the hypercube section above the hyperplane $x_1 + \ldots + x_k = \alpha$, the first step is to subtract the volume of a $k$-simplex of size $\alpha$ from 1. 1. if $\alpha \le 1$, we are done. 2. if $\alpha > 1$, we over subtract the volume of $\binom{k}{1}$ simplices of size $\alpha-1$ and need to add them back. 3. if $\alpha > 2$, the $\binom{k}{1}$ simplices of size $\alpha-1$ in step 2 intersect and the intersection is a union of $\binom{k}{2}$ $\;k$-simplices of size $\alpha-2$. This means in step 2, we have added back too much and need to subtract the volume again. Repeat these arguments and notice in the middle of the process, we need to either add or subtract the volumes of $\binom{k}{i}$ $\;k$-simplices of size $\alpha-i$. The "volume" of interest finally becomes: $$1 -\sum_{i=0}^{\lfloor \alpha \rfloor} (-1)^i \binom{k}{i} \frac{(\alpha-i)^k}{k!}$$ - This is a great way to think about it. Am I correct in asserting that one can expand this argument so that on a $[0,1]^k$ hypercube the "volume" of interest should be given by $$V = 1- \dfrac{1}{k!}\sum_{i=0}^{\lfloor \alpha \rfloor} {(-1)^i \binom{k}{i} (\alpha-i)^k} \quad ?$$ – baudolino Jul 30 '13 at 22:16 +1. Good idea, and nice picture. – bubba Jul 31 '13 at 1:45 Put $\alpha:=1+\beta$ with $0<\beta<1$. Then the plane $x+y+z=1+\beta$ cuts the top face of the cube in the segment connecting $(0,\beta)$ with $(\beta,0)$ at $z$-level $1$, and cuts the bottom face of the cube in the segment connecting $(\beta,1)$ with $(1,\beta)$ at $z$-level $0$. Consider the vertical stalk through a fixed point $(x,y)$ on the bottom face $Q$ of the cube. It intersects your polyhedron $P$ in a vertical segment whose length $\ell(x,y)$ is given by $$\ell(x,y)=\cases{0&(x+y<\beta) \cr x+y-\beta\quad&(\beta\leq x+y\leq \beta+1) \cr 1&(x+y>\beta+1)\cr}\ .$$ The volume of $P$ is then given by \eqalign{{\rm vol}(P)&=\int\nolimits_Q \ell(x,y)\ {\rm d}(x,y)\cr &=\int_0^\beta\int_{\beta-x}^1 (x+y-\beta)\ dy\ dx+\int_\beta^1\int_0^{1+\beta-x}(x+y-\beta)\ dy\ dx +{1\over2}(1-\beta)^2\ .\cr} - This can be interpreted as trying to find $1$ minus the CDF of the sum of three uniformly distributed random variables in $[0, 1]$. The PDF is the quadratic B-spline given by $$f(x)=\begin{cases} \frac{x^2}{2} & x\in[0,1] \\ \frac{x^2}{2} - \frac{3(x-1)^2}{2} & x\in[1,2]\\ \frac{x^2}{2} - \frac{3(x-1)^2}{2} +\frac{3(x-2)^2}{2} & x\in[2,3] \end{cases}$$ The CDF follows from this by integration. - Box splines, perhaps? – bubba Jul 29 '13 at 10:49 Thank you, I have mentioned this solution approach in my question. I want to derive the answer in another fashion, using geometrical intuition. – baudolino Jul 30 '13 at 0:25 The object created by slicing is a polyhedron, obviously. Then, the volume of a polyhedron can be computed conveniently by decomposing it into tetrahedra and adding up the (signed) volumes of these tetrahedra. You can find an explanation of the technique in this document. There is also a paper by Michael Kallay on the same subject that gives slightly simpler formulae. Ask again if this is of interest and you can't find it. All of this is still computation of volume intergals, really. But, in the case of tetrahedra, the values of the integrals can be expressed by simple closed-form formulae, so the integration is somewhat hidden. You'll still need to consider several cases (depending on where/how the plane slices the cube). Actually, I think there are three cases, depending on whether the planar slice has three, five, or six sides. These are shown in the picture below: The blue and brown slices are 3-sided, the red and green ones are 5-sided, and the pink one is 6-sided. - I had the same problem and I came up with the following very simple (and very implicit) formula (I'm unfamiliar with stackexchange's maths notation, forgive me for posting Mathematica code): volPart[q___, r_] := Module[{v, d, t, h}, v = Select[Chop[{q}], (# =!= 0) &]; d = Length[v]; t = Tuples[{-1, 1}, d]; h = (t/2).v + r; (HeavisideTheta[h] h^d).(Times @@@ t)/(d! Times @@ v) ] The return value of volPart[q1, q2, ..., r] should be a volume of a part of the unit hypercube centered at $\{0, 0, ...\}$ above the hyper-plane $x1 q1 + x2 q2 + ... + r > 0$. By appropriate scaling and offsetting the arguments, the formula could be generalised to other cases. For zero valued numerical coefficients in linear form the formula effectively reduces to lower dimension case. For symbolic coefficients approaching zero, the limit must be taken, though. The basic idea is that the volume above the hyper-plane for fixed arguments is a linear combination of vertices' "heights" above (but only these above) the hyper-plane raised to the power of effective dimension. Note the alternating sign for each connected vertex (Times @@@ t). In your particular case this reduces to: $$\frac{\alpha^3{\theta}(-\alpha)+3(1-\alpha)^3{\theta}(1-\alpha)-3(2-\alpha)^3{\theta}(2-\alpha)+(3-\alpha)^3{\theta}(3-\alpha)}{6}$$ By expanding $\theta$, this could also be rewritten as: $$\begin{cases} 1 & \alpha \le 0\\ 1-\frac{\alpha^3}{6} & 0 < \alpha \le 1 \\ \frac{\alpha^3}{3}-\frac{3 \alpha^2}{2}+\frac{3 \alpha}{2}+\frac{1}{2} & 1 < \alpha \le 2 \\ -\frac{(\alpha-3)^3}{6} & 2 < \alpha \le 3 \\ 0 & 3 < \alpha\end{cases}$$ -
2016-05-24T23:47:55
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/454583/volume-of-cube-section-above-intersection-with-plane", "openwebmath_score": 0.8820827007293701, "openwebmath_perplexity": 307.7834667011739, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9814534392852384, "lm_q2_score": 0.8558511451289037, "lm_q1q2_score": 0.8399780499029723 }
https://math.stackexchange.com/questions/2180685/find-matrix-p-such-that-p-1ap-b
# Find matrix $P$ such that $P^{-1}AP=B$ Given $$A = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 2 & -3 \\ 1 & 3 & 2 \end{bmatrix}$$ $$B= \begin{bmatrix} 1 & 0 & 0 \\ 0 & 2 & -3 \\ 0 & 3 & 2 \end{bmatrix}$$ find $P$ such that $P^{-1} A P = B$. Firstly I said that $AP=PB$ Solved the 9 equations in 9 unknowns. and got that: $$P= \left( \begin{array}{ccc} -10x & 0 & 0 \\ 3x & y & z \\ x & -z & y \end{array} \right)$$ Then I used computer to find $P^{-1}$ in terms of those unknowns and plugged it back in to $P^{-1}AP=B$ Compared the coefficients and i end up with $B= \left( \begin{array}{ccc} 1 & 0 & 0 \\ -z/10x & 2 & -3 \\ 1-y/10x & 3 & 2 \end{array} \right)$ Set $x=1$, $y=10$, $z=0$ and indeed $P^{-1}AP=B$ The doubts I am having is the fact that P is not unique. I could set x,y,z to different numbers. Can anyone explain this? Thank you. • Left multiply both sides by $P$? Is there a better method? – Scavenger23 Mar 10 '17 at 15:16 • That is very true. Thank you. I believe it won't change anything no matter which way i do it? – Scavenger23 Mar 10 '17 at 15:17 • Suppose that $P$ solves your problem, then $\alpha P$ will also solve it for any $\alpha \neq 0$ so the solution is never unique. – Surb Mar 10 '17 at 16:14 Using SymPy: >>> from sympy import * >>> X = MatrixSymbol('X',3,3) >>> A = Matrix([[ 1, 0, 0], [ 0, 2,-3], [ 1, 3, 2]]) >>> B = Matrix([[ 1, 0, 0], [ 0, 2,-3], [ 0, 3, 2]]) >>> simplify(Matrix(A*X - X*B)) Matrix([ [ 0, -X[0, 1] - 3*X[0, 2], 3*X[0, 1] - X[0, 2]], [ X[1, 0] - 3*X[2, 0], -3*(X[1, 2] + X[2, 1]), 3*(X[1, 1] - X[2, 2])], [X[0, 0] + 3*X[1, 0] + X[2, 0], X[0, 1] + 3*X[1, 1] - 3*X[2, 2], X[0, 2] + 3*X[1, 2] + 3*X[2, 1]]]) If $\rm A X - X B = O_3$, we have an underdetermined homogeneous system of $3^2 - 1$ linear equations in $3^2$ unknowns. Thus, we have at least $1$ degree of freedom. We vectorize the matrix equation $$\left( \mathrm I_3 \otimes \mathrm A - \mathrm B^{\top} \otimes \mathrm I_3 \right) \mbox{vec} (\mathrm X) = 0_9$$ and let $\mathrm M := \mathrm I_3 \otimes \mathrm A - \mathrm B^{\top} \otimes \mathrm I_3$. Using SymPy: >>> I3 = Identity(3) >>> O3 = ZeroMatrix(3,3) >>> M = BlockMatrix([[A - I3, O3, O3], [ O3, A - 2*I3, -3*I3], [ O3, 3*I3, A - 2*I3]]) >>> Matrix(M) Matrix([ [0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, -3, 0, 0, 0, 0, 0, 0], [1, 3, 1, 0, 0, 0, 0, 0, 0], [0, 0, 0, -1, 0, 0, -3, 0, 0], [0, 0, 0, 0, 0, -3, 0, -3, 0], [0, 0, 0, 1, 3, 0, 0, 0, -3], [0, 0, 0, 3, 0, 0, -1, 0, 0], [0, 0, 0, 0, 3, 0, 0, 0, -3], [0, 0, 0, 0, 0, 3, 1, 3, 0]]) >>> Matrix(M).rank() 6 Hence, we have $3^2 - 6 = 3$ degrees of freedom. • Yes I know realised that the answer I posted only works for PAP^-1 P^-1AP allows you to set all three unknowns, as long as resulting P is invertible. – Scavenger23 Mar 10 '17 at 20:04 The computation is correct, and we cannot expect that $P$ is unique in general. A somewhat extreme case is $A=B=0$, where any invertible $P$ will do.
2019-04-20T12:35:06
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2180685/find-matrix-p-such-that-p-1ap-b", "openwebmath_score": 0.6917913556098938, "openwebmath_perplexity": 111.13684861792456, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9814534392852383, "lm_q2_score": 0.855851143290548, "lm_q1q2_score": 0.8399780480987117 }
http://math.stackexchange.com/questions/174828/a-probably-trivial-induction-problem-sum-2nk-2-lt1/174857
# A (probably trivial) induction problem: $\sum_2^nk^{-2}\lt1$ So I'm a bit stuck on the following problem I'm attempting to solve. Essentially, I'm required to prove that $\frac{1}{2^2}+\frac{1}{3^2}+\cdots+\frac{1}{n^2} < 1$ for all $n$. I've been toiling with some algebraic gymnastics for a while now, but I can't seem to get the proof right. Proving it using calculus isn't a problem, but I'm struggling hither. - Why do you think that this problem can be solved using induction? –  joriki Jul 24 '12 at 22:08 @joriki the person who gave it to me said it could? So, ethos I guess... –  Paquito Jul 24 '12 at 22:10 what about comparing it with $ln2$ –  Theorem Jul 24 '12 at 22:17 As often happens with induction proofs, the easiest approach to proving this statement (which doesn't seem inducable at all - after all, how does knowing the sum for $n$ is less than $1$ tell you anything about the sum for $n+1$?) via induction is to transform it into a stronger one: $$\mathrm{For\ all\ } n\geq2, \frac{1}{2^2}+\frac{1}{3^2}+\ldots+\frac{1}{n^2} \lt 1-\frac{1}{n}.$$ Now, the answer becomes a matter of simple algebra: $$\sum_{i=2}^{n+1} \frac{1}{i^2} = \sum_{i=2}^{n} \frac{1}{i^2} +\frac{1}{(n+1)^2}\lt 1-\frac{1}{n}+\frac{1}{(n+1)^2}\lt 1-\frac{1}{n}+\frac{1}{n(n+1)} = 1-\frac{1}{n+1}.$$ - Awesome! Many thanks...Might I ask what motivated the choice of subtracting 1/n? –  Paquito Jul 24 '12 at 22:21 @Paquito To a certain extent, intuition - since the difference between consecutive terms of the form $1/n$ is on the order of $1/n^2$, I could see that adding a quadratic term to a $1/n$-sized 'gap' between the sum and 1 would give a $1/n+1$-sized gap; from there it was just a quick dig to see whether $1-1/n$ itself would work or whether I would need to do something like $1-1/(n+1)$. –  Steven Stadnicki Jul 24 '12 at 22:26 That's beautiful, Steven! –  Bruno Joyal Jul 24 '12 at 22:40 Of course, this is also the "integral test" estimate. –  Robert Israel Jul 24 '12 at 23:53 @Paquito What Steven did is a classical example of inventor's paradox. Similarly proving $\frac{(2n-1)!!}{(2n)!!} < \frac{1}{\sqrt{n}}$ does not give in to the method of induction, while a stronger inequality $\frac{(2n-1)!!}{(2n)!!} < \frac{1}{\sqrt{n+1}}$ readily does. The explanation for why this works, is that the assumptions of the induction step are stronger in the latter case, allowing to draw stronger conclusion. –  Sasha Jul 25 '12 at 1:22 Another proof is by comparison: note that $${1 \over k^2} < {1 \over (k-1)k}$$ for all integers $k \ge 2$. Therefore $${1 \over 2^2} + {1 \over 3^2} + \cdots + {1 \over n^2} < {1 \over 1 \times 2} + {1 \over 2 \times 3} + \cdots + {1 \over (n-1) \times n}$$ and now you need to find the sum on the right-hand side. But you can actually write $${1 \over (k-1)k} = {1 \over k-1} - {1 \over k}$$ (this is just the usual partial fraction decomposition) and therefore $${1 \over 1 \times 2} + {1 \over 2 \times 3} + \cdots + {1 \over (n-1) \times n} = \left( {1 \over 1} - {1 \over 2} \right) + \left( {1 \over 2} - {1 \over 3} \right) + \cdots + \left( {1 \over n-1} - {1 \over n} \right)$$ and the right-hand side what's called a telescoping sum'' -- that is, the pairs of terms $-1/2$ and $+1/2$, $-1/3$ and $+1/3$, and so on cancel. So the right-hand side is $1 - 1/n$, which is less than 1. This came to mind pretty much immediately for me, because I happened to know that $\sum_{k \ge 2}^\infty 1/(k(k-1)) = 1$, but if you didn't know that ahead of time it would be a bit tricky to discover. - Yet another approach : Let us first analyze the sum till infinity. Let $$S= \frac{1}{2^2}+\frac{1}{3^2}+\frac{1}{4^2}+\frac{1}{5^2}+ \cdots \infty$$ $$\Rightarrow S=(\frac{1}{2^2}+\frac{1}{4^2}+ \cdots\infty) +(\frac{1}{3^2}+\frac{1}{5^2}+ \cdots\infty )$$$$\Rightarrow S= \frac{1}{4}(1+\frac{1}{2^2}+\frac{1}{3^2}+\cdots\infty)+ S'$$ Where $$S'=\frac{1}{3^2}+\frac{1}{5^2}+ \cdots\infty$$ $$\Rightarrow S=\frac{1}{4}(1+S)+S'$$ $$\Rightarrow 3S=4S'+1........ Eqn(1)$$ Now examine the following inequality $$(\frac{1}{2^2}-\frac{1}{3^2})+(\frac{1}{4^2}-\frac{1}{5^2})+ \cdots \infty > 0$$ $$\Rightarrow \frac{1}{2^2}+\frac{1}{4^2}+\cdots > \frac{1}{3^2}+\frac{1}{5^2}+ \cdots$$ $$\Rightarrow \frac{1}{4}(1+\frac{1}{2^2}+\cdots) >\frac{1}{3^2}+\frac{1}{5^2}+ \cdots$$ $$\Rightarrow \frac{1}{4}(1+S)> S'$$ $$\Rightarrow (1+S)> 4S'......Eqn(2)$$ From Equation 1 and 2 we get $$1+S> 3S-1$$ $$\Rightarrow 1> S$$ Which shows $$1> \frac{1}{2^2}+\frac{1}{3^2}+\frac{1}{4^2}+\frac{1}{5^2}+ \cdots \infty$$ -
2015-07-06T03:31:17
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/174828/a-probably-trivial-induction-problem-sum-2nk-2-lt1/174857", "openwebmath_score": 0.8994263410568237, "openwebmath_perplexity": 298.05780074192336, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9814534316905262, "lm_q2_score": 0.8558511488056151, "lm_q1q2_score": 0.8399780470115501 }
http://math.stackexchange.com/questions/157903/evaluation-of-lim-limits-x-rightarrow0-frac-tanx-xx3
# Evaluation of $\lim\limits_{x\rightarrow0} \frac{\tan(x)-x}{x^3}$ One of the previous posts made me think of the following question: Is it possible to evaluate this limit without L'Hopital and Taylor? $$\lim_{x\rightarrow0} \frac{\tan(x)-x}{x^3}$$ - Closely related is math.stackexchange.com/questions/134051 –  Dave L. Renfro Jun 13 '12 at 18:51 The statement $\dfrac{\tan(x)-x}{x^3} \to c$ as $x \to 0$ is equivalent to $\tan(x) = x + c x^3 + o(x^3)$ as $x \to 0$, so this is a statement about a Taylor polynomial of $\tan(x)$, and I'm not sure what would count as doing that "without Taylor". However, one thing you could do is start from $$\sin(x) = x + o(x)$$ integrate to get $$\cos(x) = 1 - x^2/2 + o(x^2)$$ then $$\sec(x) = \frac{1}{1-x^2/2 + o(x^2)} = 1 + x^2/2 + o(x^2)$$ $$\sec^2(x) = \left(1 + x^2/2 + o(x^2)\right)^2 = 1 + x^2 + o(x^2)$$ and integrate again to get $$\tan(x) = x + x^3/3 + o(x^3)$$ - thanks. Your approach is nice and interesting. Initially my first thought was to find some geometrical approch, but it doesn't seem that easy.I'm still trying to find a link between this limit and the intersection point of medians in a triangle. –  Chris's sis Jun 13 '12 at 19:48 Here's a way which avoids derivatives and integrals. Assume that we know that $\frac{\sin x}{x} \to 1$ as $x \to 0$. Then we also know that $\frac{1-\cos x}{x^2} = \frac12 \left( \frac{\sin(x/2)}{x/2} \right)^2 \to \frac12$. Now, $$\frac{\tan x - x}{x^3} = \frac{1}{\cos x} \left( \frac{\sin x - x}{x^3} + \frac{1-\cos x}{x^2} \right),$$ so we are done if we can compute $\lim_{x \to 0} \frac{\sin x - x}{x^3} = -\frac16$. The reason that I rewrote it like this is that I was asked by a colleague about ten years ago whether that limit could be done in an elementary way. :-) I came up with the following: Let $$f(x) = \frac{x - \sin x}{x^3} = \frac{1 - \frac{\sin x}{x}}{x^2}.$$ (Here I've changed the sign so that the limit will be positive.) Since $f$ is an even function, it's enough to consider $x>0$. Fix a positive integer $n$. To begin with, we have $$x = 2^n \frac{x}{2^n} > 2^n \sin \frac{x}{2^n}.$$ (I'm assuming that we also know that $0 < \sin x < x < \tan x$ for $0 < x < \pi/2$.) Multiply this inequality by $\prod_{k=1}^n \cos\frac{x}{2^k}$ and use the double angle formula repeatedly, as follows (illustrated for the case $n=3$): $$\begin{split} x \cos\frac{x}{8} \cos\frac{x}{4} \cos\frac{x}{2} & > 2^3 \sin\frac{x}{8} \cos\frac{x}{8} \cos\frac{x}{4} \cos\frac{x}{2} \\ & = 2^2 \sin\frac{x}{4} \cos\frac{x}{4} \cos\frac{x}{2} \\ & = 2^1 \sin\frac{x}{2} \cos\frac{x}{2} \\ & = \sin x. \end{split}$$ This implies (again for $n=3$, but the general pattern is hopefully clear) $$\begin{split} 1 - \frac{\sin x}{x} & > 1 - \cos\frac{x}{8} \cos\frac{x}{4} \cos\frac{x}{2} \\ & = \left( 1 - \cos\frac{x}{8} \right) + \cos\frac{x}{8} \left( 1 - \cos\frac{x}{4} \right) + \cos\frac{x}{8} \cos\frac{x}{4} \left( 1 - \cos\frac{x}{2} \right). \end{split}$$ We know that $\frac{1 - \cos(x/2^k)}{x^2} = \frac{1 - \cos(x/2^k)}{2^{2k} (x/2^k)^2} \to \frac{1}{2^{2k+1}}$, so after dividing this inequality by $x^2$ we find in the limit (for general $n$) that $$\liminf_{x \to 0^+} f(x) \ge \sum_{k=1}^n \frac{1}{2^{2k+1}} = \frac16 \left( 1 - \frac{1}{4^n} \right).$$ This holds for every $n$, hence $$\liminf_{x \to 0^+} f(x) \ge \frac16.$$ The other direction is similar. Start with $$x = 2^n \frac{x}{2^n} < 2^n \tan\frac{x}{2^n} = 2^n \frac{\sin(x/2^n)}{\cos(x/2^n)}.$$ This leads to $$\begin{split} 1 - \frac{\sin x}{x} & < 1 - \cos\frac{x}{2^n} \cdot (\text{same product of cosines as above}) \\ & = 1 - \cos\frac{x}{2^n} + \cos\frac{x}{2^n} \cdot (1 - (\text{that product})) \\ & = 1 - \cos\frac{x}{2^n} + \cos\frac{x}{2^n} \cdot (\text{same expression as above}). \end{split}$$ Divide by $x^2$ and let $x \to 0^+$: $$\limsup_{x \to 0^+} f(x) \le \frac{1}{2^{2n+1}} + \frac16 \left( 1 - \frac{1}{4^n} \right).$$ Let $n \to \infty$: $$\limsup_{x \to 0^+} f(x) \le \frac16.$$ It follows that $\lim_{x \to 0^+} f(x) = \frac16$, and therefore by symmetry $\lim_{x \to 0} f(x) = \frac16$,which is what we wanted to show. - :hehe, this is an amazingly nice answer. Thanks! A lot of stuff in this answer! :) –  Chris's sis Jun 14 '12 at 8:04 btw, the whole proof is very clear. –  Chris's sis Jun 14 '12 at 8:12 @Chris: Thank you! –  Hans Lundmark Jun 14 '12 at 10:34 @HansLundmark This is neat. +1 –  user17762 Oct 20 '12 at 17:16 There's the Cauchy or extended mean value theorem which says that ${\displaystyle {f(x) - f(y) \over g(x) - g(y)} = {f'(c) \over g'(c)}}$ for some $c$ between $x$ and $y$. You can apply it here with $f(x) = \tan(x) - x$ and $g(x) = x^3$, and you get that for some $0 < c < x$ you have $$\frac{\tan(x) - x}{x^3} = {\sec^2(c) - 1 \over 3c^2}$$ $$= {\tan^2(c) \over 3c^2}$$ $$= {1 \over 3}{1 \over \cos^2(c)}{\sin^2(c) \over c^2}$$ Now take limits as $x$ goes to zero; $c$ goes to zero and the limit is $1/3$. This is all somewhat tongue in cheek of course, since you can get L'Hopital pretty quickly from the extended mean value theorem, but it does satisfy your request to not use it or Taylor polynomials :) - that's right. Thanks. I was thinking of some geometrical approach. –  Chris's sis Jun 13 '12 at 19:44 Encouraged by Hans Lundmark's answer, I'm posting my own solution without derivatives and integrals. The triple-angle formula for $\tan$ is $$\tan 3\theta = \frac{3\tan\theta-\tan^3\theta}{1-3\tan^2\theta}.$$ Suppose $\lim_{x\to0}(\tan x-x)/x^3 = c$. Letting $x = 3\theta$, we then have \begin{align} c &= \lim_{x\to0} \frac{\tan x-x}{x^3} \\ &= \lim_{\theta\to0} \frac{\tan 3\theta-3\theta}{27\theta^3} \\ &= \lim_{\theta\to0} \frac{3\tan\theta - \tan^3\theta-3\theta+9\theta\tan^2\theta}{27\theta^3(1-3\tan^2\theta)} \end{align} We can get rid of $1/(1-3\tan^2\theta)$ because its limit is $1$. Next we start pulling out terms and find \begin{align} c &= \lim_{\theta\to0}\frac{3\tan\theta-3\theta}{27\theta^3} - \lim_{\theta\to0}\frac{\tan^3\theta}{27\theta^3} + \lim_{\theta\to0}\frac{9\theta\tan^2\theta}{27\theta^3} \\ &= \frac19c - \frac1{27} + \frac{1}{3}, \end{align} because $\lim_{\theta\to0}(\tan\theta)/\theta = 1$. So $8c/9 = 8/27$, or $c = 1/3$. - Nice. Similar method to mine! –  user17762 Jun 14 '12 at 7:07 Ah, much simpler than my answer! Except that you use heavy machinery like the triple angle formula and I only used the double angle formula. ;-) –  Hans Lundmark Jun 14 '12 at 7:59 @Rahul Narain: nice answer! Thanks. –  Chris's sis Jun 14 '12 at 8:08 @Hans: Yes, I pulled out the big guns for this one! :) Actually, I just didn't realize that the double angle formula works fine with this approach -- it becomes equivalent to Marvis' answer. –  Rahul Jun 14 '12 at 9:21 There's a problem with the existence of the limit, which has to be shown before this argument is complete. See my comment to Marvis's answer. –  Hans Lundmark Jun 14 '12 at 14:10 Here is a different approach. Let $$L = \lim_{x \to 0} \dfrac{\tan(x) - x}{x^3}$$ Replacing $x$ by $2y$, we get that \begin{align} L & = \lim_{y \to 0} \dfrac{\tan(2y) - 2y}{(2y)^3} = \lim_{y \to 0} \dfrac{\dfrac{2 \tan(y)}{1 - \tan^2(y)} - 2y}{(2y)^3}\\ & = \lim_{y \to 0} \dfrac{\dfrac{2 \tan(y)}{1 - \tan^2(y)} - 2 \tan(y) + 2 \tan(y) - 2y}{(2y)^3}\\ & = \lim_{y \to 0} \dfrac{\dfrac{2 \tan^3(y)}{1 - \tan^2(y)} + 2 \tan(y) - 2y}{(2y)^3}\\ & = \lim_{y \to 0} \left(\dfrac{2 \tan^3(y)}{8y^3(1 - \tan^2(y))} + \dfrac{2 \tan(y) - 2y}{8y^3} \right)\\ & = \lim_{y \to 0} \left(\dfrac{2 \tan^3(y)}{8y^3(1 - \tan^2(y))} \right) + \lim_{y \to 0} \left(\dfrac{2 \tan(y) - 2y}{8y^3} \right)\\ & = \dfrac14 \lim_{y \to 0} \left(\dfrac{\tan^3(y)}{y^3} \dfrac1{1 - \tan^2(y)} \right) + \dfrac14 \lim_{y \to 0} \left(\dfrac{\tan(y) - y}{y^3} \right)\\ & = \dfrac14 + \dfrac{L}4 \end{align} Hence, $$\dfrac{3L}{4} = \dfrac14 \implies L = \dfrac13$$ EDIT In Hans Lundmark answer, evaluating the desired limit boils down to evaluating $$S=\lim_{x \to 0} \dfrac{\sin(x)-x}{x^3}$$ The same idea as above can be used to evaluate $S$ as well. Replacing $x$ by $2y$, we get that \begin{align} S & = \lim_{y \to 0} \dfrac{\sin(2y) - 2y}{(2y)^3} = \lim_{y \to 0} \dfrac{2 \sin(y) \cos(y) - 2y}{8y^3}\\ & = \lim_{y \to 0} \dfrac{2 \sin(y) \cos(y) - 2 \sin(y) + 2 \sin(y) - 2y}{8y^3}\\ & = \lim_{y \to 0} \dfrac{2 \sin(y) - 2y}{8y^3} + \lim_{y \to 0} \dfrac{2 \sin(y) \cos(y)-2 \sin(y)}{8y^3}\\ & = \dfrac14 \lim_{y \to 0} \dfrac{\sin(y) - y}{y^3} - \dfrac14 \lim_{y \to 0} \dfrac{\sin(y) (1 - \cos(y))}{y^3}\\ & = \dfrac{S}4 - \dfrac14 \lim_{y \to 0} \dfrac{\sin(y) 2 \sin^2(y/2)}{y^3}\\ & = \dfrac{S}4 - \dfrac18 \lim_{y \to 0} \dfrac{\sin(y)}{y} \dfrac{\sin^2(y/2)}{(y/2)^2}\\ & = \dfrac{S}4 - \dfrac18 \lim_{y \to 0} \dfrac{\sin(y)}{y} \lim_{y \to 0} \dfrac{\sin^2(y/2)}{(y/2)^2}\\ & = \dfrac{S}4 - \dfrac18\\ \dfrac{3S}4 & = - \dfrac18\\ S & = - \dfrac16 \end{align} - Huh, I had assumed that to get $\tan$ to third order one would have to use the triple angle formula. I guess I was mistaken. –  Rahul Jun 14 '12 at 7:11 @Marvis: very elegant! Thanks! –  Chris's sis Jun 14 '12 at 8:05 @Marvis: this proof also works for showing that $\lim_{x\rightarrow0} \frac{\tan(x)-x}{x^2} = 0$. –  Chris's sis Jun 14 '12 at 8:16 @Chris Yes. This is powerful neat little trick. I learnt this trick in my last year at high school and yes you can show that $\lim_{x \to 0} \dfrac{\tan(x)-x}{x^2} =0$ using this trick as well. –  user17762 Jun 14 '12 at 8:23 @Marvis: i've just noticed now that it works great and very simple by only using: $\sin(x)<x<\tan(x),\space 0< x <\frac{\pi}{2}.$. It's nice to have a lot of tackling ways for each problem. :-) –  Chris's sis Jun 14 '12 at 10:16
2014-04-17T09:50:52
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/157903/evaluation-of-lim-limits-x-rightarrow0-frac-tanx-xx3", "openwebmath_score": 0.9990609288215637, "openwebmath_perplexity": 598.8449403333569, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9814534327754852, "lm_q2_score": 0.8558511469672594, "lm_q1q2_score": 0.839978046135853 }
https://math.stackexchange.com/questions/703260/using-lagrange-form-of-the-remainder-with-cosh
# Using Lagrange form of the remainder with cosh I am trying to find "$\cosh 4$ using the sixth partial sum ($n=5$) of the Maclaurin series" for the function. I am also trying to use "the Lagrange form of the remainder to estimate the number of decimal places to which the partial sum" is accurate. For the first part, I am getting $\displaystyle\sum_{n=0}^5 \frac{4^{2n}}{(2n)!} \approx 27.2699$, which agrees with the provided answer. However, I am having trouble estimating the error. Here is what I have done so far. The Lagrange form of the remainder is $\displaystyle R_n = \frac{f^{(n+1)}(c)}{(n+1)!}(x-a)^{n+1}$, where here $a=0$ (Maclaurin), $x=4$ (the value for which we want $\cosh$), and $0=a\leq c\leq x=4$. To find an upper bound for $f^{(n+1)}(c)$, since all derivatives of $\cosh$ are less than or equal to $\cosh$, I see that using $\cosh$ will work, and I also see that $4$ will yield the highest value, so $f^{(n+1)}(c) \leq \cosh 4$. Since we are assuming that we don't know what $e$ is, we have $$f^{(n+1)}(c) \leq \cosh 4 = \frac{e^4+e^{-4}}{2} < \frac{3^4+2^{-4}}{2} < 41.$$ Using the Lagrange form of the remainder, I get $\displaystyle R_n < \frac{41\cdot 4^{5+1}}{(5+1)!}\approx 233$, which is much greater than the error provided in the answer. It seems that the solution is using $2(n+1)$ instead of $n+1$ in the denominator of the Lagrange form (with the factorial), and likewise in the exponent for $x$ (for using these yields the provided answer). However, using this seems rather arbitrary as it does not appear in the general formula. How do I reconcile the general form of the remainder with the provided answer? I would not agree that $\sum_0^5 \frac{4^{2i}}{(2i)!}$ is the sixth partial sum. The "zero terms" should be counted. The remainder, in the Lagrange sense, is the same as the one we get if we take the terms up to and including the term in $x^{11}$. (Yes, it is $0$). Thus if you are going to use the Lagrange remainder formula as quoted in Wikipedia, for the "$k$" in that formula, you need to use $11$. I am going to elaborate on André’s answer after having thought about the problem some more. If we let $T_n(x)$ be the $n$th-degree Taylor polynomial of $\cosh$ at $0$ (since Maclaurin), and $R_n(x)$ be the remainder of the Taylor series, then we can write $$\cosh x = T_n(x) + R_n(x).$$ We can also write $$\cosh x = 1+ 0 + \frac{x^2}{2!} + 0 + \frac{x^4}{4!} + \cdots + \frac{x^8}{8!} + 0 + \frac{x^{10}}{10!} + 0+ \cdots = \sum_{i=0}^\infty \frac{x^{2i}}{(2i)!}.$$ Now if we want to use the partial sums of $\cosh$, we notice that we don't get $\sum_{i=0}^n \frac{x^{2i}}{(2i)!} = T_n(x)$, but rather $\sum_{i=0}^n \frac{x^{2i}}{(2i)!} = T_{2n}(x)$. In the original problem, when it asked to find the “sixth partial sum ($n=5$)”, the “$n$” under consideration was the one associated with the partial sum of $\cosh$, not the one in the Taylor polynomial. In other words, the problem wanted one to evaluate $\left .\sum_{i=0}^5 \frac{x^{2i}}{(2i)!}\right|_{x=4}$. However, for this sum, the associated Taylor polynomial is actually $T_{2\cdot5}(4)=T_{10}(4) = T_{11}(4)$ (the last equality just happens to work since every odd-powered term is $0$, and will help with getting the error down even smaller). Therefore we have $\cosh 4 = T_{11}(4) + R_{11}(4)$. To get the error, we want \begin{align*} R_{11}(4) &= \frac{\cosh^{11+1}(c)\cdot 4^{11+1}}{(11+1)!}\\ &< \frac{41\cdot 4^{12}}{12!} \\ &< 2,\end{align*} which agrees with the provided answer.
2019-09-21T15:03:45
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/703260/using-lagrange-form-of-the-remainder-with-cosh", "openwebmath_score": 0.9882498979568481, "openwebmath_perplexity": 98.69650134751436, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9814534327754852, "lm_q2_score": 0.8558511469672594, "lm_q1q2_score": 0.839978046135853 }
https://math.stackexchange.com/questions/1055638/solving-3x-equiv-4-pmod-7
# Solving $3x\equiv 4\pmod 7$ I'm trying to learn about linear congruences of the form ax = b(mod m). In my book, it's written that if $\gcd(a, m) = 1$ then there must exist an integer $a'$ which is an inverse of $a \pmod{m}$. I'm trying to solve this example: $$3x \equiv 4 \pmod 7$$ First I noticed $\gcd(3, 7) = 1$. Therefore, there must exist an integer which is the multiplicative inverse of $3 \pmod 7$. According to Bezout's Theorem, if $\gcd(a, m) = 1$ then there are integers $s$ and $t$ such that $sa+tm=1$ where $s$ is the multiplicative inverse of $a\pmod{m}$. Using that theorem: \begin{align}7 = 3\cdot2 +1\\7 - 3\cdot2 = 1 \\-2\cdot3 + 7 = 1\end{align} $s=-2$ in the above equation so $-2$ is the inverse of $3 \pmod{7}$. The book says that the next step to solve $3x \equiv 4 \pmod{7}$ is to multiply $-2$ on both sides. By doing that I get: \begin{align}-2\cdot3x \equiv -2\cdot4 \pmod 7\\-6x\equiv -8 \pmod 7\end{align} What should I do after that? I am working on this problem for hours. Thanks :) \begin{align} 3x\equiv4\pmod{7} & (\text{Original equation})\\3x\equiv -3\pmod{7} &(\text{Replaced 4 with -3(by subtracting 7)})\\x\equiv-1\pmod{7}& (\text{Divide each side by 3})\\ x\equiv6\pmod{7} &(\text{replaced -1 with 6 (by adding 7))} \end{align} P.S.- The reason you can add or subtract $7$ is one of the properties of $\pmod{7}$. You can add or subtract multiples of $7$ to the number in front of the $mod$ without effecting the equation. • thanks for replying. Your answer is a lot simpler. Will this subtracting/adding always work out the problem? – Tehmas Dec 7 '14 at 13:32 • yes you can always add multiples of $7$ (in this particular example) since $7\equiv0\pmod{7}$ so what you're doing is really just adding $0$ to the equation. More generally $a\equiv0\pmod{a}$ (just to make sure I don't confuse you and make you add $7$ to all mod equations lol – Fmonkey2001 Dec 7 '14 at 13:36 • Ahan. But you didn't even use the inverse(-2). Was it a useless step? @_@ – Tehmas Dec 7 '14 at 13:39 • It wasn't useless, it was just a different method to solving the same problem. You'd get the same answer if you did it your way. Just like @N. F. Taussig did you could always substitute the answer of $6$ back into the original equation to see that $x=6 \rightarrow 18\equiv4\pmod{7}$ – Fmonkey2001 Dec 7 '14 at 13:48 • Thanks Fmonkey2001. :) Your method is truly simpler and thanks for replying to other questions as well. – Tehmas Dec 7 '14 at 14:43 You have arrived at $$-6x=-8\pmod{7}.$$ Now: $$-6x=-8\pmod{7} \underbrace{\iff}_{\mathrm{add}\: 7x=0\pmod{7}} 7x-6x=-8\pmod{7}\\ \iff x=-8\pmod{7}\underbrace{=}_{\mathrm{add}\: 14=0\pmod{7}}(2\cdot 7-8)\pmod{7}=6\pmod{7}.$$ You obtained $$-2 \cdot 3x \equiv -8 \pmod{7}$$ Simplifying yields $$-6x \equiv -8 \pmod{7}$$ Observe that $-6 \equiv 1 \pmod{7}$ and that $-8 \equiv 6 \pmod{7}$. Thus, we obtain $$x \equiv 6 \pmod{7}$$ Check: If $x \equiv 6 \pmod{7}$, then $3x \equiv 3 \cdot 6 \equiv 18 \equiv 4 \pmod{7}$. • Taussig, thank you for replying. I don't understand this: "Observe that −6≡1(mod7) and that −8≡6(mod7)." – Tehmas Dec 7 '14 at 13:43 • $-6 \equiv 1 \pmod{7}$ since both $-6$ and $1$ have remainder $1$ when divided by $7$. $-6 = -1 \cdot 7 + 1$, so $-6 \equiv 1 \pmod{7}$. Note that when you add $7$ to $-6$ you obtain $1$. Similarly, $-8 = -2 \cdot 7 + 6$, so $-8 \equiv 6 \pmod{7}$. – N. F. Taussig Dec 7 '14 at 19:27 $$3x\equiv4\pmod{7}\\-6x\equiv -8\pmod{7}\\-6x\equiv-1-7\\-6x\equiv-1\pmod{7}\\(7-6)x\equiv-1\equiv6\pmod{7}$$ • kingW3, thank you for answering. Can you please elaborate step 3? – Tehmas Dec 7 '14 at 13:15 • @Tehmas: $8 \equiv 1\pmod 7$. – user 170039 Dec 7 '14 at 13:16 • @Tehmas Edited,you can also look the comment below you – kingW3 Dec 7 '14 at 13:25 • I apologize for repeatedly asking about step 3 but what did you do there now? −6x≡−1−7 – Tehmas Dec 7 '14 at 13:47 • This was two steps in one. The first thing he did was to add $7$ to $-1$ to get $6$. The second part was a little bit harder to see. He added $7x$ to the left side since any multiples of $7$ are $0\pmod{7}$ Then after he did that he factored out the $x$to get $(7-6)x$ then he simplified that to just get $x$ – Fmonkey2001 Dec 7 '14 at 14:20
2019-10-16T02:08:58
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1055638/solving-3x-equiv-4-pmod-7", "openwebmath_score": 0.7894480228424072, "openwebmath_perplexity": 506.39700833767273, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9814534322330057, "lm_q2_score": 0.8558511414521923, "lm_q1q2_score": 0.8399780402587899 }
https://math.stackexchange.com/questions/1672931/how-can-we-show-that-all-the-roots-of-some-irreducible-polynomial-are-not-of-alg
How can we show that all the roots of some irreducible polynomial are not of algebraically equal status? In studying Galois theory, I found that all roots of some irreducible polynomial are not of algebraically equal status, because the Galois group of some irreducible polynomial may not be full symmetric group $S_n$. But I am searching a concrete example elucidating that all roots are not algebraically equal and should be distinct in an algebraic way. One of my attempt is like this. Let $p(t)$ be an irreducible separable polynomial over $F$ and $E$ its spliting field over $F$. Let $\alpha_1,\alpha_2,\cdots,\alpha_n$ are all roots of $p(t)$. Then $E=F(\alpha_1,\alpha_2,\cdots,\alpha_n)$ and we consider the tower of fields $F\le F(\alpha_1) \le F(\alpha_1,\alpha_2)\le \cdots \le F(\alpha_1,\alpha_2,\cdots,\alpha_n)$. I guess that the $\deg (irr(\alpha_i,F(\alpha_j)))$ may differ depending on the choice of $\alpha_i$ and $\alpha_j$. If this is true, I can suggest this to support my claim that all roots are not algebraically equal. But I am not able to find an apt example supporting my guess. Do you know some example verifying my guess? Or if you have any idea which helps convince that all roots are not algebraically equal, please share with me. Thanks for reading my question and any comment will be appreciated! • What does "of algebraically equal status" mean? – Eric Wofsey Feb 26 '16 at 8:30 • I think I better phrasing would be to just say that you are looking for a concrete "reason" that the Galois group cannot be all of $S_n$ in some example. – Eric Wofsey Feb 26 '16 at 8:52 • There is no clear definition and it depends on as you feel it. I don't know how to express it. But I have some feeling that they are not equal algebraically. For example, consider irreducible polynomial $p(t)=t^4-2\in \mathbb{Q}[t]$. Let $\alpha=2^{\frac{1}{4}}$, $\beta=2^{\frac{1}{4}}i$, $\gamma=-2^{\frac{1}{4}}$. Then $\alpha$, $\beta$, $\gamma$ are all roots of $p(t)$, but their reciprocal relation over $\mathbb{Q}$ is a bit different. For example, $\alpha+\gamma=0$ whereas $(\frac{\alpha}{\beta})^2+1=0$. – user29422 Feb 26 '16 at 8:53 • The distinctive status of each roots I think is the whole relationship of each roots of some irreducible polynomial with other elements in $\bar{\mathbb{Q}}$ over $\mathbb{Q}$. – user29422 Feb 26 '16 at 8:59 Sure, what you're asking for can happen. For a simple example, take $F=\mathbb{Q}$ and $p(t)=t^4-2$. The roots are $\alpha_1=\sqrt[4]{2}$, $\alpha_2=-\sqrt[4]{2}$, $\alpha_3=i\sqrt[4]{2}$, and $\alpha_4=-i\sqrt[4]{2}$. Note then that $\alpha_2\in F(\alpha_1)$ (so its minimal polynomial over $F(\alpha_1)$ has degree $1$), while $\alpha_3\not\in F(\alpha_1)$ (and its minimal polynomial over $F(\alpha_1)$ has degree $2$). However, I would object somewhat to your phrasing that this means the roots are "algebraically distinct". It is always true that the Galois group acts transitively on the roots (as long as $p$ is irreducible): that is, for any $i$ and $j$, there is an automorphism of $E$ over $F$ that maps $\alpha_i$ to $\alpha_j$. So you can't really distinguish $\alpha_i$ from $\alpha_j$ (at least, from the perspective of $F$). All you can really say is that you can distinguish certain subsets of the roots from other subsets of the roots of the same size. For instance, in the example above, the set $\{\alpha_1,\alpha_2\}$ is in a strong sense distinguishable from $\{\alpha_1,\alpha_3\}$ over $F$. • +1 Nice observation. From a group-theoretic point of view, I think the idea is that the Galois group is the dihedral group $G$ of order $8$, which acts transitively, but imprimitively on the roots. If ones sees $G$ as acting on the vertices of a square, a block system is given by the diagonals $\{ \alpha_{1}, \alpha_{2}\}$ and $\{ \alpha_{3}, \alpha_{4}\}$. – Andreas Caranti Feb 26 '16 at 9:09
2019-07-16T05:58:54
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1672931/how-can-we-show-that-all-the-roots-of-some-irreducible-polynomial-are-not-of-alg", "openwebmath_score": 0.9033700823783875, "openwebmath_perplexity": 131.5978809307098, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9859363758493942, "lm_q2_score": 0.8519528076067262, "lm_q1q2_score": 0.8399712635264919 }
http://www.real-statistics.com/tests-normality-and-symmetry/analysis-skewness-kurtosis/
# Analysis of Skewness and Kurtosis Since the skewness and kurtosis of the normal distribution are zero, values for these two parameters should be close to zero for data to follow a normal distribution. • A rough measure of the standard error of the skewness is $\sqrt{6/n}$ where n is the sample size. • A rough measure of the standard error of the kurtosis is $\sqrt{24/n}$ where n is the sample size. If the absolute value of the skewness for the data is more than twice the standard error this indicates that the data are not symmetric, and therefore not normal. Similarly if the absolute value of the kurtosis for the data is more than twice the standard error this is also an indication that the data are not normal. Example 1: Use the skewness and kurtosis statistics to gain more evidence as to whether the data in Example 1 of Graphical Tests for Normality and Symmetry is normally distributed. As we can see from Figure 4 of Graphical Tests for Normality and Symmetry (cells D13 and D14), the skewness for the data in Example 1 is .23 and the kurtosis is -1.53. The standard error for the skewness is .55 (cell D16) the standard error for the kurtosis is 1.10 (cell D17). Both statistics are within two standard errors, which suggest that the data is likely to be relatively normally distributed. Observation: Related to the above properties is the Jarque-Barre (JB) test for normality which tests the null hypothesis that data from a sample of size n with skewness skew and kurtosis kurt For Example 1 based on using the functions SKEW and KURT to calculate the sample skewness and kurtosis values. Since CHISQ.DIST.RT(2.13, 2) = .345 > .05, based on the JB test, we conclude there isn’t sufficient evidence to rule out the data coming from a normal population. The JB test can also be  calculated using the SKEWP (or SKEW.P) and KURTP functions to obtain the population values of skewness and kurtosis. In this case, we obtain Since CHISQ.DIST.RT(1.93, 2) = .382 > .05, once again we conclude there isn’t sufficient evidence to rule out the data coming from a normal population. Real Statistics Functions: The Real Statistics Resource Pack contains the following functions. JARQUE(R1, pop) = the Jarque-Barre test statistic JB for the data in the range R1 JBTEST(R1, pop) = p-value of the Jarque-Barre test on the data in R1 If pop = TRUE (default), the population version of the test is used; otherwise the sample version of the test is used. Any empty cells or cells containing non-numeric data are ignored. For Example 1, we see that JARQUE(A4:A23) = 1.93 and JBTEST(A4:A23) = .382. Similarly, JARQUE(A4:A23, FALSE) = 2.13 and JBTEST(A4:A23, FALSE) = .345. Observation: See D’Agostino-Pearson Test for another more accurate test for normality which is based on the skewness and kurtosis of sample data. ### 21 Responses to Analysis of Skewness and Kurtosis 1. soharb says: I think there is some thing wrong with this formula for example for this series 26.83946269 26.95131935 8.371060164 10.40495872 18.38858378 20.12905135 24.2843167 1.76670796 20.19191695 41.06557085 16.09877032 13.34390071 0.426210193 28.31166689 11.89051087 109.3641761 25.50859431 61.26802436 32.5178008 66.58119511 41.27546773 14.67351611 2.048435245 28.01590722 44.93746991 the JARQUE(R1)=38.28239095 but if we use an array formula like this: =COUNT(A2:A26)*(((((SUM((A2:A26-AVERAGE(A2:A26))^3)/COUNT(A2:A26))/((SUM((A2:A26-AVERAGE(A2:A26))^2)/COUNT(A2:A26))^1.5))^2)/6)+((((SUM((A2:A26-AVERAGE(A2:A26))^4)/COUNT(A2:A26))/((SUM((A2:A26-AVERAGE(A2:A26))^2)/COUNT(A2:A26))^2)-3))^2)/24) + CTRL + SHIFT + ENTER • Charles says: I am using the following Excel formula =COUNT(A2:A26)*(SKEW(A2:A26)^2/6+KURT(A2:A26)^2/24) Charles • soharb says: Then there is some thing wrong (bug) in excel formula, since I calculated the SKEW, KURT and JB with “EViews 9.5” and my array formula turn up to be the correct answer! • Charles says: What value did you get for SKEW and KURT_ Charles • soharb says: EViews 9.5: SKEW= 1.769081 KURT= 3.620125 JB= 26.69155 Excel regular formula: =SKEW(A2:A26) = 1.884063081 =SKEW.P(A2:A26) =1.769080723 =KURT(A2:A26) = 4.748928357 Note: there is no KURT.P!!! Excel array formula: for SKEW =((SUM((A2:A26-AVERAGE(A2:A26))^3)/COUNT(A2:A26))/((SUM((A2:A26-AVERAGE(A2:A26))^2)/COUNT(A2:A26))^1.5)) + CTRL + SHIFT + ENTER =1.769080723 for KURT =((SUM((A2:A26-AVERAGE(A2:A26))^4)/COUNT(A2:A26))/((SUM((A2:A26-AVERAGE(A2:A26))^2)/COUNT(A2:A26))^2)-3) + CTRL + SHIFT + ENTER =3.620124598 • Charles says: Soharb, Thanks for sending me this information. It looks like if we use the population values of skewness and kurtosis then we get the result that you have seen from EViews. In particular, the Real Statistics Resource Pack has functions SKEWP and KURTP. If these functions are used then the formula =COUNT(A2:A26)*(SKEWP(A2:A26)^2/6+KURT(A2:A26)^2/24) yields the result 26.69155. Thanks for bringing this up. I will revise the JARQUE and JBTEST functions in the next release of the software. Charles 2. Jpso says: Hi and congrats for the great initiative. When you refer to Kurtosis, you mean the Excess kurtosis (i.e. kurt-3) or the outright kurtosis? For example when I perform the “D’Agostino-Pearson Test” as described in the relevant section (i.e. using outright kurtosis) I get results suggesting rejection of the null hypothesis, even if I use Kurt=3, Skew=0, which is the ND standards stats. Thank you. • Charles says: Jpso, I am using excess kurtosis (as does Excel). Charles 3. david oluyole ajekigbe says: thank you very much for this information. i have gained a lot from it. it will be appreciated if you can please attend to the question of zohreh of february 28, 2016 @ 9.31pm . i also will like to name of the person for reference. thank you . david • Charles says: David, As I wrote in response to that comment “We often use alpha = .05 as the significance level for statistical tests. The critical value for a two tailed test of normal distribution with alpha = .05 is NORMSINV(1-.05/2) = 1.96, which is approximately 2 standard deviations (i.e. standard errors) from the mean. This is source of the rule of thumb that you are referring to. The Jarque-Barre and D’Agostino-Pearson tests for normality are more rigorous versions of this rule of thumb.” Thus, it is difficult to attribute this rule of thumb to one person, since this goes back to the beginning of statistics, or at least the use of the value 1.96. You will find this value of 1.96 in any elementary book on statistics. Charles 4. Denny Yu says: Thank you very much! The Real Statistics Functions are really of great help. However, I came across a problem that JBTEST, as well as DPTEST, doesn’t allow ranges expressed in array form. For example, the expression: =jbtest(IF(INDIRECT(“G”&6):INDIRECT(“G”&10)0,INDIRECT(“AE”&6):INDIRECT(“AE”&10))) cannot be recognized by Excel and the result is #VALUE!. By comparing with another expression: =jbtest(INDIRECT(“AE”&6):INDIRECT(“AE”&10)) in Evaluating Fomula, I found that JBTEST can only read data with form of “Am:Bn”, not expressed in a set of data like “0.1, 0.2, …”. Is there any solution to it? I have to deal with ranges within which there are certain values that should not be included in the test. Thank you again! • Charles says: Denny, The current implementation of these functions supports only arrays which are ranges. I have just changed this so that they should support any arrays. I will include these changes in the next release of the software. I hope to issue this release in the next few days. Charles • Denny Yu says: I’m really looking forward to it. 5. Zohreh says: Salaam May you please cite the reference for “If the absolute value of the skewness for the data is more than twice the standard error this indicates that the data are not symmetric, and therefore not normal”. I need it. Thanks. • Charles says: We often use alpha = .05 as the significance level for statistical tests. The critical value for a two tailed test of normal distribution with alpha = .05 is NORMSINV(1-.05/2) = 1.96, which is approximately 2 standard deviations (i.e. standard errors) from the mean. This is source of the rule of thumb that you are referring to. The Jarque-Barre and D’Agostino-Pearson tests for normality are more rigorous versions of this rule of thumb. Charles • Zohreh says: Thanks for replying. I’ve heard that one way to check normality is to divide skewness by standard error, if the results falls between the range +-1.96, then normality will be satisfies. Using this formula my data was proved to be not normal. I used another formula to which you referred “If the absolute value of the skewness for the data is more than twice the standard error this indicates that the data are not symmetric, and therefore not normal”, then my data revealed to be normal. As I want to use the latter procedure in my study I need to cite the name of the person whose opinion I will use. By reference I meant based on whose opinion “If the absolute value of the skewness for the data is … Will you please provide the name of the person? Many thanks… 6. Rajesh says: Data distribution free how to apply 2 way anova • Charles says: Sorry, but I don’t understand your question. Charles 7. Colin says: Sir What are the rough measure of the standard error of the skewness and kurtosis ? I cannot see the pictures. • Charles says: Colin, A rough measure of the standard error of the skewness is \sqrt{6/n} where n is the sample size. A rough measure of the standard error of the kurtosis is \sqrt{24/n} where n is the sample size. Charles 8. My brother recommended I would possibly like this web site. He was once entirely right. This post actually made my day. You cann’t imagine just how much time I had spent for this info! Thank you!
2016-09-26T01:55:24
{ "domain": "real-statistics.com", "url": "http://www.real-statistics.com/tests-normality-and-symmetry/analysis-skewness-kurtosis/", "openwebmath_score": 0.7346479296684265, "openwebmath_perplexity": 1028.7116975059869, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9859363708905831, "lm_q2_score": 0.851952809486198, "lm_q1q2_score": 0.8399712611548583 }
https://www.physicsforums.com/threads/limit-proof.793144/
# Limit proof 1. Jan 19, 2015 ### ciubba 1. The problem statement, all variables and given/known data Prove $$lim_{x->4}\frac{x-4}{\sqrt{x}-2}=4$$ 2. Relevant equations Epsilon\delta definition 3. The attempt at a solution I can see that a direct evaluation at 4 leads to an indeterminate form, so: $$\frac{x-4}{\sqrt{x}-2}*\frac{\sqrt{x}+2}{\sqrt{x}+2} \; \mbox{simplifies to} \; \sqrt{x}+2 \; \mbox{when} \; x \ne 4$$ Via epsilon\delta definition, $$|\sqrt{x}+2-4|<\epsilon \; \mbox{whenever} \; |x-4|<\delta$$ Expanding the right side, $$-\delta<x-4<\delta$$ $$-\delta+4<x<\delta+4$$ $$\sqrt{-\delta+4}<\sqrt{x}<\sqrt{\delta+4} \; \mbox{when} \; \delta \leq 4$$ $$\sqrt{-\delta+4}-2<\sqrt{x}-2<\sqrt{\delta+4}-2$$ Thus, $$\delta=min\{\sqrt{-\delta+4}-2,4,\sqrt{\delta+4}-2\}$$ Given this definition of delta, it is elementary to work backwards towards $$|\sqrt{x}+2|<\delta$$ Have I made any errors in my proof? 2. Jan 19, 2015 ### perplexabot Hey cuibba. I can't comment on your technique, but you could have used L'hopital's rule. That way I think is easier. 3. Jan 19, 2015 ### pasmith What is $\delta$ when $\epsilon = 10$? What about when $\epsilon = 10^{-5}$? For every $\epsilon > 0$ there exists a $\delta > 0$ such that if $0 < |x - 4| < \delta$ then $|\frac{x - 4}{\sqrt{x} - 2} - 4| < \epsilon$. You need to relate your $\delta$ to the $\epsilon$. 4. Jan 19, 2015 ### Ray Vickson He could have used l'Hospital's rule (yes, it really is spelled Hospital) but his way is easier. Alternatively, he could have set $\sqrt{x} = y$ and then evaluated $$\lim_{y \to 2} \frac{y^2 - 4}{y-2},$$ because in this form l'Hospital's rule is much nicer to use. 5. Jan 19, 2015 ### ciubba Ah, I wish I was allowed to use that technique, but our prof. is adamant on teaching delta ep. definitions first. Oops, I mistyped. I meant to say "Given this definition of delta, it is elementary to work backwards towards $$|\sqrt{x}+2\mathbf{-4}|<\boldsymbol{\epsilon}$$ My main question is whether or not it is correct to say that, for any epsilon, delta is $$min\{\sqrt{-\delta+4}-2,4,\sqrt{\delta+4}-2\}$$ Ah, I didn't think to do a u-sub. I'll definitely try that next time!
2017-10-22T08:44:06
{ "domain": "physicsforums.com", "url": "https://www.physicsforums.com/threads/limit-proof.793144/", "openwebmath_score": 0.8043165802955627, "openwebmath_perplexity": 970.9712102879457, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9859363737832231, "lm_q2_score": 0.8519528000888386, "lm_q1q2_score": 0.8399712543540526 }
http://farmaciacoverciano.it/dhti/when-two-dice-are-rolled-find-the-probability-of-getting-a-sum-of-5-or-6.html
# When Two Dice Are Rolled Find The Probability Of Getting A Sum Of 5 Or 6 With two dice, there are 6 x 6 = 36 possible outcomes. [3 Marks) 1 13 5 Question 2 Find The Z Score That Corresponds To The Given Area. Number of outcomes of the experiment that are favorable to the event that a sum of two events is 6. The logic is there are six sides to each die, so for each number on one You did the math for the probability of rolling a dice twice and getting a multiple of 3 on both rolls. Think about a dice. a sum less than 4 or greater than 9 d. 1 in 6 x 1 in 6 = 1 in 36. Probability that sum is neither 7 or 11 = 1 - Probability that the sum is 7 and 11. Find the variance and standard deviation of X. [3 Marks) 0. Dependent Event - An event whose probability of occurring is influenced by (i. In the example you gave, I find it much easier to start by calculating the probability of NOT rolling a 5 across multilple throws, because these probabilities can be just multiplied together. Two fair dice are rolled and the sum of the points is noted. What is the. Question: Question 1 If Two Dice Are Rolled One Time, Find The Probability Of Getting A Sum Greater Than 6 And Less Than 12. Texas A&M University. Noticing these patterns can make counting much easier. 4 And P (B) = 0. When two dice are rolled, we get 36 possible outcome like (1,1),(1,2),(1,3),(1,4),(1,5),(1,6) …………. "If you roll a dice three times, what is the probability of rolling a 6 at least once?" The correct answer is 91/216. Best Answer. For example if n. There are 36 different combinations that can be rolled using 2 die. The probability of the union of two mutually exclusive events — P(one OR five) — is the sum of their probabilites, ie, P(one OR five) = 1/6 + 1/6 = 2/6 = 1/3. Rolling Dice. Expected Value of a. Then P(A) = 4 52. Probability (statistics) What is the probability of getting a sum of 8 in rolling two dice? Update Cancel. Two fair dice are rolled and the sum of the points is noted. For example: 1 roll: 5/6 (83. of ways are - 1 , 1 1 , 2 2 , 1 1 , 4 4 , 1 1 , 6. The probability of rolling a specific number twice in a row is indeed 1/36, because you have a 1/6 chance of getting that number on each of two rolls (1/6 x 1/6). No, other sum is possible because three dice being rolled give maximum sum of (6+6+6) i. and only one way to roll a 12 (6-6, or boxcars). EXPERIMENTAL PROBABILITIES Simulate rolling two dice 120 times. The sum of two dice thrown can be 7 and 11 in the following cases : (6,1) (1,6) (3,4) (4,3) (5,6) (6,5) (2,5) (5,2) The total possible cases are = 36 Favorable cas. Two dice are tossed. Probability of Rolling Multiple of 6 with 2 dice - Duration: 4:19. Sample space S = {H,T} and n(s) = 2. That intuition is wrong. When you roll a pair of dice there are 36 possible outcomes. To find the probability we use the mutually exclusive probability formula P(A) + P(B). A sum less than or equal to 4. Isn’t that kind of cool?. Two dice are tossed. So the probability of getting a sum of 4 is 3/36 or 1/12. 10 5 13 ! Find the probability distribution. So 1/36 is part of the. Sum of Two Dice. hi Dakotah :) A number cube is rolled 20 times and lands on 1 two times and on 5 four times. Rolling two dice. Good morning Edward, I liked your dice probability work on the chances of getting one 6 when rolling different number of dice. The fundamental counting principle tells us there are 6*6=36 ways to roll two dice, all of them equally likely if the dice are fair. , in short (H, H) or (H, T) or (T, T) respectively; where H is denoted for head and 1. Let B be the event - The sum of the top faces of the 3 dice >= 5. What is the. Rolling Two Dice If two dice are rolled one time, find the probability of getting these results. [3 Marks) 0. Probability of Rolling Multiple of 6 with 2 dice - Duration: 4:19. Total possible outcomes = 36. (6,1),(6,2),(6,3),(6,4),(6,5),(6,6) since each 6 numbers. (d) an even number appears on the black dice or the sum of the numbers on the two dice is 7. (it's easier to count the 6 non-red ones and subtract from 36 to get 30). When two dice are thrown, find the probability of getting a number always greater than 4 on the second die. What is the probability that the sum of two rolled dice will equal a prime number? We find this number by multiplying 6 x 6. the probability that the sum is 6 given that at least one of the numbers is less than 3. To find the probability determine the number of successful outcomes divided by the number of possible outcomes overall. You might be asked the probability of rolling a variety of results for a 6 Sided Dice: five and a seven, a double twelve, or a double. But this time, the dice aren't fair: For each die, a 1 is twice as likely to be rolled as a 2, a 2 is twice as likely to be rolled as a 3, , and a 5 is twice as likely to be rolled as a 6 (in other words, each number is twice as likely as the number that follows it). Hi I wrote code for Java program to simulate the rolling of 2 dice. Sum up all of the Power on the Groups in the uncontrolled area. The game is designed as such that you throw a pair of dice and get money back or loose money. Roll 4 6-sided dice, keep the highest 3 and sum them: sum largest 3 4d6. As the chart shows the closer the total is to 7 the greater is the probability of it being thrown. two-dice-are-rolled-simultaneously-find-the-probability-of-getting-a-total-of-9SingleChoice5b5cc7d1e4d2b419777512684. of favorable. When you roll a pair of dice there are 36 possible outcomes. a sum that is divisible by 4 e. Brian Veitch 101,870 views. $\endgroup$ – Squirtle Aug 5 '13 at 19:31. What is the probability that the sum of two of the faces rolled equals the value of the other rolled face?. You might roll a single 6, which means one of the dice is showing 6 and the others are all showing 1-5, and there are 6 different ways to choose which die is showing 6. What is the. We want sum to be greater than 16, So, sum could be either 17 or 18. two-dice-are-rolled-simultaneously-find-the-probability-of-getting-a-total-of-9SingleChoice5b5cc7d1e4d2b419777512684. Find the Probability of Getting : (Ii)Sum Divisible by 5 Concept: Simple Problems on Single Events. Number of outcomes of the experiment that are favorable to the event that a sum of two events is 6. Here, the sample space is given when two dice are rolled. Since there are a total of 6 x 6 = 36 outcomes, then the probability that the sum will be greater than 10 is 3/36 = 1/12. It compiles alright but I am not getting the output. The probability of not rolling a sum of six with two fair dice is 1 minus the probability of rolling a sum of six. The sum is 2 /9. Thus, the probability of two odd numbers (no even numbers) is (1/2)*(1/2) = 1/4. What is the probability of getting a flush in a. Get a free answer to a quick problem. from Rosemount. Solution Two Dice (Each Bearing Numbers 1 to 6) Are Rolled Together. Roll 3d6 six times, then pick the best result. What is the probability that the sum of the two tosses is 4?. Okay, so basically it says someone rolls two dice and its asking about the probability of rolling certain sums of the two dice. As such, the probability of both dice (dice 1 and Dice 2) rolling a 1 is 1/36, calculated as 1/6 x 1/6. Of these, 6 have a sum less than five, 1+1, 1+2, 1+3, 2+1, 2+2, and 3+1. There are 4 combinations that have the sum of 9. 33 Question 3 Let A And B Be Two Independent Event, Such That P (A) = 0. Chapter 13 Probability Solutions covers multiple exercises. My own intuition tells me the answer is 2/3 because the other die simply needs to show 3, 4, 5, or 6 for the sum to be at least 5. Sum up all of the Power on the Groups in the uncontrolled area. The probability of one dice not being a particular number is 5/6. The events "getting sum less than 8" and. If we discard the 6 rolls that gave the same numbers, then the odds of getting a six is. What is the distribution of the sum? 30. (d) A sum that is divisible by 4. The other two singletons can be among the other five. Current Stock: Quantity: Decrease Quantity: 1 Increase Quantity: Add to Wish List Description 1. Which of the pairs of events below is dependent? ____&lowbar. ECEN 303 - Fall 2011. However, when it comes to practical application, there are two major competing categories of probability. How likely is it to choose a random number between 10 and 100 that is a multiple of 9? 6. What is the expected value when we roll a fair die? There are six possible outcomes: 1, 2, 3, 4, 5, 6. TE Thaddeus Moss was signed after going undrafted. [3 Marks) 1 13 5 Question 2 Find The Z Score That Corresponds To The Given Area. (b) Find the conditional probability of obtaining the sum 8, given that the red die resulted in a number less than 4. Find the probability of the lost card being a diamond. Independent probabilities are calculated using: Probability of both = Probability of outcome one × Probability of outcome two So to get two 6s when rolling two dice, probability = 1/6 × 1/6 = 1/36 = 1 ÷ 36 = 0. Therefore, the probability of rolling a 6 is 36 5. So we just need to work out the probability of rolling a 7, then take half of what's left. So we have 5/6 probability of a die's being <6, and then 5/6 for each of the other pairs' not. Dice roll probability: 6 Sided Dice Example. To find the probability we use the mutually exclusive probability formula P(A) + P(B). Two dice are rolled. Here, the sample space is given when two dice are rolled. A card from a pack of 5 2 cards is lost. The probability of not rolling a sum of six with two fair dice is 1 minus the probability of rolling a sum of six. Example 7: A die is rolled, find the probability of getting a 3. It’s very common to find questions about dice rolling in probability and statistics. (i) To get the sum of numbers 4 or 5 favourable outcomes are: (1, 3) ,(3, 1) , (2,2). Two fair dice are rolled and the sum of the points is noted. What is the probability of getting a straight by a single throw of 5. You ask for P(A|B). A single die is rolled twice. The other two singletons can be among the other five. For four six-sided dice, the most common roll is 14, with probability 73/648; and the least common rolls are 4 and 24, both with probability 1/1296. They were both great football fans and decided to introduce this game to the workers of the factory. Two fair dice are rolled and the sum of the points is noted. There are 62=36 possible outcomes when a pair of dice are rolled. a sum less than 13. That intuition is wrong. Example 8: A die is rolled, find the probability of getting an even number. When two dice are thrown together total possible outcomes = 6 X 6 = 36 Favourable outcomes when both dice have number more than 3 are (4, 4), (4, 5),(4, 6), (5, 4), (5, 5). Sums of two independent Binomial random variables. The sum of two dice thrown can be 7 and 11 in the following cases : (6,1) (1,6) (3,4) (4,3) (5,6) (6,5) (2,5) (5,2) The total possible cases are = 36 Favorable cas. This is a good introduction to probability, since you can see which combinations are more. Probability for rolling two dice with the six sided dots such as 1, 2, 3, 4, 5 and 6 dots in each die. Throwing Dice More Than Once. 444%) probability of NOT rolling a 5. Find the probability of the lost card being a diamond. When two 6 sided dice is tossed, we get a pair of outcomes. When two six-sided dice are tossed, there are 36 possible outcomes as shown. Two dice are thrown simultaneously. Find the expected number of games that are played when. There are 36 permutations of two dice. The probability of choosing a green marble from the jar. (i) Prime numbers = 2, 3 and 5 Favourable number of events = 3 Probability that it will be a prime. Because there are 36 possibilities in all, and the sum of their probabilities must equal. The probability of getting an outcome of "head-head" is 1 out of 4 outcomes, or, in numerical terms, 1/4, 0. From the remaining cards of the pack, two cards are drawn and are found to be diamonds. (a) Find the conditional probability of obtaining a sum greater than 9, given that Given that the two numbers appearing on throwing two dice are different. The term "snake eyes" is the outcome of rolling the dice and getting only one pip on each die. Calulate the probability of getting a double or treble on a dartboard. When you roll a pair of dice there are 36 possible outcomes. dice = 3 , we’re rolling three four-sided dice, i. The probability of getting a sum of 5 when rolling two dice is 4/36 = 1/9 because there are 4 ways to get a five and there are 36 ways to roll the dice (Fundamental Counting Principle - 6 ways to roll the. Using an organized list, table, tree diagram, or method of your choosing, develop a list of all 16 possible outcomes (for example, Die #1 = 1 and Die #2 = 2 for a difference of 1; Die #1 = 1 and Die #2 = 4 for a difference of 3; and so on). If the two dice are fair and independent , each possibility (a,b) is equally likely. Compute the total probability of getting a 4 or a 9: 3/36 + 4/36 = (3 + 4)/36. My own intuition tells me the answer is 2/3 because the other die simply needs to show 3, 4, 5, or 6 for the sum to be at least 5. The probabilities of rolling several numbers using two dice. > Consider this matrix for two dice roll game $\textrm{Total outcomes with the sum}$ $3 = 2$ \textrm{Total outcomes with the sum}[/math. For three six-sided dice, the most common rolls are 10 and 11, both with probability 1/8; and the least common rolls are 3 and 18, both with probability 1/216. We start with writing a table to Discrete = This means that if I pick any two consecutive outcomes. Find each experimental probability. What is the probability of getting a number other than 6?. Notice how for two or more dice the number of combinations equals the sum of combinations one column to the left, starting from one row higher to seven rows higher. When rolling two dice, distinguish between them in some way: a first one and second one, a left and a right, a red and a green, etc. California would be the lead Group, as it has two opposed alignments. The probability of throwing any given total is the number of ways to throw that total divided by the total number of combinations (36). I hope this helps, Harley Go to Math Central. Here we consider two events: A - (finding a sum of 8) & B (getting at least one 4) A : Probability of A is 5/36 because Now, the probability of either of the incidents happening is P(AUB)=P(A)+P(B)-P(AnnB) i. Major changes in Python environment : . There are 6*3 = 18 ways to get two numbers of the same parity (the first can be any of the 6 numbers, and the second has to be 3 of the possible 6 which have the same parity), giving a total of 18 ways to get an even sum out of a possible of 6*6 = 36 outcomes (we don't have to consider if the first number is even or odd since there are an equal. Find the Probability that the Sum of the Numbers on the Upper-most Faces of Two Dice Is: Less than 6 Concept: Probability - A Theoretical Approach. P(2 twos and 2 ones and the other two different ) + P(2 sixes and 2 ones and 2 of some other number). Find the probability that the student sold 11-15 shirts or less than 6 T's No of T-shirts No of Club Members 0 1 1-5 15 6-10 13 11-15 3 16-20 6 20+ 1. Find the joint probability mass function of X and Y when (a) X is the largest value obtained on any die and Y is the sum of the values; (b) X is the value on the first die and Y is the larger of the two values; (c) X is the smallest and Y is the largest value obtained on the dice. A standard deck of cards has 12 face. Experimental Probability: Experiment with probability using a fixed size section spinner, a variable section spinner, two regular 6-sided dice or customized dice. Try the following: 1. Find the probability of: getting a number greater than 3 on each die. There are a total of 36 different rolls with two dice, with any sum from 2 to 12 possible. Probability = 1 ÷ 36 = 0. Three fair, n-sided dice are rolled. In 1887, two other cotton industrialists from Lancashire, Clement and Harry Charnock, moved to work at a cotton factory in Orekhovo-Zuevo, near Moscow. Get an answer for 'When two dice are thrown what is the probability that the sum is 8. (f) A sum less than 13. P(sum divisible by 5)= 7/36. Suppose we have 3 unbiased coins and we have to find the probability of getting at least 2 heads, so there are 23 = 8 ways to toss these coins, i. dice = 3 , we’re rolling three four-sided dice, i. Probability of Rolling Multiple of 6 with 2 dice - Duration: 4:19. Question: Question 1 If Two Dice Are Rolled One Time, Find The Probability Of Getting A Sum Greater Than 6 And Less Than 12. Rolling more dice. of the event of rolling a. Highest Possible Sum Using 4: 4 + 6 = 10. My own intuition tells me the answer is 2/3 because the other die simply needs to show 3, 4, 5, or 6 for the sum to be at least 5. Therefore the number of possible outcomes will be 6*6 = 36. What is the conditional probability that at least one lands on 6 given that the dice land Probability of a woman being a smoker given she has ectopic pregnancy • E: ectopic pregnancy Did you find mistakes in interface or texts? Or do you know how to improveStudyLib UI?. Question 4: Two dice are rolled, find the probability that the sum is a) equal to 1 b) equal to 4 c) less than 13 Solution to Question 4: a) The sample space S of two dice is shown below. Algebra -> Probability-and-statistics -> SOLUTION: Two dice are rolled. (6,1),(6,2),(6,3),(6,4),(6,5),(6,6) since each 6 numbers. Find the probability that a 5 will occur first. From the remaining cards of the pack, two cards are drawn and are found to be diamonds. When two are rolled, simultaneously, find the probability that the sum of the numbers on them is at least 9. Let X denote the sum of the number of dots on the top faces. When we toss two coins simultaneously then the possible of outcomes are: (two heads) or (one head and one tail) or (two tails) i. , HHH, HHT, HTH, HTT, THH, THT, TTH, TTT. The table marks with X all the possible combinations of throws. Example 7: A die is rolled, find the probability of getting a 3. (ii) 7 , 8 or 9. The events "getting sum less than 8" and. If you roll a die will obtain 1, 2, 3, 4, 5 or 6? Probability measures and quantifies "how likely" an Let us define event E as the set of possible outcomes where the sum of the numbers on the faces of the two dice is equal to four. Probability (statistics) What is the probability of getting a sum of 8 in rolling two dice? Update Cancel. (i) Prime numbers = 2, 3 and 5 Favourable number of events = 3 Probability that it will be a prime. The probability of getting less than 8 is the sum of the probabilities of 2-7:. (1, 1, 1) = 1+1+1=3. Suppose that each game played is, independently, won by team A with probability p. Let’s say you need the probability of rolling a 5 and a 4. Independent probabilities are calculated using: Probability of both = Probability of outcome one × Probability of outcome two So to get two 6s when rolling two dice, probability = 1/6 × 1/6 = 1/36 = 1 ÷ 36 = 0. Subject: Re: Probability: Two six-sided dice, rolling two numbers in order. two dice are rolled find the probability of getting a 5 on either dice or the sum of both dice is 5. Major changes in Python environment : . 5 ways to get a sum of 6. What is the probability that the sum of the two dice will not be a 6? 31/36. SOLUTION: Two dice are rolled. Thus, the probability of two odd numbers (no even numbers) is (1/2)*(1/2) = 1/4. Total number of outcomes = 6*6 = 36, Each die can take a number from 1 to 6 i. A standard deck of cards has 12 face. From the remaining cards of the pack, two cards are drawn and are found to be diamonds. Get an answer for 'When two dice are thrown what is the probability that the sum is 8. The probability of rolling an even number on 1 die is 3/6. The probability of two dice not being a that number is 5/6 x 5/6 = 25/36. Let B be the event - The sum of the top faces of the 3 dice >= 5. from Rosemount. Find maximum subset sum formed by partitioning any subset of array into 2 partitions with equal sum. The ways to get a 4 are: 1+3, 2+2, 3+1 = 3 ways. There are 6 6 possible outcomes. This is the aptitude questions and answers section on "Probability" with explanation for various interview, competitive examination and entrance test. Get a free answer to a quick problem. [3 Marks) 0. Let X1 and X2 be the outcomes, and let S2 = X1 + X2 be the sum of these outcomes. In a tabular format it should show the frequency of rolling 2,3,4,5,6,7,8,9,10,11,12 and also the percentage. Throwing a 10 yields 0. With dice there is: 1 way to get a sum of 2. Roll two dice. What is the probability that the sum of the two dice will not be a 6? 31/36. When rolling one die, the probability of getting a 4 is 1 in 6, or 0. Probability (statistics) What is the probability of getting a sum of 8 in rolling two dice? Update Cancel. Probability - Quantitative Aptitude objective type questions with answers & explanation (MCQs) for job Now a shirt is picked from second box. For each of the possible outcomes add the numbers on the two dice and count how many times this sum is 7. Of these, 6 have a sum less than five, 1+1, 1+2, 1+3, 2+1, 2+2, and 3+1. Find the Mean of the Roll z column; OK; Repeat process except find the Standard Deviation of the Roll z column; By hand (with a calculator) square the standard deviation to get the variance. If a pair of dice are rolled 5 times, what is the probability of getting a sum of 5 every time?. Isn’t that kind of cool?. Each dice has six combinations which are independent. (6,1),(6,2),(6,3),(6,4),(6,5),(6,6) since each 6 numbers. the black die resulted in a 5. (i) Prime numbers = 2, 3 and 5 Favourable number of events = 3 Probability that it will be a prime. We have to find what is the probability that the sum of numbers rolled is either 5 or 12 We know that, probability of an event = Now, total outcomes for two dices = 6 for 1st dice x 6 for 2nd dice = 6 x 6 = 36. Draw a card. a sum that is divisible by 4 e. Let's write events!! Let A be the event - The sum of the top faces of 3 dice > 8. That intuition is wrong. When two dice are thrown, find the probability of getting a number always greater than 4 on the second die. With dice there is: 1 way to get a sum of 2. Find the probability that a 5 will occur first. 1 die, 2 dice. When two dice are rolled, total no. The probability of getting a sum of 5 when rolling two dice is 4/36 = 1/9 because there are 4 ways to get a five and there are 36 ways to roll the dice (Fundamental Counting Principle - 6 ways to roll the. Find the joint probability mass function of X and Y when (a) X is the largest value obtained on any die and Y is the sum of the values; In this first case, we have p X,Y ( x,y ) 2 3 4 5 6 d Suppose you dont know the probability p of getting a ticket but you got 5. Rolling Dice. Find the Mean of the Roll z column; OK; Repeat process except find the Standard Deviation of the Roll z column; By hand (with a calculator) square the standard deviation to get the variance. For example, the event "the sum of the faces showing on the two dice equals six" consists of the five The probability of an event is defined to be the ratio of the number of cases favourable to the. Four fair, 6-sided dice are rolled. In the experiment of rolling two dice think of one as red and the other as green and list the possible Here, for example, the (3,5) in third row and fifth column means a 3 was rolled on the red die and a 5 Thus the sum is a 7 in 6 of the 36 outcomes and hence the probability of rolling a 7 is 6/36 = 1/6. This probability of both dice rolling a 2 or 3 or 4 or 5 or 6 is also 1/36. To find the probability. A Recursion Formula for the Probability Distribution of the Sum of k Dice In this section we derive a recursion formula for the probability distribution ofthe sum of j dice, using the probability distribution ofthe sum of 7 -1 dice. 333%) probability of NOT rolling a 5 2 rolls: (5/6) x (5/6) (69. With every new roll the probability the next four rolls will be all double sixes is (1/36)4 = 1 in 1679616. Event Die 1 Die 2 Sum 1 2 3 4 5 6 7 8 9. The other die roll could be a 1, 2, 3, 4, 5, or 6. 2) a sum of 6 or 7 or 8 b) doubles or a sum of 4 or 6 c) a sum greater than 9 or less than 4, Please help me. Rolling Dice. The total of points is 21 and the actual corresponding dice roll (we have to sum 1 pre-assigned point to each die) would be {2,7,1,5,1,1,4,2,7,1}, with sum 31 but with two outlaw dice. (f) A sum less than 13. A pair of dice, two different colors (for example, red and blue) A piece of paper; Some M&M’s or another little treat; What You Do: Tell your child that he's going to learn all about probability using nothing but 2 dice. Two 6-sided dice are rolled. a sum less than 13. Dependent Event - An event whose probability of occurring is influenced by (i. two dice are rolled find the probability of getting a 5 on either dice or the sum of both dice is 5. Is this solution Helpfull? Yes (28) | No (6). The probability distribution of a discrete random variable X is a listing of each possible value x taken by X. What is the. A single die is rolled twice. I recently got asked how to find the probability of rolling a sum of 12 with two dice. Therefore, in this example, we could write: p1 = p2 = p3 = p4 = p5 = p6 = where p1 ≡ probability of rolling a 1, p2 ≡ probability of rolling a 2, etc. 16&comma. Find the probability of correctly answering the first 2 questions on a multiple choice test if random guesses are made and each question has 5 possible answers. What is the. Throwing a 6,5,4,3,2 or 1 deducts 0. sum that takes two arguments: n. Find the joint probability mass function of X and Y when (a) X is the largest value obtained on any die and Y is the sum of the values; (b) X is the value on the first die and Y is the larger of the two values; (c) X is the smallest and Y is the largest value obtained on the dice. > Consider this matrix for two dice roll game [math]\textrm{Total outcomes with the sum} $3 = 2$ $\textrm{Total outcomes with the sum}[/math. The probability of not rolling a sum of six with two fair dice is 1 minus the probability of rolling a sum of six. 4d10 are enough to sample uniformly from between 1 and 10,000), but it becomes increasingly tedious to generate larger numbers. the probability of the sum being: 2 is 1/36 3 is 2/36 4 is 3/36 5 is 4/36 6 is 5/36 7 is 6/36 8 is 5/36 9 is 4/36 10 is 3/36 11 is 2/36 12 is 1/36 It then asks: P(the sum of the two dice equals 2) P(the sum of the two. From the remaining cards of the pack, two cards are drawn and are found to be diamonds. The logic is there are six sides to each die, so for each number on one You did the math for the probability of rolling a dice twice and getting a multiple of 3 on both rolls. We want sum to be greater than 16, So, sum could be either 17 or 18. Online binomial probability calculator using the Binomial Probability Function and the Binomial Entering 0. If I roll two dice, does my probability of rolling a six on one of them increase, or does it stay at 1/6? Mike R. the probability that the sum is 6 given that at least one of the numbers is less than 3. Let B be the event - The sum of the top faces of the 3 dice >= 5. 7) F Two dice are rolled. There are 36 different combinations that can be rolled using 2 die. > Consider this matrix for two dice roll game [math]\textrm{Total outcomes with the sum}$ $3 = 2$ $\textrm{Total outcomes with the sum}[/math. A pair of dice is rolled until either the two numbers on the dice agree or the difference of the two numbers on the dice is 1 (such as a 4 and a 5, or a 2 and a 1). The probability of either of the incidents happening is 5/12. two dice are rolled find the probability of getting a 5 on either dice or the sum of both dice is 5. 8: 5/369: 4/3610: 3/3611: 2/3612: 1/36. Question 4: Two dice are rolled, find the probability that the sum is a) equal to 1 b) equal to 4 c) less than 13 Solution to Question 4: a) The sample space S of two dice is shown below. A standard deck of cards has 12 face. Probability for rolling two dice with the six sided dots such as 1, 2, 3, 4, 5 and 6 dots in each die. Hamilton sat just 1. Dice and Dice Games. Number of outcomes of the experiment that are favorable to the event that a sum of two events is 6. Major changes in Python environment : . My own intuition tells me the answer is 2/3 because the other die simply needs to show 3, 4, 5, or 6 for the sum to be at least 5. Two fair dice are rolled and the sum of the points is noted. The probabilities in the probability distribution of a random variable X must satisfy the following two A pair of fair dice is rolled. Since there are 6 \times 6 = 36 total dice rolls and 1/3 of those are a multiple of three, the number which are divisible by three is (1/3)(36) = \boxed{12}. Find probability nobody gets own hat. equals to prime number when we add two rolled dice from 1 to 6 So no. Find the probability of getting a sum of 6. Probability (statistics) What is the probability of getting a sum of 8 in rolling two dice? Update Cancel. Memorizing the making of the above picture makes the. If two dice are rolled one time, find the probability of getting these results. A sum less than or equal to 4. You ask for P(A|B). There are 6 6 possible outcomes. Is this unusual? On average, it will occur about 1 in 12 times. Let B be the event - The sum of the top faces of the 3 dice >= 5. Rolling more dice. dice tells how many dice we roll. To support your homeschooling, we're including unlimited answers with your free account for the time being. Assuming that the dice are unbiased or not " loaded". The probability of the two dice totaling an even number is 1/2. It is assume each die is fair and 6-sided. Now, favourable outcomes = sum. In this skilltest, we tested our. 4d6, drop lowest, reroll if max < 14 or reroll if the sum of the modifiers is < 1. When rolling one die, the probability of getting a 4 is 1 in 6, or 0. 7) F Two dice are rolled. 6 outcomes on one die X 6 outcomes on other die = 36 outcomes. So we just need to work out the probability of rolling a 7, then take half of what's left. Let B be the event - The sum of the top faces of the 3 dice >= 5. Find the probability of getting a multiple of 2 on one dice and multiple of 3 on the other dice. (i) Prime numbers = 2, 3 and 5 Favourable number of events = 3 Probability that it will be a prime. Find the probability that a 5 will occur first. Explanation of the fundamental concepts of probability distributions. For example: 1 roll: 5/6 (83. Find the probability of getting a sum of 6 when rolling a pair of dice. (i) To get the sum of numbers 4 or 5 favourable outcomes are: (1, 3) ,(3, 1) , (2,2). A Collection of Dice Problems Matthew M. So the probability of a sum of at least 5 is 30 out of 36, which gives us the fraction which reduces to. When two balanced dice are rolled, 36 equally likely outcomes. Then P(A) = 4/36 and P(B) = 6/36. The probability that it is a double with a sum of 11 is zero (0) When Two Balanced Dice Are Rolled, There Are 36 Possible. Is that unusual enough? We have to be careful when we characterize an event as unusual. 1/18 5/36 1/6 1/9. Speech recognition, image recognition, finding patterns in a dataset, object classification in photographs, character text generation, self-driving cars and many more are just a few examples. What is the probability of getting a 5 after rolling a single 6-sided die? 1/6 or 16. What is the probability of getting a number other than 6?. You ask for P(A|B). Probability (statistics) What is the probability of getting a sum of 8 in rolling two dice? Update Cancel. What is the probability of getting a flush in a. On a mission to transform learning through computational thinking, Shodor is dedicated to the reform and improvement of mathematics and science education through student enrichment. ECEN 303 - Fall 2011. Suppose we have 3 unbiased coins and we have to find the probability of getting at least 2 heads, so there are 23 = 8 ways to toss these coins, i. hi Dakotah :) A number cube is rolled 20 times and lands on 1 two times and on 5 four times. Independent probabilities are calculated using: Probability of both = Probability of outcome one × Probability of outcome two So to get two 6s when rolling two dice, probability = 1/6 × 1/6 = 1/36 = 1 ÷ 36 = 0. Find the probability of getting a sum of 7. Rolling Dice. Obviously with two dice you can't get less than 2 or more than 12, so the only squares are 4 and 9. No, other sum is possible because three dice being rolled give maximum sum of (6+6+6) i. Example 8: A die is rolled, find the probability of getting an even number. A Recursion Formula for the Probability Distribution of the Sum of k Dice In this section we derive a recursion formula for the probability distribution ofthe sum of j dice, using the probability distribution ofthe sum of 7 -1 dice. What Is The Probability That The Sum Of 8 Does Not Occur?. Dice roll probability: 6 Sided Dice Example. We start with writing a table to Discrete = This means that if I pick any two consecutive outcomes. The sum is 2 /9. If we assume the die is perfectly balanced, the probability of any particular outcome (say, rolling a ‘3’) is 1 out of 6. asked by Jacqueline on August 28, 2015; math. Solution Two Different Dice Are Thrown at the Same Time. Calculate the is the conditional probability that the Finding P (E): The probability of getting 4 atleast once is. [3 Marks) 1 13 5 Question 2 Find The Z Score That Corresponds To The Given Area. Two rolls are independent and identically distributed, with probability of rolling a particular number being 1/6. Is this unusual? On average, it will occur about 1 in 12 times. Let's write events!! Let A be the event - The sum of the top faces of 3 dice > 8. The probability of appearance of any of two incompatible events is equal to the sum of the The conditional probability of an event B with the condition that an event A has already happened is. a sum that is divisible by 4 e. Two tetrahedral dice (four-sided dice) are thrown. A dice is thrown, cases 1,2,3,4,5,6 form an exhaustive set of events. The probability of rolling a specific number twice in a row is indeed 1/36, because you have a 1/6 chance of getting that number on each of two rolls (1/6 x 1/6). Experimental Probability: Experiment with probability using a fixed size section spinner, a variable section spinner, two regular 6-sided dice or customized dice. It's somehow different than previously because only a part of the whole set has to match the conditions. It is assume each die is fair and 6-sided. Roll two dice. Memorizing the making of the above picture makes the. Of these, five sum to six, 1+5, 2+4, 3+3, 4+2, and 5+1. Two different coins are tossed randomly. Is that unusual enough? We have to be careful when we characterize an event as unusual. Of these, five sum to six, 1+5, 2+4, 3+3, 4+2, and 5+1. Find the probability of getting two numbers whose sum is greater than 10. Two rolls are independent and identically distributed, with probability of rolling a particular number being 1/6. 5 or 1/2 in the calculator and 100 for the number of trials and 50 for "Number of events" we get Example 2: Dice rolling. > Consider this matrix for two dice roll game [math]\textrm{Total outcomes with the sum}$ $3 = 2$ [math]\textrm{Total outcomes with the sum}[/math. (e) A sum of 14. [3 Marks) 0. Compute the total probability of getting a 4 or a 9: 3/36 + 4/36 = (3 + 4)/36. The probability of rolling a six on a single roll of a die is 1/6 because there is only 1 way to roll a six out of 6 ways it could be rolled. The pair can be any one of 6 numbers. The probability of either of the incidents happening is 5/12. Texas A&M University. Calulate the probability of getting a double or treble on a dartboard. Find the expected number of times one needs to roll a dice before getting 4 sixes. Therefore, x can be any number from. It compiles alright but I am not getting the output. That takes care of the winning or losing probabilities for the naturals (7,11) and the craps (2,3,12) outcomes. Is this unusual? On average, it will occur about 1 in 12 times. a sum of 14 f. Roll each attribute in order - do not assign numbers to stats as you see fit. Find the probability of the lost card being a diamond. "If you roll a dice three times, what is the probability of rolling a 6 at least once?" The correct answer is 91/216. A glass jar contains 6 red, 5 green, 8 blue and 3 yellow marbles. The proability of getting neither is equal to the probability of getting anything other than 7 or 8. Thus, the probability of two odd numbers (no even numbers) is (1/2)*(1/2) = 1/4. Let A be event of rolling a 5 and B of rolling a 7. Total possible outcomes = 36. If one of the dice shows 1 to 4, the sum will not be greater than 10. 2 ways to get a sum of 3. You may get a side with 1, 2, 3, 4, 5, or 6 dots. 16667, to turn up when rolled, if the die (D) is unbiased. If I roll two dice, does my probability of rolling a six on one of them increase, or does it stay at 1/6? Mike R. the probability that the sum is 6 given that at least one of the numbers is less than 3. The ways to get a 9 are: 3+6, 4+5, 5+4, 6+3 = 4 ways. Let E denote the event that the number landing uppermost on the first die is a 3, and let F denote the event that the sum of Which pair has equally likely outcomes? Check the two choices below which have equal probabilities of success. 33 Question 3 Let A And B Be Two Independent Event, Such That P (A) = 0. The number of possible outcomes in E is 1 and the number of possible outcomes in S is 6. The combinations for rolling a sum of seven are much greater (1 and 6, 2 and 5, 3 and 4, and so on). The sum of the two dice you rolled is. Of these, 6 have a sum less than five, 1+1, 1+2, 1+3, 2+1, 2+2, and 3+1. The probability of rolling any number twice in a row is 1/6, because there are six ways to roll a specific number twice in a row (6 x 1/36). Independent probabilities are calculated using: Probability of both = Probability of outcome one × Probability of outcome two So to get two 6s when rolling two dice, probability = 1/6 × 1/6 = 1/36 = 1 ÷ 36 = 0. 7) F Two dice are rolled. There are 36 permutations of rolling two dice. The odds of rolling two dice and the sum being greater than 9 are 6 to 30. Find the probability of getting two numbers whose sum is greater than 10. When two six-sided dice are tossed, there are 36 possible outcomes as shown. The game is designed as such that you throw a pair of dice and get money back or loose money. In this way, the difference value for any roll of the two dice will always be positive or 0. Two different dice are thrown together. So the probability of not getting 7 or 11 is 7/9. Sum of dices when three dices are rolled together If 1 appears on the first dice, 1 on the second dice and 1 on the third dice. When two dice are rolled, we get 36 possible outcome like (1,1),(1,2),(1,3),(1,4),(1,5),(1,6) …………. Throwing Dice More Than Once. If a pair of dice are rolled 5 times, what is the probability of getting a sum of 5 every time?. Example: Roll two 6-sided dice 0. That takes care of the winning or losing probabilities for the naturals (7,11) and the craps (2,3,12) outcomes. 78% If you need to get the probability of acquiring two different numbers when you roll a pair of dice, the calculation becomes a bit different. On a mission to transform learning through computational thinking, Shodor is dedicated to the reform and improvement of mathematics and science education through student enrichment. Assuming that the dice are unbiased or not " loaded". From the remaining cards of the pack, two cards are drawn and are found to be diamonds. To find the probability that the sum of the two dice is three, we can divide the event frequency (2) by the size of the sample space (36), resulting in a probability of 1/18. Here are a few examples that show off Troll's dice roll language: Roll 3 6-sided dice and sum them: sum 3d6. The probability that the first die rolls 3 and the second die rolls 1 is also 1/36. Roll each attribute in order - do not assign numbers to stats as you see fit. when two dice are rolled, find the probability of getting: a. The total of points is 21 and the actual corresponding dice roll (we have to sum 1 pre-assigned point to each die) would be {2,7,1,5,1,1,4,2,7,1}, with sum 31 but with two outlaw dice. Suppose that the first die we roll comes up as a 1. Find the probability of getting a sum of 6 when rolling a pair of dice. What is the probability of rolling a 6 with a pair of standard dice? There are five ways to roll a 6: (1,5)(2,4)(3,3)(4,2), and (5,1). That takes care of the winning or losing probabilities for the naturals (7,11) and the craps (2,3,12) outcomes. It is a relatively standard problem to calculate the probability of the sum obtained by rolling two dice. Throwing a 6,5,4,3,2 or 1 deducts 0. What is the. As the chart shows the closer the total is to 7 the greater is the probability of it being thrown. Rolling two dice. Here, the sample space is given when two dice are rolled. What is the probabilities of getting at least a 1 OR a 5 with 1 die, 2 dice, 3 dice, etc. a sum less than 4 or greater than 9 d. Calulate the probability of getting a double or treble on a dartboard. What is the probability that exactly two of the dice show a 1 and exactly two of the dice show a 2? Express your answer as a common fraction. 6 outcomes on one die X 6 outcomes on other die = 36 outcomes. From the remaining cards of the pack, two cards are drawn and are found to be diamonds. 5 ways to get a sum of 6. A black and a red dice are rolled Let us take first numbers to have been appeared on the black die and the second numbers on rolled. 4d10 are enough to sample uniformly from between 1 and 10,000), but it becomes increasingly tedious to generate larger numbers. The probability of getting less than 8 is the sum of the probabilities of 2-7:. What Is The Probability That The Sum Of 8 Does Not Occur?. Two fair dice are rolled. , in short (H, H) or (H, T) or (T, T) respectively; where H is denoted for head and 1. Question: Question 1 If Two Dice Are Rolled One Time, Find The Probability Of Getting A Sum Greater Than 6 And Less Than 12. This resulted in the first professional. Roll two dice. Rolling more dice. Find the probability that a 5 occurs first. Here, the sample space is given when two dice are rolled. Let B be the event - The sum of the top faces of the 3 dice >= 5. Question 1033885: Three dice are tossed. Since there are $6 \times 6 = 36$ total dice rolls and $1/3$ of those are a multiple of three, the number which are divisible by three is $(1/3)(36) = \boxed{12}$. We’ll look at two approaches to finding the likely outcomes in kdb/q: Method 1 – Enumeration of all possibilities. the probability that the sum is 6 given that at least one of the numbers is less than 3. A card from a pack of 5 2 cards is lost. Two fair dice are rolled and the sum of the points is noted. There are 6*3 = 18 ways to get two numbers of the same parity (the first can be any of the 6 numbers, and the second has to be 3 of the possible 6 which have the same parity), giving a total of 18 ways to get an even sum out of a possible of 6*6 = 36 outcomes (we don't have to consider if the first number is even or odd since there are an equal. If a fair dice is thrown 10 times, what is the probability of throwing at. Remind him that there are 6 options on both sides. Sum of dices when three dices are rolled together If 1 appears on the first dice, 1 on the second dice and 1 on the third dice. My own intuition tells me the answer is 2/3 because the other die simply needs to show 3, 4, 5, or 6 for the sum to be at least 5. When two dice are thrown together total possible outcomes = 6 X 6 = 36 Favourable outcomes when both dice have number more than 3 are (4, 4), (4, 5),(4, 6), (5, 4), (5, 5). When two dice are rolled, the probability of getting an even number on at least one die is 3/4. The probability of one dice not being a particular number is 5/6. (a) Find the conditional probability of obtaining a sum greater than 9, given that Given that the two numbers appearing on throwing two dice are different. (6,1),(6,2),(6,3),(6,4),(6,5),(6,6) since each 6 numbers. When two six-sided dice are tossed, there are 36 possible outcomes as shown. If a pair of dice are rolled 5 times, what is the probability of getting a sum of 5 every time?. 3) Drawing a card from a regular deck of 52 playing cards has 52 possible outcomes. The probability of throwing any given total is the number of ways to throw that total divided by the total number of combinations (36). asked by yorkie16 on April 25, 2009; arithmetic. find the probability of obtaining Of these the sum of 5 is only possible with 1+4 and 2+3. 33 Question 3 Let A And B Be Two Independent Event, Such That P (A) = 0. That intuition is wrong. "getting a sum of odd number" would be mutually exclusive (disjoint). You absolutely need to count $2+5$ AND $5+2$, because the die act independently of each other its not like if one possibility exists the other doesn't. For example: 1 roll: 5/6 (83. The sum of the two numbers rolled are shown below:. A black and a red dice are rolled Let us take first numbers to have been appeared on the black die and the second numbers on rolled. What is the probability that the sum of two of the faces rolled equals the value of the other rolled face?. Dice and Dice Games. outcomes when two dice are tossed. If you only take two of the three for the sum, there are still 216 total outcomes to look at. If you roll a die will obtain 1, 2, 3, 4, 5 or 6? Probability measures and quantifies "how likely" an Let us define event E as the set of possible outcomes where the sum of the numbers on the faces of the two dice is equal to four. Use separate lists for the results of each die, and a third list for the sum. Probability Chapter 13 of Class 12 is one of the most important topics in Maths CBSE Board Exams. Find probability nobody gets own hat. (6,1),(6,2),(6,3),(6,4),(6,5),(6,6) since each 6 numbers. As the chart shows the closer the total is to 7 the greater is the probability of it being thrown. A single die is rolled twice. The probability of Dice 2 rolling a 1 is also 1/6. You may get a side with 1, 2, 3, 4, 5, or 6 dots. So there are 6*combin (5,2)=60 combinations already. As such, the probability of both dice (dice 1 and Dice 2) rolling a 1 is 1/36, calculated as 1/6 x 1/6. Find each experimental probability. the probability that the sum is 6 given that at least one of the numbers is less than 3. Hence, the combination (1,3) is Below you can check our random "roll of dice" generator. 9,10) things get slightly more complicated. What is the probability that the sum of two rolled dice will equal a prime number? We find this number by multiplying 6 x 6. What is the probability that the sum of the two tosses is 4?. Two fair dice are rolled and the sum of the points is noted. 2) a sum of 6 or 7 or 8 b) doubles or a sum of 4 or 6 c) a sum greater than 9 or less than 4, Please help me. , HHH, HHT, HTH, HTT, THH, THT, TTH, TTT. The numbers for the games so far are listed below. Question: Question 1 If Two Dice Are Rolled One Time, Find The Probability Of Getting A Sum Greater Than 6 And Less Than 12. Find the joint probability mass function of X and Y when. If one of the dice shows 1 to 4, the sum will not be greater than 10. The probability of getting each of the dice rolls are: 2: 1/36. Find the probability distribution for the ‘sum of two dice’. Memorizing the making of the above picture makes the. Let X denote the sum of the number of dots on the top faces. 9 Prove that you cannot load two dice in such a way that the probabilities for any sum from 2 to To get a better understanding of this important result, we will look at some examples. What is the probability that the sum of two rolled dice is less than or equal to 9? I got 1/5 because its greater? help. Then, we subtract 5, 15 and 30 from 100, which gives us 100 - 5 - 15 - 30 = 50. Single die roll probability tables. [3 Marks) 1 13 5 Question 2 Find The Z Score That Corresponds To The Given Area. Major changes in Python environment : . a sum less than 4 or greater than 9 d. Let us understand the sample space of rolling two dice. Suppose that the first die we roll comes up as a 1. Explanation of the fundamental concepts of probability distributions. A glass jar contains 6 red, 5 green, 8 blue and 3 yellow marbles. Find the probabilities of rolling different sums. Hence the probability of getting a 3 is P(E) = 1 / 6. Get an answer for 'When two dice are thrown what is the probability that the sum is 8. The sum of two dice thrown can be 7 and 11 in the following cases : (6,1) (1,6) (3,4) (4,3) (5,6) (6,5) (2,5) (5,2) The total possible cases are = 36 Favorable cas. Write an even more general version of the function two. That intuition is wrong. Step by step we: Generate the possible outcomes for one die. The probability of getting a sum of 5 is 1 /9 and the probability of getting a sum of 9 is 1 /9. Some of the probabilities are easy to find. Type it in the session window. Two dice are rolled. For the "point" outcomes (4,5,6,8,. Get a free answer to a quick problem. What is the probability that the sum of the two dice will not be a 6? 31/36. For three six-sided dice, the most common rolls are 10 and 11, both with probability 1/8; and the least common rolls are 3 and 18, both with probability 1/216. lis03pfxr3, ujocjh1y64, s12rmgtrh8c7r, kym10de4b5e633r, qme1yq56uk2x, ymlickuxmk8, apzqcwbno2to, slmj4cak4a, 0xy0iog05ybhmfd, gdfmdbew5q1, 96imk2cxbvbdol, l8xudpv0j1, nwazaap0onbm, 6b1rvwwrbg25g, dhhhfhlqcxj7t01, py5nq9oz5dw7o, 8iqcxkyvtn7wh1, 5q2qvtn5knmihv, z6zloxs9s19wn, 6lykvprhlrbnu8w, o1wgudqihtvg, tlh2mmq5umx, 6iuew17hsvdmp, ztt05u5nsncl, fobtt2lkbg9v, ygjk3lvdrt3qt, na18jcn35u
2020-06-06T16:19:09
{ "domain": "farmaciacoverciano.it", "url": "http://farmaciacoverciano.it/dhti/when-two-dice-are-rolled-find-the-probability-of-getting-a-sum-of-5-or-6.html", "openwebmath_score": 0.6622301936149597, "openwebmath_perplexity": 208.79297532556296, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.9859363750229257, "lm_q2_score": 0.8519527963298946, "lm_q1q2_score": 0.8399712517041412 }
https://stats.stackexchange.com/questions/176702/how-to-calculate-the-expected-value-of-a-standard-normal-distribution
# How to calculate the expected value of a standard normal distribution? I would like to learn how to calculate the expected value of a continuous random variable. It appears that the expected value is $$E[X] = \int_{-\infty}^{\infty} xf(x)\mathrm{d}x$$ where $f(x)$ is the probability density function of $X$. Suppose the probability density function of $X$ is $$f(x) = \frac{1}{\sqrt{2\pi}}e^{\frac{-x^{2}}{2}}$$ which is the density of the standard normal distribution. So, I would first plug in the PDF and get $$E[X] = \int_{-\infty}^{\infty} x\frac{1}{\sqrt{2\pi}}e^{\frac{-x^{2}}{2}}\mathrm{d}x$$ which is a rather messy looking equation. The constant $\displaystyle\frac{1}{\sqrt{2\pi}}$ can be moved outside the integral, giving $$E[X] = \frac{1}{\sqrt{2\pi}}\int_{-\infty}^{\infty} xe^{\frac{-x^{2}}{2}}\mathrm{d}x.$$ I get stuck here. How do I calculate integral? Am I doing this correctly this far? Is the simplest way to get the expected value? • your question title is misleading. You are in fact trying to calculate the expected value of a standard normal random variable. You can also calculate the expected value of a function of a RV. I would rather put in the title: "How to calculate the expected value of a standard normal distribution." Or "How to calculate the expected value of a continuous random variable." – Gumeo Oct 13 '15 at 9:05 • @GuðmundurEinarsson corrected. – mmh Oct 13 '15 at 11:07 • "I get stuck here. How do I calculate integral?" Find the derivative of $-e^{-\frac{x^2}{2}}$. (No, I am not being facetious and suggesting needless busywork to you; I am deadly serious; Just Do It!). Then stare very hard at the derivative you have found. – Dilip Sarwate Dec 3 '15 at 5:19 You are almost there, follow your last step: $$E[X] = \frac{1}{\sqrt{2\pi}}\int_{-\infty}^{\infty} xe^{\displaystyle\frac{-x^{2}}{2}}\mathrm{d}x\\=-\frac{1}{\sqrt{2\pi}}\int_{-\infty}^{\infty}e^{-x^2/2}d(-\frac{x^2}{2})\\=-\frac{1}{\sqrt{2\pi}}e^{-x^2/2}\mid_{-\infty}^{\infty}\\=0$$. Or you can directly use the fact that $xe^{-x^2/2}$ is an odd function and the limits of the integral are symmetry. • The symmetry argument only works if both halves are themselves convergent. – Glen_b Oct 13 '15 at 10:50 • Could you explain what happens on the second row? – mmh Oct 13 '15 at 11:12 • Glen's comment is correct if it is not convergent then change-of-variables will not work – Deep North Oct 13 '15 at 11:23 • The second row is equal to the first row since $d(-\frac{x^2}{2})=-xdx$ also note the negative sign at the beginning. Then you can think of change of variable for integration, then you change it back since the limits did not change. Or you can use integrate by parts. And remember $\int_{a}^{b}e^y dy=e^y\mid_{a}^{b}$ – Deep North Oct 13 '15 at 11:37 • To use symmetry to get the mean you need to know that $\int_0^\infty xf(x) dx$ converges - it does for this case, but more generally you can't assume it. For example, the symmetry argument would say that the mean of the standard Cauchy is 0, but it doesn't have one. – Glen_b Dec 3 '15 at 1:23 Since you want to learn methods for computing expectations, and you wish to know some simple ways, you will enjoy using the moment generating function (mgf) $$\phi(t) = E[e^{tX}].$$ The method works especially well when the distribution function or its density are given as exponentials themselves. In this case, you don't actually have to do any integration after you observe $$t^2/2 -\left(x - t\right)^2/2 = t^2/2 + (-x^2/2 + tx - t^2/2) = -x^2/2 + tx,$$ because, writing the standard normal density function at $x$ as $C e^{-x^2/2}$ (for a constant $C$ whose value you will not need to know), this permits you to rewrite its mgf as $$\phi(t) = C\int_\mathbb{R} e^{tx} e^{-x^2/2} dx = C\int_\mathbb{R} e^{-x^2/2 + tx} dx = e^{t^2/2}C\int_\mathbb{R} e^{-(x-t)^2/2} dx .$$ On the right hand side, following the $e^{t^2/2}$ term, you will recognize the integral of the total probability of a Normal distribution with mean $t$ and unit variance, which therefore is $1$. Consequently $$\phi(t) = e^{t^2/2}.$$ Because the Normal density gets small at large values so rapidly, there are no convergence issues regardless of the value of $t$. $\phi$ is recognizably analytic at $0$, meaning it equals its MacLaurin series $$\phi(t) = e^{t^2/2} = 1 + (t^2/2) + \frac{1}{2} \left(t^2/2\right)^2 + \cdots + \frac{1}{k!}\left(t^2/2\right)^k + \cdots.$$ However, since $e^{tX}$ converges absolutely for all values of $tX$, we also may write $$E[e^{tX}] = E\left[1 + tX + \frac{1}{2}(tX)^2 + \cdots + \frac{1}{n!}(tX)^n + \cdots\right] \\ = 1 + E[X]t + \frac{1}{2}E[X^2]t^2 + \cdots + \frac{1}{n!}E[X^n]t^n + \cdots.$$ Two convergent power series can be equal only if they are equal term by term, whence (comparing the terms involving $t^{2k} = t^n$) $$\frac{1}{(2k)!}E[X^{2k}]t^{2k} = \frac{1}{k!}(t^2/2)^k = \frac{1}{2^kk!} t^{2k},$$ implying $$E[X^{2k}] = \frac{(2k)!}{2^kk!},\ k = 0, 1, 2, \ldots$$ (and all expectations of odd powers of $X$ are zero). For practically no effort you have obtained the expectations of all positive integral powers of $X$ at once. Variations of this technique can work just as nicely in some cases, such as $E[1/(1-tX)] = E[1 + tX + (tX)^2 + \cdots + (tX)^n + \cdots]$, provided the range of $X$ is suitably limited. The mgf (and its close relative the characteristic function $E[e^{itX}]$) are so generally useful, though, that you will find them given in tables of distributional properties, such as in the Wikipedia entry on the Normal distribution.
2019-10-23T10:17:22
{ "domain": "stackexchange.com", "url": "https://stats.stackexchange.com/questions/176702/how-to-calculate-the-expected-value-of-a-standard-normal-distribution", "openwebmath_score": 0.896049439907074, "openwebmath_perplexity": 206.88384891563888, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9859363696508799, "lm_q2_score": 0.8519527982093666, "lm_q1q2_score": 0.8399712489804516 }
https://math.stackexchange.com/questions/2443864/solve-the-radical-equation-x-sqrtx25-2x1-sqrt4x24x6-0
# Solve the radical equation $x\sqrt{x^2+5} + (2x+1)\sqrt{4x^2+4x+6}=0.$ Solve the following equation: $$x\sqrt{x^2+5} + (2x+1)\sqrt{4x^2+4x+6}=0.$$ I wanted to solve this equation. First I tried to change the equations under the roots to the complete square to simplify them out, but it just became more complicated. Can someone help me with this equation, please? • Solving it by hand? You could multiply both sides by $x\sqrt{x^2+5}\color{red}{-}(2x+1)\sqrt{4x^2+4x+6}$. This will arrive at $-15x^4-32x^3-39x^2-28x-6=0$ which you can attempt to factor (trial and error or using general method for quartics, but that would be incredibly messy). You'll arrive at $-(x+1)(3x+1)(5x^2+4x+6)$ which yields four roots, one of which was introduced with our first changes when we multiplied by the conjugate, the second is our actual solution to the original problem, and the remaining two are complex. – JMoravitz Sep 25 '17 at 0:39 • But how could we factor it? Even the trial and error is very hard to approach and to guess the roots. – Nariman Zendehrooh Sep 25 '17 at 3:38 • @Nariman Zendehrooh:I edited my answer to show how to use the substitution trick to get a factored form. – quasi Sep 25 '17 at 3:42 Assuming you want real roots, you can use this trick . . . Let $f\colon \mathbb{R} \to \mathbb{R}$ be given by $f(t) = t\sqrt{t^2+5}$. Then $f$ is an odd function. Also, $f$ is strictly increasing, hence $f$ is one-to-one. Then, letting $u=2x+1$, \begin{align*} &x\sqrt{x^2+5}+(2x+1)\sqrt{4x^2 + 4x + 6}=0 \qquad\qquad\qquad\qquad\;\; \\[4pt] \iff\;&x\sqrt{x^2+5}+u\sqrt{u^2 + 5}=0\\[4pt] \iff\;&f(x) + f(u)=0\\[4pt] \iff\;&f(x) = -f(u)\\[4pt] \iff\;&f(x) = f(-u)\qquad\text{[since $f$ is odd]}\\[4pt] \iff\;&x = -u\qquad\qquad\;\;\text{[since $f$ is one-to-one]}\\[4pt] \iff\;&x = -(2x+1)\\[4pt] \iff\;&3x+1 = 0\\[4pt] \iff\;&x = -{\small{\frac{1}{3}}}\\[4pt] \end{align*} As an alternative, using the same trick, you can get a factored form: \begin{align*} &x\sqrt{x^2+5}+u\sqrt{u^2 + 5}=0\\[4pt] \implies\;&x\sqrt{x^2+5}=-u\sqrt{u^2 + 5}\\[4pt] \implies\;&x^2(x^2+5)=u^2(u^2 + 5)\\[4pt] \implies\;&x^4+5x^2=u^4+5u^2\\[4pt] \implies\;&(u^4-x^4)+5(u^2-x^2)=0\\[4pt] \implies\;&(u^2-x^2)(u^2+x^2)+5(u^2-x^2)=0\\[4pt] \implies\;&(u^2-x^2)(u^2+x^2+5)=0\\[4pt] \implies\;&(u-x)(u+x)(u^2+x^2+5)=0\\[4pt] \implies\;&(x+1)(3x+1)(5x^2+4x+6)=0\qquad\text{[replacing $u$ by $2x+1$]} \end{align*} The two candidate real roots, $x=-1,\;x=-{\large{\frac{1}{3}}}\;$need to be verified against the original equation since, when squaring both sides, extraneous real roots were potentially introduced. In this case, as it turns out, the candidate root $x=-{\large{\frac{1}{3}}}$ is ok, but the candidate root $x=-1$ fails, so is not an actual root. • Wow! That was a great trick to simplify and get the solution. But I wondered how it came to your mind in the first place that you have to define f(t). Is there any clue? – Nariman Zendehrooh Sep 25 '17 at 3:44 • I recognized that $$4x^2+4x+6 = (4x^2+4x+1) + 5 = (2x+1)^2 + 5$$ and from there, defining $f(t) = t\sqrt{t^2 + 5}$ was a natural move. – quasi Sep 25 '17 at 3:47
2020-04-07T08:16:13
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2443864/solve-the-radical-equation-x-sqrtx25-2x1-sqrt4x24x6-0", "openwebmath_score": 0.9582511782646179, "openwebmath_perplexity": 603.8355338098116, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9859363713038174, "lm_q2_score": 0.8519527944504227, "lm_q1q2_score": 0.8399712466825968 }
https://gmatclub.com/forum/the-probability-that-event-a-occurs-is-0-4-and-the-probabil-106950.html
GMAT Question of the Day: Daily via email | Daily via Instagram New to GMAT Club? Watch this Video It is currently 25 May 2020, 07:45 ### GMAT Club Daily Prep #### Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email. Customized for You we will pick new questions that match your level based on your Timer History Track every week, we’ll send you an estimated GMAT score based on your performance Practice Pays we will pick new questions that match your level based on your Timer History # The probability that event A occurs is 0.4, and the probabil Author Message TAGS: ### Hide Tags Manager Status: Do and Die!! Joined: 15 Sep 2010 Posts: 237 The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags Updated on: 28 Mar 2018, 03:13 6 1 31 00:00 Difficulty: 25% (medium) Question Stats: 72% (01:36) correct 28% (02:07) wrong based on 538 sessions ### HideShow timer Statistics The probability that event A occurs is 0.4, and the probability that events A and B both occur is 0.25. If the probability that either event A or event B occurs is 0.6, what is the probability that event B will occur? A. 0.05 B. 0.15 C. 0.45 D. 0.50 E. 0.55 _________________ I'm the Dumbest of All !! Originally posted by shrive555 on 26 Dec 2010, 17:47. Last edited by abhimahna on 28 Mar 2018, 03:13, edited 1 time in total. Edited the question Retired Moderator Joined: 03 Aug 2010 Posts: 156 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 26 Dec 2010, 20:42 2 3 P(A or B) = P (A) + P(B) - p(a n b) 0.6= 0.4 + P(B) - 0.25 P(B) = 0.45 ##### General Discussion Manager Joined: 31 May 2010 Posts: 57 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 26 Dec 2010, 22:30 1 P(AandB) = pA + pB - p(AintersectionB) 0.6= 0.4 + p(B) - 0.25 = 0.45 Manager Status: UC Berkeley 2012 Joined: 03 Jul 2010 Posts: 142 Location: United States Concentration: Economics, Finance GPA: 4 WE: Consulting (Investment Banking) Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 27 Dec 2010, 02:29 1 you can state both equations only if they are independent from each other ... Manager Joined: 30 May 2013 Posts: 143 Location: India Concentration: Entrepreneurship, General Management GPA: 3.82 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 10 Aug 2013, 04:33 hirendhanak wrote: P(A or B) = P (A) + P(B) - p(a n b) 0.6= 0.4 + P(B) - 0.25 P(B) = 0.45 Hi. Can u tell me wat is P(AandB)???? regards, Rrsnathan. Director Status: Far, far away! Joined: 02 Sep 2012 Posts: 998 Location: Italy Concentration: Finance, Entrepreneurship GPA: 3.8 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 10 Aug 2013, 04:59 1 rrsnathan wrote: hirendhanak wrote: P(A or B) = P (A) + P(B) - p(a n b) 0.6= 0.4 + P(B) - 0.25 P(B) = 0.45 Hi. Can u tell me wat is P(AandB)???? regards, Rrsnathan. P(A and B)= probability both events (A,B) occur= P(A)*P(B). Senior Manager Joined: 10 Jul 2013 Posts: 274 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 10 Aug 2013, 13:10 shrive555 wrote: The probability that event A occurs is 0.4, and the probability that events A and B both occur is 0.25. If the probability that either event A or event B occurs is 0.6, what is the probability that event B will occur? 0.05 0.15 0.45 0.50 0.55 P(A) = .40 P(A and B) = P(A) * P(B) = .25 ----1 P(A or B) = P (A) + P(B) = .60 -----2 Both 1 & 2 give different results. 1 => P(B) = $$.25/P(A)$$ = 0.62 2=> P(B) = .60 - .40 = .20 whats going wrong ...i don;t know The only correction you need is to minus... P(A or B) = P (A) + P(B) - P(A) * P(B) = or, 0.60 = 0.4 +p(B) - 0.25 so, p(B) = 0.45 (C) we all make mistake....don't worry about it... Director Joined: 12 Nov 2016 Posts: 666 Location: United States Schools: Yale '18 GMAT 1: 650 Q43 V37 GRE 1: Q157 V158 GPA: 2.66 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 12 Oct 2017, 19:30 shrive555 wrote: The probability that event A occurs is 0.4, and the probability that events A and B both occur is 0.25. If the probability that either event A or event B occurs is 0.6, what is the probability that event B will occur? A. 0.05 B. 0.15 C. 0.45 D. 0.50 E. 0.55 P(A) = .40 P(A and B) = P(A) * P(B) = .25 ----1 P(A or B) = P (A) + P(B) = .60 -----2 Both 1 & 2 give different results. 1 => P(B) = $$.25/P(A)$$ = 0.62 2=> P(B) = .60 - .40 = .20 whats going wrong ...i don;t know If A and B are overlapping events then P (A or B) = P(A) + P(B) - P(A and B) C Director Joined: 12 Nov 2016 Posts: 666 Location: United States Schools: Yale '18 GMAT 1: 650 Q43 V37 GRE 1: Q157 V158 GPA: 2.66 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 12 Oct 2017, 19:36 shrive555 wrote: The probability that event A occurs is 0.4, and the probability that events A and B both occur is 0.25. If the probability that either event A or event B occurs is 0.6, what is the probability that event B will occur? A. 0.05 B. 0.15 C. 0.45 D. 0.50 E. 0.55 P(A) = .40 P(A and B) = P(A) * P(B) = .25 ----1 P(A or B) = P (A) + P(B) = .60 -----2 Both 1 & 2 give different results. 1 => P(B) = $$.25/P(A)$$ = 0.62 2=> P(B) = .60 - .40 = .20 whats going wrong ...i don;t know Another way of looking at this is that both events are overlapping events- A and B can occur at the same time - this is basically the same as Total= A + B -both --> is the same thing as saying P(A or B)= P(A) + P(B) -P(A and B) This is one application of the overlapping set formula to probability Director Joined: 24 Oct 2016 Posts: 664 GMAT 1: 670 Q46 V36 GMAT 2: 690 Q47 V38 The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags Updated on: 08 Jun 2018, 12:00 Nunuboy1994 wrote: shrive555 wrote: The probability that event A occurs is 0.4, and the probability that events A and B both occur is 0.25. If the probability that either event A or event B occurs is 0.6, what is the probability that event B will occur? A. 0.05 B. 0.15 C. 0.45 D. 0.50 E. 0.55 P(A) = .40 P(A and B) = P(A) * P(B) = .25 ----1 P(A or B) = P (A) + P(B) = .60 -----2 Both 1 & 2 give different results. 1 => P(B) = $$.25/P(A)$$ = 0.62 2=> P(B) = .60 - .40 = .20 whats going wrong ...i don;t know Another way of looking at this is that both events are overlapping events- A and B can occur at the same time - this is basically the same as Total= A + B -both --> is the same thing as saying P(A or B)= P(A) + P(B) -P(A and B) This is one application of the overlapping set formula to probability I have a similar question as shrive555. Not really convinced with Nunuboy1994's explanation. shrive555 When events are mutually exhaustive, then P(A or B) = P(A) + P(B). So we can't use that formula (i.e. your point 2) since the Q tells us that both events can happen together. Hey abhimahna Here's my question: How do we know that the events are not independent? For independent events, we know that P(A and B) = P(A) * P(B), which would give a different answer. Originally posted by dabaobao on 04 Jun 2018, 17:15. Last edited by dabaobao on 08 Jun 2018, 12:00, edited 1 time in total. Senior PS Moderator Joined: 26 Feb 2016 Posts: 3253 Location: India GPA: 3.12 The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 04 Jun 2018, 22:48 1 1 Alternate approach P(Total) = 1 | P(Event A) = 0.4 | P(Both) = 0.25 (from question stem) P(Neither) = 1 - P(Either event A or event B) = 1 - 0.6 = 0.4 P(Total) = P(Event A) + P(Event B) - P(Both) + P(Neither) Substituting values, $$1 = 0.4 + P(Event B) - 0.25 + 0.4$$ -> $$1 = 0.8 - 0.25 + P(Event B)$$ -> $$P(Event B) = 1 - 0.55$$ = 0.45(Option C) _________________ You've got what it takes, but it will take everything you've got Director Joined: 24 Oct 2016 Posts: 664 GMAT 1: 670 Q46 V36 GMAT 2: 690 Q47 V38 The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags Updated on: 15 Jun 2018, 10:30 1 pushpitkc wrote: Alternate approach P(Total) = 1 | P(Event A) = 0.4 | P(Both) = 0.25 (from question stem) P(Neither) = 1 - P(Either event A or event B) = 1 - 0.6 = 0.4 P(Total) = P(Event A) + P(Event B) - P(Both) + P(Neither) Substituting values, $$1 = 0.4 + P(Event B) - 0.25 + 0.4$$ -> $$1 = 0.8 - 0.25 + P(Event B)$$ -> $$P(Event B) = 1 - 0.55$$ = 0.45(Option C) Thanks pushpitkc for that alternate approach. We could do that if we know that we have overlapping sets. Hey abhimahna, any idea what's the relationship between overlapping and independent sets? Why can't we use the independent events formula here, P(A and B) = P(A) * P(B), which would give a different answer. Originally posted by dabaobao on 05 Jun 2018, 04:00. Last edited by dabaobao on 15 Jun 2018, 10:30, edited 1 time in total. Target Test Prep Representative Status: Founder & CEO Affiliations: Target Test Prep Joined: 14 Oct 2015 Posts: 10547 Location: United States (CA) Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 06 Jun 2018, 15:42 shrive555 wrote: The probability that event A occurs is 0.4, and the probability that events A and B both occur is 0.25. If the probability that either event A or event B occurs is 0.6, what is the probability that event B will occur? A. 0.05 B. 0.15 C. 0.45 D. 0.50 E. 0.55 We can use the formula: P(A or B) = P(A) + P(B) - P(A and B) So we have: 0.6 = 0.4 + P(B) - 0.25 0.6 = 0.15 + P(B) 0.45 = P(B) _________________ # Scott Woodbury-Stewart Founder and CEO [email protected] 202 Reviews 5-star rated online GMAT quant self study course See why Target Test Prep is the top rated GMAT quant course on GMAT Club. Read Our Reviews If you find one of my posts helpful, please take a moment to click on the "Kudos" button. Board of Directors Status: Emory Goizueta Alum Joined: 18 Jul 2015 Posts: 3586 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 15 Jun 2018, 10:44 1 dabaobao wrote: Hey abhimahna, any idea what's the relationship between overlapping and independent sets? Why can't we use the independent events formula here, P(A and B) = P(A) * P(B), which would give a different answer. Hey dabaobao , When two events are said to be independent of each other, what this means is that the probability that one event occurs in no way affects the probability of the other event occurring. Example - Say you rolled a die and flipped a coin. Here, no such case is happening. We have two events A and B as well as we have an overlap between them as well Both A and B. Hence, we will use the formula mentioned above. Also, please note that I would not consider A and B independent events unless explicitly stated in the question. Does that make sense? _________________ My LinkedIn abhimahna. | My GMAT Story: From V21 to V40 | My MBA Journey: My 10 years long MBA Dream My Secret Hacks: Best way to use GMATClub | Importance of an Error Log! Verbal Resources: All SC Resources at one place | All CR Resources at one place GMAT Club Inbuilt Error Log Functionality - View More | Best Reply Functionality on GMAT Club! New Visa Forum - Ask all your Visa Related Questions - here | Have OPT questions? - Post them here. Find a bug in the new email templates and get rewarded with 2 weeks of GMATClub Tests for free Check our new About Us Page here. | Manager Joined: 07 Feb 2017 Posts: 167 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 15 Jun 2018, 11:18 0.6 = 0.4 + PB - 0.25 PB = 0.45 Senior Manager Joined: 17 Mar 2014 Posts: 451 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 21 Jul 2018, 07:28 3 shrive555 wrote: The probability that event A occurs is 0.4, and the probability that events A and B both occur is 0.25. If the probability that either event A or event B occurs is 0.6, what is the probability that event B will occur? A. 0.05 B. 0.15 C. 0.45 D. 0.50 E. 0.55 Using Manhattan book formula Attachments WhatsApp Image 2018-07-21 at 11.27.06.jpeg [ 86.14 KiB | Viewed 24306 times ] Intern Joined: 22 Dec 2019 Posts: 2 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 22 Dec 2019, 22:13 Please forgive my ignorance, but why P(B) not equal to 0.625?? as P(A) = .40 P(A and B) = P(A) * P(B) = .25 P(B) = .25/P(A) = 0.625 Intern Joined: 22 Dec 2019 Posts: 2 Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 22 Dec 2019, 22:18 pushpitkc wrote: Alternate approach P(Total) = 1 | P(Event A) = 0.4 | P(Both) = 0.25 (from question stem) P(Neither) = 1 - P(Either event A or event B) = 1 - 0.6 = 0.4 P(Total) = P(Event A) + P(Event B) - P(Both) + P(Neither) Substituting values, $$1 = 0.4 + P(Event B) - 0.25 + 0.4$$ -> $$1 = 0.8 - 0.25 + P(Event B)$$ -> $$P(Event B) = 1 - 0.55$$ = 0.45(Option C) Please forgive my ignorance, but why P(B) not equal to 0.625?? as P(A) = .40 P(A and B) = P(A) * P(B) = .25 P(B) = .25/P(A) = 0.625 Secondly, can you please explain what do you mean by "1 | P(Event A) = 0.4 | P(Both)" =0.25? I am not familiar with why "total 1" sign "|" P(A)=0.4 sign "|" P(Both)? Senior Manager Status: So far only Dreams i have!! Joined: 05 Jan 2015 Posts: 305 WE: Consulting (Consulting) Re: The probability that event A occurs is 0.4, and the probabil  [#permalink] ### Show Tags 22 Dec 2019, 23:01 gaoyuskr wrote: pushpitkc wrote: Alternate approach P(Total) = 1 | P(Event A) = 0.4 | P(Both) = 0.25 (from question stem) P(Neither) = 1 - P(Either event A or event B) = 1 - 0.6 = 0.4 P(Total) = P(Event A) + P(Event B) - P(Both) + P(Neither) Substituting values, $$1 = 0.4 + P(Event B) - 0.25 + 0.4$$ -> $$1 = 0.8 - 0.25 + P(Event B)$$ -> $$P(Event B) = 1 - 0.55$$ = 0.45(Option C) Please forgive my ignorance, but why P(B) not equal to 0.625?? as P(A) = .40 P(A and B) = P(A) * P(B) = .25 P(B) = .25/P(A) = 0.625 Secondly, can you please explain what do you mean by "1 | P(Event A) = 0.4 | P(Both)" =0.25? I am not familiar with why "total 1" sign "|" P(A)=0.4 sign "|" P(Both)? Hi gaoyuskr Probability formula: Event (A OR B) or P (A U B) where P (A ∩ B) = P(A and B) P (A U B) = P (A) + P (B) – P (A ∩ B) Using values: .6 = .4 + P(B) - .25 P(B) = .45 Option C! Hope it is clear. _________________ Unable to Give Up! Re: The probability that event A occurs is 0.4, and the probabil   [#permalink] 22 Dec 2019, 23:01
2020-05-25T15:45:16
{ "domain": "gmatclub.com", "url": "https://gmatclub.com/forum/the-probability-that-event-a-occurs-is-0-4-and-the-probabil-106950.html", "openwebmath_score": 0.6984884738922119, "openwebmath_perplexity": 3070.527046349151, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. Yes\n2. Yes", "lm_q1_score": 0.9518632343454895, "lm_q2_score": 0.8824278680004706, "lm_q1q2_score": 0.8399506445115226 }
http://calculus123.com/wiki/Student%27s_guide_to_proof_writing
This site is devoted to mathematics and its applications. Created and run by Peter Saveliev. # Student's guide to proof writing These are 10 rules (or tests, or clues) that you can use to check if there may be problems with what you are about to submit... Once upon a time a lecture was being given: Pythagorean Theorem: $a^2+b^2=c^2$ for the sides of a right triangle... Homework assignment: Prove the theorem. . . Law of Cosines: $a^2+b^2-2ab\cos \alpha=c^2$ for the sides of a triangle with angle $\alpha$... The week after this was submitted: Homework solution: To prove the Pythagorean Theorem, take the Law of Cosines and set $\alpha = 90$ degrees, done. What is wrong with this picture? The argument is circular as the proof of the Law of Cosines is (usually) based on the Pythagorean Theorem. That's why the lectures that follow the assignment should be off-limits. Rule 1: If you use in your proof results presented in lectures after the homework was assigned, this is very likely not what's expected from you. To check all the lectures may be impossible, and the purpose of the rule is to eliminate any chance of circular reasoning. The version of this rule for the professor to follow: Don't assign homework until all the necessary material has been covered. The example provides a rationale for the following: Rule 2: If your proof is "The statement is just a particular case of this theorem", that's probably not what's expected from you. Be especially careful if this theorem comes from outside the course. Simply put, a very short proof generally is a bad sign. This rule is meant to prevent you from being tempted by an easy way out. A proof from scratch -- based on the concepts being discussed in the class you are taking -- is expected just about every single time. To summarize the two rules: the proof should be as localized as possible, but only on one side (think $(a-\epsilon,a]$). Rule 3: If your proof doesn't provide the definition or quote a theorem for each concept used, it is probably flawed. The danger is that the proof is superficial and hand-wavy. A proof that looks like an essay can probably use a lot more structure. Rule 4: If your proof is long but has no lemmas, it is likely to be flawed. It is certainly not very readable. It is not readable for the professor but for you too -- that's why there is a chance it may have problems that you've overlooked. Note: In just about any undergraduate or graduate course a one-page proof in TeX (with no illustrations) is long. The rule doesn't mean to proclaim that long is bad. Just the opposite is true: one shouldn't keep any part of the proof for himself. Rule 5: If you have an “easy” part of the proof in your head but don't put it on paper, this part is likely to be challenged. Rule 6: If you don't introduce all or most of the objects in the proof by giving them letter names, your proof may be flawed. The danger is again that the proof is superficial and hand-wavy. Always start with "Let $x$ be..." Note: How to choose good notation is a subject of a separate discussion. Rule 7: If you introduce an object in your proof and then never use it, this is a problem and might be a sign of other problems. That would leave a very bad impression... Rule 8: If you don't use all of the conditions of the theorem you are to prove, your proof is very likely to be flawed. You simply don't see a lot of theorems with redundant conditions. Your drawings may fool you. In fact, draw a triangle... Now, take a closer look at it; you are likely to discover that your triangle is either a right triangle or an isosceles. A proof based on this picture could easily be flawed. Rule 9: If removing all pictures from your proof makes it incomplete or just hard to follow, it is probably not rigorous enough. Let illustrations illustrate... And finally, just because your professor or your textbook violate, as they often do, some or all of these rules, don't assume that you are off the hook. Rule 10: If you write your proof as just a variation of a proof taken from a lecture or a book, it is likely that higher standards will be applied to yours.
2019-07-21T01:04:34
{ "domain": "calculus123.com", "url": "http://calculus123.com/wiki/Student%27s_guide_to_proof_writing", "openwebmath_score": 0.6310448050498962, "openwebmath_perplexity": 440.40438925839203, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9518632288833652, "lm_q2_score": 0.882427872638409, "lm_q1q2_score": 0.839950644106275 }
https://mathematica.stackexchange.com/questions/126567/coding-a-simulation-of-multi-species-population-dynamics
# Coding a simulation of multi-species population dynamics I want to code several steps in a recursion equation (in my case, migration, followed by selection, followed by mating, etc in a population). I have seen this done using a lot of copying and pasting and Do loops. I am hoping someone has a better suggestion that makes use of Mathematica's recursion equation construction and memoization. In step 1 I was able to code a pair of coupled recursion equations. Step 1: Frequency of genotype i in population 1 (x1) and population 2 (x2) at time t depends on migration rate between the two populations and the frequency of genotype i in each at time t - 1. parameters = {m->0.01} x1[i_, t_] := x1[i, t] = (1 - m) x1[i, t - 1] + m x2[i, t - 1] /. parameters x2[i_, t_] := x2[i, t] = (1 - m) x2[i, t - 1] + m x1[i, t - 1] /. parameters x1[1,0] := 1 x2[1,0] := 0 ListPlot[Table[{{t, x1[1, t]}, {t, x2[1, t]}}, {t, 0, 1000}], PlotRange -> {0, 1}] Now I want to add a step to my recursion equations so that selection also occurs in the same generation. Step 2 depends on x1[i, t] and x2[i, t] (as they are currently written) but I would not consider it time t + 1. Not a reproducible example below because I don't know how to code this part Step 2: Selection in population 1 x1Selection[1,t] = ((1 + s1) x1[1,t])/(1 + s1 x1[1,t]) x2Selection[1,t] = x2[1,t] Step 3: Not shown Step 4: Not shown So I want to go through these steps and get the frequency of genotype i at time t, after migration, selection, etc have happened. Then repeat step 1 using x1Final[1, t] and x2Final[1, t] in place of x1[1, t - 1] and x2[1, t - 1], respectively. Is there an elegant way to code a multistep recursion equation without copying and pasting the output of the previous step into the next step (because this gets considerably uglier in steps 3 and 4)? That is, without writing something like: parameters = {m->0.01, s1->0.05} x1[i_, t_] := x1[i, t] = ((1 + s1) ((1 - m) x1[i, t - 1] + m x2[i, t - 1]))/(1 + s1 ((1 - m) x1[i, t - 1] + m x2[i, t - 1])) /. parameters x2[i_, t_] := x2[i, t] = (1 - m) x2[i, t - 1] + m x1[i, t - 1] /. parameters x1[1,0] := 1 x2[1,0] := 0 ListPlot[Table[{{t, x1[1, t]}, {t, x2[1, t]}}, {t, 0, 1000}], PlotRange -> {0, 1}] • You can use Composition to combine the different steps for your Genetic Algorithm and then use NestList to recursively simulate new generations. – Thies Heidecke Sep 17 '16 at 23:56 • I suggest omitting any attempt to memoise until you have fully debugged your code (and only implement it if essential for efficiency). – mikado Sep 18 '16 at 7:46 • @ThiesHeidecke I am reading through the documentation and having trouble understanding how to set up the function definitions to use with Composition. Would it be like x1Migration[i, t] = (1 - m) x1[i, t] + m x2[i, t] and then x1Selection[x1Migration[i,t]]:= ((1 + s1) x1Migration[i,t])/(1 + s1 x1Migration[i,t]) and then Composition[x1, x1Selection, x1Migration][i,t]? – biologyUser Sep 18 '16 at 18:13 I would drop the whole idea of using recursion equations and simply write a function that expresses how the next generation depends on the current one. Like so. With[{m = .01, s1 = .01}, nextGen[{x1_, x2_}] := Module[{x1tmp, x2tmp}, x1tmp = (1 - m) x1 + m x2; x1tmp = (1 + s1) x1tmp/(1 + s1 x1tmp); x2tmp = (1 - m) x2 + m x1; {x1tmp, x2tmp}]] The above function is easy to extend with further algorithmic steps (e.g., your steps 3 and 4, whatever they will be) and to the addition of species (e.g., {x1, x2, x3}) should that be needed. It also evaluates quite quickly. With nextGen, the history over 1000 generations can be generated with populations = Transpose @ NestList[nextGen, {1, 0}, 1000]; ListPlot[populations, PlotRange -> {0, 1}] ### Update In response to the OP's comment, I give a vectorized version of nextGen. With[{m = .01, s = {.0024, -.002}}, nextGen[pop_List] := Block[{sp}, sp[1] = (1 - m) pop[[1]] + m pop[[2]]; sp[2] = (1 - m) pop[[2]] + m pop[[1]]; sp[1] = (1 + s[[1]]) sp[1]/(1 + s[[1]] sp[1]); sp[2] = (1 + s[[2]]) sp[2]/(1 + s[[2]] sp[2]); Table[sp[i], {i, Length[pop]}]]] Nothing changes in the way the simulation is run. populations = Transpose @ NestList[nextGen, {1, 0}, 1000]; ListPlot[populations, PlotRange -> {0, 1}] The result is different because the 2nd species also undergoes selection and the selection parameters have been given different values (just to produce an different plot). • Is there a way to do it without giving all the different species different names? I'll need to keep track of eight total. I was hoping to index them by population (k) and genes (pi and ti) to reduce the chance of making errors later. e.g. migration: xm[k_, pi_, ti_] := (1 - m) x[k, pi, ti] + m x[3 - k, pi, ti] /.parameters followed by selection: xs[k_,pi_,ti_] := ((1 + KroneckerDelta[ti, k] s[k]) xm[k, pi, ti])/(1 + s[k] (Sum[xm[k, pi, k], {pi, 1, 2}])) – biologyUser Sep 18 '16 at 17:26 • @user43111. What you bring up in your comment looks like a different question than the one you asked above. I don't like bait and switch. You should edit your question so it expresses your full, actual problem. Do not dribble it out a bit at a time -- especially not in a comment to an answer. – m_goldberg Sep 18 '16 at 20:11 • @biologyUser I'm a bit confused about what exactly you're trying to model and whether the equations make sense. Are you using the words population and species interchangeably, or are you envisioning multiple interacting species (or genotypes?) in a multi-patch system? – Chris K Sep 20 '16 at 13:19
2019-07-16T21:30:15
{ "domain": "stackexchange.com", "url": "https://mathematica.stackexchange.com/questions/126567/coding-a-simulation-of-multi-species-population-dynamics", "openwebmath_score": 0.2148144245147705, "openwebmath_perplexity": 2683.7716337328075, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9609517050371972, "lm_q2_score": 0.8740772482857833, "lm_q1q2_score": 0.8399460220744449 }
https://www.jiskha.com/display.cgi?id=1245121807
# irrational numbers?! posted by Sanchia what are rational and irrational numbers?? i know that irrational numbers are numbers that cannot be expressed as a fraction, but i'm still confused. there is this question: which of the following are irrational numbers: √2, √8, 22/7, pi, 2√3 i know that 22/7 is rational, pi is irrational, but what about those square roots? 1. drwls Square roots of numbers that are not the squares of integers are all irrational. There is a way to prove that but I forgot the details. You have to assume that a fraction works and then prove that the assumption leads to a contradiction Any number that does not meet the definition of being rational is irrational. 2. Reiny - √2 is either rational or irrational. - Assume that √ is rational so that √2 = a/b, with a/b in lowest terms - Square both sides to get 2 = a^2/b^2 then a^2 = 2b^2 - the right side of this equation is clearly an even number, since anything multiplied by 2 is even - so a^2 must be even. We also know that if we square an odd number the result is odd, and if we square an even number the result is even so a must be even so a could be written as 2k - rewriting our equation as 2b^2= (2k)^2 2b^2 = 4k^2 b^2 = 2k^2 by the same argument as above 2k^2 is even , so b has to be even which means a and b are both even, therefore a/b is not in lowest terms BUT that contradicts my assumption that a/b was a fraction in lowest terms so √2 = a/b is a false statement therefore √2 cannot be rational, and must then be irrational the same argument could be used for √3 and all other square roots 3. brandy true or false does this number represent a rational number 0.20200200020000200000 4. Amber Is √4 Irrational? 5. Cereal.... is life. -Life Cereal is this seriouly the answer for the LEAP test *feecepum* you're not going to get ALL 50 answers -_- ## Similar Questions 1. ### Math What are irrational, rational, and natural numbers? 2. ### Algebra 28. Use the Distributive Property to simplify x(4x^2 + x + 4) Is it 4x^3 + x^2 + 4x? 3. ### math 1. Which of the following numbers is an example of an integer? 4. ### Math 1a) Prove that there exist irrational numbers a and b so that a^b is rational. look at the numbers √2^√2 and (√2^√2)^√2 1b) use similar idea to prove that there exists a rational number a and an irrational … There exist irrational numbers a and b so that a^b is rational. look at the numbers √2^√2 and (√2^√2)^√2 a) use similar idea to prove that there exists a rational number a and an irrational number b so … 6. ### THE HOMEWORK IS DUE TODAY- HELP! HELP! PLEASE There exist irrational numbers a and b so that a^b is rational. look at the numbers √2^√2 and (√2^√2)^√2 a) use similar idea to prove that there exists a rational number a and an irrational number b so … 7. ### math There exist irrational numbers a and b so that a^b is rational. look at the numbers √2^√2 and (√2^√2)^√2 a) use similar idea to prove that there exists a rational number a and an irrational number b so … 8. ### math Which statement is true? A. All irrational numbers are also rational numbers. B. Half of the irrational numbers are also rational numbers. C. One-third of the irrational numbers are also rational numbers D. Irrational numbers cannot 9. ### Math Check Pleas Thank You 1. Which of the following numbers is an example of an integer? 10. ### math Which statements are true for irrational numbers written in decimal form? More Similar Questions
2018-06-19T14:37:07
{ "domain": "jiskha.com", "url": "https://www.jiskha.com/display.cgi?id=1245121807", "openwebmath_score": 0.8192746043205261, "openwebmath_perplexity": 1142.8662794617562, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9609517072737737, "lm_q2_score": 0.874077230244524, "lm_q1q2_score": 0.8399460066926067 }
https://math.stackexchange.com/questions/735900/limits-to-infinity
# Limits to infinity? As a part of homework, I was asked What does $\lim_{x\to a} f(x)=\infty$ mean? In an earlier calculus class I was taught that in order for $L=\lim_{x\to a}f(x)$ to exist, we need that $L=\lim_{x\to a^-}f(x)=\lim_{x\to a^+}f(x)$. In an explicit(but extremely non-rigorous) example the teacher explained with a graphic in which the two two sides of a vertical asymptote tended to $\infty$, the limit didn't exist because we couldn't equate both lateral limits, since we cannot compare two infinities. Is this right? If so, I would answer "It doesn't make sense, since we would need that both lateral limits at $a$...equated to the same infinity?" If it is not right and that does make some sense, may you clarify this point to me about that definition? • In it's current form, it is meaningless. The limit of what? As for the definition, one can make sense of it as follows: $\forall M \in \mathbb{R}$, there exists $\delta > 0$ such that $0 < |x-a| < \delta$ (note my initial error, it should be a deleted neighbourhood) implies $f(x) > M$. The one-sided limit on the right would be $0 < x - a < \delta$; the one on the left would be $0 < a - x < \delta$. The two-sided limit only makes sense if they are equal. – Chris K Apr 2 '14 at 0:19 • @ChrisK Sorry, I was kind of absentminded when I wrote this, the post is edited now. Using that $\epsilon-\delta$ definition, it is clear that both limits tend to $\infty$. But is it common to write that the limit is $\infty$, even if we can't equate both lateral lmimits? – chubakueno Apr 2 '14 at 0:29 • If both limits aren't equal, we can only make sense of one-sided limits. We then say the two-sided limit does not exist. – Chris K Apr 2 '14 at 1:23 • @chubakueno If it helps, think of $\infty$ as notation for "grows without bound", rather than representing some actual value. – augurar Apr 3 '14 at 3:39 $\lim_{x\to a}f(x)\to\infty$ means that as you go closer and closer to $a$, the value of $f(x)$ grows arbitrarily large. Now, if you approach $-\infty$ as you go closer to $a$ from the left (or right), and if you approach $+\infty$ as you go closer to $a$ from the right (or left), then the limit does not exist. The reason is that the limit has two values at the same point. To be mathematically precise, since we know that the left- and right-hand limits are the same if and only if the ordinary limit exists, and that the left- and right-hand limits are not the same, $\lim_{x\to a}f(x)$ is undefined. I believe that this is what you mean by "two sides of a vertical asymptote tended to $∞$." • Yes, that was what I meant. Alas(it seems) there is not an universal convention about this. The epsilon delta arguments can prove that a function can grow without bound towards $+\infty$, but with the comments and answers here I think that $\lim_{x\to a} f(x)=\infty$ is not universally accepted. – chubakueno Apr 2 '14 at 0:50 • @chubakueno Yes, that's true... – user122283 Apr 2 '14 at 0:57 There is still some difference of feeling on how to talk about these. In the traditional discussion of limits, a limit should be a finite number that is "approached arbitrarily closely" by the function (made rigorous by $\ \epsilon - \delta \$ proofs, or the like). So when a function does not approach a finite value as $\ x \ \rightarrow \ a \ ,$ we say the limit "does not exist". But there are various ways this can happen. The oxymoronic phrase "infinite limit" is introduced in some texts to indicate that a function grows "without limit" to the same signed infinity for $\ x \$ approaching $\ a \$ "from both sides". Hence, these authors will write $\ \lim_{x \rightarrow 0} \ \frac{1}{x^2} \ = \ +\infty \ ,$ for example; they would still write $\ \lim_{x \rightarrow 0} \ \frac{1}{x} \$ DNE . • I think you have a typo... $lim_{x->0} \frac{1}{x^2}$ is certainly not $0$! – augurar Apr 2 '14 at 0:24 • Oops, sorry! Thinking too much about the zeroes. Thanks. – colormegone Apr 2 '14 at 0:25 • So It means that it grows without limit to the positive infinity, even though lateral limits are not equal would be the most politically correct answer? – chubakueno Apr 2 '14 at 0:35 • I'm not sure exactly what a "lateral limit" is; your post is the first time I've seen the term. How does it differ from a "one-sided" limit? The issue of "comparing infinities" is being avoided, since the notion of calling something an "infinite limit" is just a convention to summarize a particular situation (and one which is not universally accepted). – colormegone Apr 2 '14 at 0:44 • We are talking about the same thing, it just just my bad use of english :) (that I am currently trying to improve) – chubakueno Apr 2 '14 at 0:47
2019-11-20T02:52:14
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/735900/limits-to-infinity", "openwebmath_score": 0.9388114809989929, "openwebmath_perplexity": 346.0970004662118, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9728307684643189, "lm_q2_score": 0.863391617003942, "lm_q1q2_score": 0.8399339302555958 }
https://math.stackexchange.com/questions/292230/velocity-definite-integral
# Velocity & Definite Integral I am not sure how to approach this problem. Problem Suppose a certain object moves in a straight line with the following velocity, where $v$ is in meters per second and $t$ is in seconds: $v(t) = -2 + t + 3\sin(\pi t)$ Without using your calculator, but instead using properties of definite integrals and facts you know about area, determine the net change in distance of the object from $t = 0$ to time $t = 6$ and find the object's average velocity on this interval. My impression is that the net change in distance would be: $d = \int_{0}^{6} |v(t)| dt$ But since we cannot use our calculators I am unsure. We want the net change in displacement from $t=0$ to $t=6$. This is $$\int_0^6 v(t)\,dt,$$ no absolute values. With absolute values, you are computing the total distance travelled, which would be relevant for gasoline consumption, but is not what is asked for. The average velocity in our time interval is $$\frac{1}{6}\int_0^6 v(t)\,dt.$$ As to doing it without calculation, by properties of area, note that $\sin \pi t$ goes through $3$ full cycles. By the picture of sine, the integral of the sine part is $0$. (There is exactly as much area below the axis as above.) As to the integral of the $-2+t$ part, draw the line $y=-2+t$ (the usual $x$-axis is now called the $t$-axis). The integral is (sort of) the area under this curve, and "above" the $t$-axis, except that from $t=0$ to $t=2$ this area has to be viewed as negative. So it is the area of a certain triangle, $t=2$ to $t=6$, minus the area of a certain triangle, $t=0$ to $t=2$. A picture (for the $y=-2+t$ part, forget about the sine part) is essential. • That makes sense, but to confirm: $\Delta d = 6$ m and the average velocity would then be $v_{ave} = \frac{1}{6} (6) = 1$ m/s. – Biff Feb 1 '13 at 18:13 • Yes, the change in displacement is indeed $6$. – André Nicolas Feb 1 '13 at 18:14 I think net change would not have the absolute value; you would use absolute value when you want to know how much total movement there was. So you simply evaluate $$\int_0^6 v(t) \, dt$$ For your function, you would evaluate \begin{align} \int_0^6 (-2 +t + 2 \sin{(\pi t)}\, dt &= -2 \int_0^6 dt + \int_0^6 t \, dt + 2 \int_0^6 \sin{(\pi t)} \, dt \\ &=-2 (6-0) + \frac{1}{2} (6^2 - 0^2) + \frac{2}{\pi} (1-\cos{(6 \pi)}) \\ &= -12 + 18 \\ &= 6 \end{align} That is, the net distance is $6$ m. Note that I used the fact that $\cos{(6 \pi)} = 1$.
2019-09-24T08:46:02
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/292230/velocity-definite-integral", "openwebmath_score": 0.9966103434562683, "openwebmath_perplexity": 288.4295985161888, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9728307684643189, "lm_q2_score": 0.8633916152464017, "lm_q1q2_score": 0.8399339285458066 }
https://madagas-car.pl/maximilien-robespierre-dqlihta/6351fa-maximum-number-of-edges-in-a-disconnected-graph
Let [FONT=MathJax_Math-italic]k and [/FONT][FONT=MathJax_Math-italic]n - k [/FONT] be the number of vertices in the two pieces. Home Browse by Title Periodicals Discrete Mathematics Vol. mRNA-1273 vaccine: How do you say the “1273” part aloud? So, there is a net gain in the number of edges. Alternate solution a simple connected planar graph G with 10 vertices and 25 edges have 17 faces, Maximum set of edges or vertices that doesn't disconnect graph. So the total number of edges in G is at least 21 + (2kl - 31- k2 + 2k)/2 = (l + 2k1- k2 + 2k)/2 = (n - 2)/2 + k(n - 2) - (k Z - 2k)/2 =kn-(k2+k)/2+(n-2-k),l2,kn-(k+1)k/2. The last remaining question is how many vertices are in each component. Consider a graph of only 1 vertex and no edges. Then, each vertex in the first piece has degree at most $k-1$, therefore the number of edges in the first component is at most $\frac{k(k-1)}{2}$, while the number of edges in the second component is at most $\frac{(n-k)(n-k-1)}{2}$. Even if it has more than 2 components, you can think about it as having 2 "pieces", not necessarily connected. Find number of vertices when given number of edges, What's the minimum number of vertices in a simple graph with $e$ edges. You can also prove that you only get equality for $k=1$ or $k=n-1$. How can there be a custom which creates Nosar? A graph or multigraph is k-edge-connected if it cannot be disconnected by deleting fewer than k edges. Beethoven Piano Concerto No. Let G be a graph with n vertices. Therefore, your graph has at most $\frac{n(n-1)}{2}-k(n-k)$ edges, with equality if the two pieces are complete graphs. formalizes this argument). Stack Exchange network consists of 176 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. Proof. 3: Last notes played by piano or not? A connected n-vertex simple graph with the maximum number of edges is the complete graph Kn . The complement of a tree is usually a connected graph, but the complement of the star $K_{1,n-1}$ is the disconnected graph $G=K_1+K_{n-1},$ and that's our disconnected graph with $n$ vertices and $\binom{n-1}2$ edges. Replacing the core of a planet with a sun, could that be theoretically possible? Therefore our disconnected graph will have only two partions because as number of partition increases number of edges will decrease. site design / logo © 2021 Stack Exchange Inc; user contributions licensed under cc by-sa. How to derive it using the handshake theorem? 1-3 Maximum number of edges in a critically k-connected graph article Maximum number of edges in a critically k-connected graph Request PDF | Maximum number of edges in a critically k-connected graph | A k-connected graph G is said to be critically k-connected if G−v is not k-connected for any v∈V(G). Now assume that First partition has x vertices and second partition has (n-x) vertices. Please use Mathjax for better impact and readability, The maximum no. In a simple undirected graph with n vertices what is maximum no of edges that you can have keeping the graph disconnected? Maximum number edges to make Acyclic Undirected/Directed Graph Dijkstra’s – Shortest Path Algorithm (SPT) - Adjacency Matrix - Java Implementation Categories Graphs , Intermediate , Software Development Engineer (SDE) , Software Engineer Tags Intermediate Leave a comment Post navigation Maximum number of edges in connected graphs with a given domination number Am I allowed to call the arbiter on my opponent's turn? Thanks for contributing an answer to Mathematics Stack Exchange! deleted , so the number of edges decreases . Suppose we have been provided with an undirected graph that has been represented as an adjacency list, where graph[i] represents node i's neighbor nodes. What is the minimum number of edges G could have and still be connected? It only takes a minute to sign up. 24 21 25 16. Now, according to Handshaking Lemma, the total number of edges in a connected component of an undirected graph is equal to half of the total sum of the degrees of all of its vertices. What is the maximum number of edges in a bipartite graph having 10 vertices? Why does "nslookup -type=mx YAHOO.COMYAHOO.COMOO.COM" return a valid mail exchanger? Thus to make it disconnected graph we have $1$ separate vertex on another side which is not connected. It has n(n-1)/2 edges . The maximum number of edges with n=3 vertices −. 1)(n ? What is the maximum number of edges possible in this graph? Maximum number of edges in a simple graph? Now if a graph is not connected, it has at least two connected components. Hence, every n-vertex graph with fewer than n 1 edges has at least two components and is disconnected. It is minimally k -edge-connected if it loses this property when any edges are deleted. If we divide Kn into two or more coplete graphs then some edges are. So the maximum edges in this case will be $\dfrac{(n-k)(n-k+1)}{2}$. Examples: Input: N = 5, E = 1 Output: 3 Explanation: Since there is only 1 edge in the graph which can be used to connect two nodes. How many connected graphs over V vertices and E edges? This can be proved by using the above formulae. I think that the smallest is (N-1)K. The biggest one is NK. Use MathJax to format equations. Since $\overline G$ has at least $n-1$ edges, $G$ itself has at most $\binom n2-(n-1)=\binom{n-1}2$ edges. Origin of “Good books are the warehouses of ideas”, attributed to H. G. Wells on commemorative £2 coin? Is it normal to need to replace my brakes every few months? This is because instead of counting edges, you can count all the possible pairs of vertices that could be its endpoints. Can I print plastic blank space fillers for my service panel? To finish the problem, just prove that for $1 \leq k \leq k-1$ we have Since we have to find a disconnected graph with maximum number of edges with n vertices. By Lemma 9, every graph with n vertices and k edges has at least n k components. According to this paper, Case 3(b): t , 2. The contrapositive of this is that every connected n-vertex graph has at least n 1 edges. Let's assume $n\ge2$ so that the question makes sense; there is no disconnected graph on one vertex. How many edges to be removed to always guarantee disconnected graph? First, for all n ≥ 1, there exists a disconnected graph with n vertices and exactly m(n) edges. As an immediate consequence of Schnyder's theorem, we see that determining the value of M(p, 3) is just the same as finding the maximum number of edges in a planar graph on p vertices, so M(p,3)=3p- 6 for all p~>3. That's the same as the maximum number of [unique] handshakes among $n$ people. If the edge is removed, the graph becomes disconnected… $\endgroup$ – Jon Noel Jun 25 '17 at 16:53 6-20. Proof. Graphs with bounded chromatic number can be drawn on the three-dimensional grid with O(n 2 ) volume, as shown by Pach et al. How to teach a one year old to stop throwing food once he's done eating? { 2 } $better impact and readability, the maximum number of edges in simple. Disconnected graph with n vertices and second partition has ( n-x ) vertices you! Its incidence poset is at most 3 brakes every few months } _2$ first piece degree... A sun, could that be theoretically possible math at any level professionals. If { x, y } is an edge < = x =. It normal to need to replace my brakes every few months maximum number of edges in a disconnected graph me! The different value of maximum number of edges in a disconnected graph and y are adjacent if { x, y is... Custom which creates Nosar cc by-sa can have keeping the graph is not,... The upper estimate in your first solution did you get the upper estimate in your first?! There are exactly $k$ and $n-k$ edges think it... Minimally k -edge-connected if it loses this property when any edges are can about. } _2 $legally move a dead body to preserve it as having 2 pieces... The same as the maximum number of edges G could have and maximum number of edges in a disconnected graph be connected n-x ) vertices \leq \leq. Describe all 2-cell imbeddings of a disconnected graph we have$ 1 \leq k \leq n-1.... Since we have to find the number of edges will decrease imbedding of a k -edge )! I do good work directed graph: 5 let $k ( n-k )$ edges licensed under by-sa... Pairs of vertices in the number of edges G could have and be... Edges of a given connected graph, we introduce the following condition how did you the... The first piece has degree at k-1 Class 6: Max in this graph legally move a dead to. My service panel Lemma 9, every n-vertex graph has at least n edges... On opinion ; back them up with references or personal experience for better impact readability... Not connected, it has at least n 1 edges Jon Noel Jun 25 '17 16:53! Above formulae be the number of edges that satisfies the following condition find number! For complete bipartite graphs for people studying math at any level and in... Service, privacy policy and cookie policy n ) edges user contributions licensed under cc by-sa according to this feed... A sun, could that be theoretically possible to preserve it as evidence the vertices, called the relation! ; user contributions licensed under cc by-sa the maximum no of edges among all the connected.. More coplete graphs then some edges are powerful electromagnet or responding to answers! Many edges to be removed to always guarantee disconnected graph on one vertex vertex another... Print plastic blank space fillers for my service panel cc by-sa has more than m ( n ) is! Call the arbiter on my opponent 's turn 20 ], and this is because of!... no, I didnt think of... no, I didnt and more than 2 components you... = n-1C2 YAHOO.COMYAHOO.COMOO.COM '' return a valid mail exchanger flow problems of counting,... One is NK connected graph, we introduce the following concept: Def the revised formula the! 16:53 Home Browse by Title Periodicals Discrete Mathematics Vol partition increases number of edges could... A disconnected graph with n vertices and second partition has x vertices and component k_ { 1 } there... And minimum at center ( you can think about it as evidence Pauli exclusion principle apply one. Is part of a graph of only 1 vertex and no edges no! Our disconnected graph we have to find the number of edges in x is n 1 edges has least! Would be maximum at both extreme ( at x=1 or x= n-1 ) =.! Edges = nC2 - ( n-1 ) K. the biggest one is.... The edges of a graph is an isolated vertex by Title Periodicals Discrete Mathematics Vol once he 's eating! An edge '17 at 16:53 Home Browse by Title Periodicals Discrete Mathematics Vol by piano or?... On the vertices, called the adjacency relation maximum no of edges in simple. 9 vertices and second partition is complete graph = nC2 - ( )! Measure of its resilience as a network cc by-sa does nslookup -type=mx ''! Privacy policy and cookie policy maximum no of edges possible in this graph only vertex. Value of x and then you will get U '' type of shape Warlock Radiant. } component there are exactly $k ( n-k ) ( n-k+1 ) } { 2 }$ do say... Graph having 10 vertices with maximum number of edges in a complete graph = nC2 level... Connected, it has more than m ( n ) edges V vertices and k components graph. Logo © 2021 Stack Exchange is a net gain in the two.... Type Questions and answers the given graph ( G ), where, 1 < = n-1 which creates?... People studying math at any level and professionals in related fields question makes sense there! And more than m ( n ) edges is $C^ { n-1 } _2$ if x... Studying math at any level and professionals in related fields each vertex in the first piece has degree k-1... Total number of edges use Mathjax for better impact and readability, the minimum number of edges among the! 9 vertices and second partition has x vertices and E edges to our terms of service, privacy and... Legally move a dead body to preserve it as evidence can there be a custom which Nosar... Space fillers for my service panel graph: 5 of vertices in the two.., 1 < = x < = x < = n-1 ], and this because... Imbeddings of a k -edge cut ) you need to minimize $k ( n-k )$ when 1... For complete bipartite graphs to always guarantee disconnected graph we have to find a graph. So, there exists a disconnected graph with maximum number of edges in this case will be $\dfrac (! Minimally k -edge-connected if it has at least$ n-k $be number! Valid mail exchanger as evidence therefore, total number of edges among the. Following concept: Def commemorative £2 coin [ 20 ], and this is that every connected n-vertex has. Fewer than n 1 edges Noel Jun 25 '17 at 16:53 Home Browse by Title Discrete! Is disconnected '' type of shape having 10 vertices and its complement, prove that either of is. I print plastic blank space fillers for my service panel statements is true clear... 'S Radiant Soul: are there any Radiant or fire spells call the arbiter on my opponent 's turn based! That be theoretically possible if a graph define a symmetric relation on the Due! Systems removing water & ice from fuel in aircraft, like in cruising yachts, I didnt return a mail. Begging pardon for font settings of ideas ” maximum number of edges in a disconnected graph attributed to H. Wells... Or cheer me on, when I do good work Structures and Algorithms Objective type Questions answers. 25 '17 at 16:53 Home Browse by Title Periodicals Discrete Mathematics Vol of will! Possible pairs of vertices that could be its endpoints you have n vertices two. Graphs with n=3 vertices − ( n-k )$ edges if { x, y } is an isolated.! Now assume that first partition has ( n-x ) vertices Mathjax for better impact and,. The first piece has degree at k-1 Class 6: Max explanation: After either... Always connected. two partitions, in which one partition is an edge '' ( the answer N.S! Design / logo © 2021 Stack Exchange and minimum at center ( you can get this by differentiation )!: After removing either B or C, the graph becomes disconnected in this graph of edges among all connected... ) = n-1C2 $k=1$ or $k=n-1$ dead body to preserve it as having . Keeping the graph disconnected does the Pauli exclusion principle apply to one fermion and antifermion! '17 at 16:53 Home Browse by Title Periodicals Discrete Mathematics Vol equality for $k=1$ or $k=n-1.... As a network the above formulae learn more, see our tips on writing great.! Teach a one year old to stop throwing food once he 's done eating I.. Only if the dimension of its incidence poset is at most 3 it loses this property any... Get equality for$ k=1 $or$ k=n-1 $the last remaining question is how many graphs! By differentiation also ) the arbiter on my opponent 's turn on another side which is not connected it. { n-1 } _2$ either B or C, the minimum number of edges G have! Any edge of the graph is not connected. x=1 or x= n-1 ) = n-1C2 consider both extremes... First, for all n ≥ 1, there exists a disconnected graph can be a custom which creates?. X= n-1 ) K. the biggest one is NK will have only two partions because as of... To be removed to always guarantee disconnected graph with n vertices is no... $k=1$ or $k=n-1$ make it disconnected graph with n vertices and k edges at! A valid mail exchanger / logo © 2021 Stack Exchange is a question and site! References or personal experience, we introduce the following concept: Def to stop throwing food once 's... Count all the connected components that you can count all the possible pairs of vertices the!
2021-06-15T03:53:30
{ "domain": "madagas-car.pl", "url": "https://madagas-car.pl/maximilien-robespierre-dqlihta/6351fa-maximum-number-of-edges-in-a-disconnected-graph", "openwebmath_score": 0.35139915347099304, "openwebmath_perplexity": 705.4726990497503, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9728307708274402, "lm_q2_score": 0.8633916099737806, "lm_q1q2_score": 0.8399339254567376 }
https://math.stackexchange.com/questions/3385939/constructing-a-function-based-on-a-real-world-scenario
# Constructing a function based on a real-world scenario A random thought came into my head today when I was in the subway: Suppose we have a train in a subway where the stations are evenly spaced in a straight line. The train accelerates for some amount of time, moves with a constant speed for some amount of time, and starts decelerating until it reaches the next station such that the same amount of time spent accelerating and decelerating are the same, and the magnitudes of both are the same. Create a possible function that illustrates this scenario. I decided that I would try to use some combination of a sinusoidal function and a linear function, since the train would try to do the same thing during certain periods of time, and the train is moving only in one direction. I hopped onto Desmos and played around a little bit, and I was able to create a function that gets me somewhat close to what I want. $$d_1(t)=t-\frac1{2\pi}\sin 2\pi t$$ I chose the constant multiple $$\frac1{2\pi}$$ to simplify the distance between each station to $$1$$, and the multiplier $$2\pi$$ for $$t$$ to suggest that it takes $$1$$ unit of time to get from one station to the next. Choosing the sinusoidal function means that there will be no length of time where the train is moving at a constant speed, and the acceleration and deceleration will be exactly opposite, separated by the point of inflection halfway between the stations. The problem: trains usually stop at every station. I want to, arbitrarily at first, modify the function so that the train waits for the same amount of time as it takes to travel from one station to another. Eventually, I want to be able to construct a function that can describe the waiting time in some proportion to the traveling time. I came up with the function $$d_2(t)=\begin{cases}t-\frac{\lfloor t\rfloor}2-\frac1{2\pi}\sin 2\pi t,& \lfloor t\rfloor \textrm{ is even}\\ \frac{\lceil t\rceil}2,& \lfloor t\rfloor \textrm{ is odd} \end{cases}$$ This gets me something closer to what I want. My questions: 1. What alternative ways of representing the scenario are there? For example, would it be possible to construct a piecewise function based only on polynomials that meets the criteria above? 2. Is there a way to represent this particular scenario without use of a piecewise function? 3. Suppose there must be a stretch of time where the train is moving at a constant speed between stations. How can I factor that in to the equation for the function? 4. Suppose the train makes the return trip in a similar manner, and it makes some number of return trips daily. Does this suggest that it can be written as a periodic function? If so, what would be the equation for that function? • I know you tagged this as precalculus, but if you start by just considering the acceleration, you can then anti-differentiate to get velocity and anti-differentiate again to get distance. From the description you gave, you would end up with a piecewise function of quadratics. Oct 8 '19 at 20:25 • Yes, I see where you are coming from, but I want to suppose that the acceleration may or may not be constant -- having the same sign is sufficient (e.g. having an acceleration $x>0$ in one interval, then having the deceleration (or negative acceleration) be the same magnitude, but different sign). Thanks for input; I will remove that tag since concavity of a function is based on knowledge of calculus. Oct 8 '19 at 20:42 • You can try to make formal your conditions as differential equations, solving which will give you an infinite family of possible solutions. Oct 8 '19 at 20:52 • Particularly question 4, because of the periodicity aspect, made me think of Fourier Series: en.wikipedia.org/wiki/Fourier_series Oct 8 '19 at 21:40 • If you want your function to be constant in some sections, than it cannot be analytic. In your situation this translates to the fact that you need a piecewise definition. Oct 9 '19 at 7:05 Just collecting various comments all in one place, and filling in some holes / details. First, a function $$d(t)$$ is simply a mapping from values in the domain (in your case: time) to values in the range (in your case: distance). Whether you can write that function as a "nice" formula of "well-known" expressions, is kinda irrelevant. I should add though, the confusion between (abstract) functions and (nice) formulas is historic, so if you have the same confusion, you're not alone. :) In the context of $$d(t)$$ being the motion of a train, there are reasonable assumptions to be adopted, e.g. $$d$$ should be continuous (the train does not "teleport"), differentiable (velocity is well defined) and maybe twice differentiable (acceleration is well defined). However, even after adopting these, there is nothing special about sinusoids. (In the context of a moving pendulum, or (idealized) planetary rotation, maybe sinusoids would be natural, but a moving train...?) Q1: As answered by @79037662 it is surely possible to model the train motion $$d(t)$$ as piecewise polynomial - and in fact for a train this would probably be more natural than modeling by sinusoids. Assuming no friction (ha!) a zero acceleration would give constant velocity $$v(t)$$ and linear $$d(t)$$, a constant non-zero acceleration would give linear velocity $$v(t)$$ and quadratic $$d(t)$$, a linear acceleration would give quadratic $$v(t)$$ and cubic $$d(t)$$, etc. If you have pieces of acceleration you will have pieces of polynomial $$d(t)$$ and once you have pieces of polynomials you simply have to be careful to "glue" them together. The piecewise formula might be tedious to write out but there is nothing magical going on. Q2: As answered by @quarague it is not possible for your function to have a constant stretch and also be analytic, and "analytic" very roughly translates to something with a nice formula (and probably includes most "familiar" functions you have in mind: polynomials, sinusoids, exponentials, etc). This is actually a non-trivial result. This applies to both distance (constant distance implying stopping at a station) and velocity: If you have constant stretches and non-constant stretches (in either distance or velocity), then you will have to write your function as piecewise. Q3: Constant speed simply means that part of $$d(t)$$ is linear, e.g. $$d(t) = v t + C$$. Here $$v$$ is the constant velocity. You get this $$d(t)$$ by integrating $$v$$ over $$t$$. Q4: As answered by @AdamRubinson Fourier Series would be a way to go, but for the purpose of writing out the function it's probably overkill. Suppose $$d^*(t)$$ for $$t \in [0,1]$$ describes what happens to the train in the first hour, and $$d^*(0)=d^*(1)$$ s.t. the train makes a complete round trip. Further suppose the train does this every hour, then you can simply write the overall $$d(t)$$ as $$d(t) = d^*(t - \lfloor t \rfloor)$$ Here $$\lfloor t \rfloor$$ is the standard notation for the "floor" function which denotes the greatest integer $$\le t$$, so e.g. if $$t=13.7$$ then $$\lfloor t \rfloor = 13$$ and $$t - \lfloor t \rfloor = 0.7$$ gives the fraction part of $$t$$. Note that while "floor" is a "standard" function, it is piecewise. Which in a roundabout way brings us back to the your Q2: you can always describe a piecewise function in a non-piecewise way... if you define a new name for it! :) Hope this helps (as opposed to confuses even further!) • Thanks for a detailed response! Got a final question for you: suppose I wanted to create a polynomial function for my above $d_1(t)$ on, say, $[0,m]$. Is there a way to ensure that the "bumps" that I have are all uniform (like, $(n,n+1)$ acts the same as $(n-1,n)$ except one unit up)? It is (in addition to my naivety or my lack of training) why I tried to think about it using a periodic function in the first place. Oct 9 '19 at 16:12 • Say $x$ is a variable $\in (0,1)$, then you seem to be saying you want $f(n+x) = f(n-1 + x) + 1$. The only polynomial function that does that would be linear; quadratics, cubics etc all never do that. So if $f$ is polynomial but not linear, then you have to specify $f$ as piecewise polynomial, e.g. maybe use my idea in Q4 or something similar. Oct 9 '19 at 17:18
2022-01-18T10:53:51
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3385939/constructing-a-function-based-on-a-real-world-scenario", "openwebmath_score": 0.7681986689567566, "openwebmath_perplexity": 258.9404844407216, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.972830768464319, "lm_q2_score": 0.8633916064586998, "lm_q1q2_score": 0.8399339199968598 }
https://math.stackexchange.com/questions/4375095/width-of-this-shape
"Width" of this shape I know the length of the arc A, the sides L, the bottom W and the maximum height H. I would like to calculate the maximum width. What would I derive a formula for it? Edits: The whole shape is symmetrical on both sides of H. There is no guarantee that L are radii of the circle that would be formed from A. Johan Biemans, who posted below, first posed the question to me. • Are $W$, $H$ and $A$ in the center? Feb 6 at 0:22 • Yes they are. Thanks for checking. Feb 6 at 0:28 • If you can get the radius $r$, then use the formular to find chord length: $2 × \sqrt(r^2− d^2)$ where $d$ is perpendicular distance from the centre – Abel Feb 6 at 0:31 • Is $A$ a circular arc? Feb 7 at 16:39 • There seems to be a lot of confusion about your diagram. So first of all, is the figure symmetric about H? And second, are the lines L normal to the arc A, that is, are the lines L along radii of A? Feb 8 at 15:58 I will begin this by saying that the following is only true if $$L\parallel L'$$ for each pair of legs, $$L+L'=R$$ and if $$A$$ is a circular arc. I've added a bit to your diagram, as you can see below. For the sake of clarity, I have extended the sides to meet at a point. Additionally, I have notated the distance from the point to the middle of the arc as $$R$$ and the distance from the top of the arc to the midpoint of $$D$$ as $$P$$. From here, we have a few basic geometric theorems we can use. Namely, if we allow $$\theta$$ to be the angle between the two $$L'$$ legs of our newly formed traingle, • $$A=R\theta$$ • $$D=2R\sin{(\frac{A}{2R})}$$ • $$P=R-\sqrt{R^2-(\frac{D}{2})^2}=R(1-\sqrt{1-(\frac{D}{2R})^2})$$ To start, we must make our first, most useful substitution: $$R=\frac{A}{\theta}$$. Swapping this out in our definition of $$D$$ and our formula for $$P$$, we get • $$D=\frac{2A}{\theta}\sin{(\frac{\theta}{2})}$$ • $$P=\frac{A}{\theta}(1-\sqrt{1-(\frac{D\theta}{2A})^2})$$ Plugging our new formula for $$D$$ into our one for $$P$$, we get • $$P=\frac{A}{\theta}(1-\sqrt{1-\sin^2{(\frac{\theta}{2})}})$$ Here's where everything comes into play. If, as we said, $$L\parallel L'$$, then the triangle with sides $$L', L',$$ and $$W$$ will be similar to the triangle with sides $$L+L', L+L',$$ and $$D$$. If these two triangles are similar, then the following relation will also be true: • $$\frac{R-H}{R-P} = \frac{W}{D}$$ Expanding this out, we get • $$\frac{\frac{A}{\theta}-H}{\frac{A}{\theta}-\frac{A}{\theta}(1-\sqrt{1-\sin^2{(\frac{\theta}{2})}})} = \frac{W}{\frac{2A}{\theta}\sin{(\frac{\theta}{2})}}$$ This can be massively simplified if we multiply both sides by $$\frac{\theta}{\theta}$$. Doing so yields us • $$\frac{A-H\theta}{A\sqrt{1-\sin^2{(\frac{\theta}{2})}}} = \frac{W\theta}{2A\sin{(\frac{\theta}{2})}}$$ We can rearrange this to give us • $$\frac{A-H\theta}{W\theta}=\frac{\sqrt{1-\sin^2 (\frac{\theta}{2})}}{2\sin{(\frac{\theta}{2})}}$$ And now, squaring each side, we see • $$(\frac{A-H\theta}{W\theta})^2 = \frac{1-\sin^2 (\frac{\theta}{2})}{4\sin^2{(\frac{\theta}{2})}}$$ It is at this point I must concede that I don't know how you would solve for $$\theta$$ here, or if, in fact, you can solve for $$\theta$$. However, if you can, then the solution follows very naturally. If $$\theta = f(A,H,W)$$, then very simply, the width of the shape will be $$D=\frac{2A}{f(A,H,W)}\sin(\frac{f(A,H,W)}{2})$$. I understand that this does not solve the problem in general and only solves it if a certain requirement is met, but at the very least, I hope that this can help you get on the right path. • Thank you! I was hoping for a general solution but I'll study yours and learn some things for sure. Feb 8 at 6:42 • An update after thinking on it some more - that last equality is actually equal to $(\frac{A-H\theta}{W\theta})^2 = \frac{1}{4}\cot^2{(\frac{\theta}{2})}$, which further simplifies down to $\frac{A-H\theta}{W\theta} = \frac{1}{2}\cot{(\frac{\theta}{2})}$. This looks easier to solve, but I'm still not sure how to approach it. Feb 8 at 13:23 I am making some assumptions about your diagram with this solution. First of all, that it is symmetric about $$H$$ and second that the lines $$L$$ are normal to the arc $$A$$, that is, they are radial lines. Here are the basic relations you need: The arc $$s=A=R\theta$$, where $$R$$ is the radius of the arc and $$\theta$$ is the angle of the sector (both as yet unknown). The unknown chord $$c=2R\sin(\theta/2)$$. Extending the lines $$L$$ so that they intersect at the origin for the arc, we'll have two similar triangle for which we can say $$\frac cW=\frac{R}{R-L}$$ Substituting the above relations we can find the following equation for $$\theta$$ in terms of known quantities, to wit $$2R\sin\frac{\theta}{2}=\frac{RW}{R-L}\\ 2\sin\frac{\theta}{2}\big(\frac{s}{\theta}-L\big)=W$$ You will have to solve for $$\theta$$ by iteration, then get $$R=A/\theta$$ and $$c=2R\sin(\theta/2)=2A\sin(\theta/2)/\theta$$. I can't post replies to comments because I am a new user, but in the diagram in the OP: • Line H is perpendicular to W • Line H bisects W, Unknown and A • Line W and Unknown are parallel • Arc A is a circular arc • The L lines are not along the Radii of A, but they are symmetrical. (The shape is mirrored along H) Diagram Here is a working version of the calculator if anyone is interested: https://jbiemans77.github.io/CurvedShapeCalculator/CurvedShapeCalculator/index.html And the source code: https://github.com/jbiemans77/CurvedShapeCalculator My solution was a little less orthadox but I thought I would share to see if it could spark someone else. I couldn't find a way to make a forumla that worked, so instead, I used a trial and error approach. Unfortunately, because L is not on a radius line of A, I can't use the solutions above. I created a triangle on the corner and made a guess at the angle (starting at 45). I then used the information I had to calculate the unknown and the arc length. I compared my arc length to the A value I was looking for, and then kept adjusting the angle until I got a matching arc length. Once I did, I found the unknown. It usually took the program between 10-20 attempts before it could narrow it down to the correct answer. I can share the code if anyone wants. The basic math though was: //Use the triangle to find the height of the arc and length of the unknown P (Height Of Arc) = H - (L * (Sin(90-aA) / Sin(90) )) U (Cord Length - Unknown) = W + (L * (Sin(aA) / Sin(90) )) * 2 //Use the Cord length and height of arc to find the radius and the arclength RA = (((U * U) / (P * 4)) + P) / 2 A = ((Asin(U / (RA * 2))) * 2) * RA ( I tried to simplify it out to make it clean. The calculation part of the code is:) float topAngle = angleToTry; float bottomAngle = 90-topAngle; float topAngleRadians = ConvertDegreeToRadians(topAngle); float hypotenuseC = lengthOfSides; float heightOfArc = heightOfShape-heightOfTriangle; float cordLength = lengthOfBottom + baseOfTriangle + baseOfTriangle; finalWidthOfPiece = cordLength; float radiusOfArc = (((cordLength*cordLength) / (heightOfArc*4)) + heightOfArc) / 2; float arcLength = ((Mathf.Asin(cordLength / (radiusOfArc * 2))) * 2) * radiusOfArc; Now that I am advised that the $$L$$'s are not radial to the arc, I'll take a different view. This is not a solution, per se, but is too long for a comment. So, the unknown chord, $$c$$, can be expressed in terms of both the arc and the trapezoid. Let's define $$\alpha$$ as the obtuse angle ($$LW$$) of the trapezoid, $$R$$ as the radius of the arc, $$h$$ as the height of circular segment, and $$\theta$$ as the angle of the circular sector. Now, for the circular arc, $$c=2R\sin\frac{\theta}{2}=2h\tan\frac{\theta}{2}$$ and for the trapezoid, $$c=W+2L\cos(\pi-\alpha)=W-2L\cos\alpha,\quad \alpha\in (\pi/2,\pi)$$ We can express the segment height in terms of $$H,L,\alpha$$, $$h=H-L\sin(\pi-\alpha)=H-L\sin\alpha$$ Combining the above, we find $$\tan\frac{\theta}{2}=\frac{W-2L\cos\alpha}{2(H-L\sin\alpha)}$$ This is as far as I can go without specific values for $$L,W,H$$, but it suggests that there are multiple possible solutions. Edit: Without the assumption that the $$L$$ segments are along the radius of the arc, the given information is not enough to identify a unique solution to the problem. See an example in the figure below. In this example, for ease of verification, the angles of the arcs in the large and small green circles are $$\frac{\pi}{4}$$ and $$\frac{\pi}{2}$$, respectively, and the proportion of their radii is $$\frac21$$. Therefore it is easy to see that the two green arcs are of equal length. The radii of the dashed blue circles are $$L$$. It can be seen that there are an infinite number of solutions to this problem. On the other hand, with the assumption that the $$L$$ segments are along the radius of the arc (thank you @DavidK and OP) the problem can be solved as described in my pre-edit answer: Extend the sides to meet at point $$O$$. This is the center of the circle that includes your arc. Let the radius of this circle be $$R$$ and the angle between the two radii be $$\alpha$$. Then $$\sin \frac{\alpha}{2} = \frac{\frac W2}{R-L}$$ $$\cos \frac{\alpha}{2} = \frac{R-H}{R-L}$$ (Why?) From here solve the equation $$\sin^2\frac{\alpha}{2} + \cos^2\frac{\alpha}{2} = 1$$ to find $$R$$. Can you take it from here? • You assume that the segments labeled $L$ lie along radii of the arc. I see nothing in the problem statement to guarantee that this is true. Feb 7 at 4:22 • @DavidK Good observation, thanks. Feb 7 at 19:32 • There is a comment under the problem about $W$, $H$ and $A$ being in the center, which was confirmed by the OP. Reading that, I jumped to the assumption that the orange segment is the perpendicular bissector of segment $W$. Feb 7 at 19:41 • Actually I'm fairly sure that the orange segment is the perpendicular bisector of the bottom edge. But the question is the angle between the side edges and the arc. Suppose you have $A,L,W,H$ so that the $L$ segments are radii of the arc. Reduce $A.$ The figure still exists, but the edges $L$ now end inside the old figure and the arc has a smaller radius. The center of the arc has moved upward but the intersection of the $L$ lines (when extended) has moved downward, so those segments can no longer lie on radii. Feb 8 at 2:46 • It's true that I was hoping for a solution that does not constrain the angle where the arc meets the sides at all. But I'm learning from these solutions! Feb 8 at 6:44 Cye Waldman got me thinking about this in a slightly different way. I was always focused on solving one shape before the other, but I should have been thinking of both shapes at the same time. The following mess works to solve the arc length given $$W$$, $$L$$, $$H$$ and the top angle of the triangle (I labeled it $$a_B$$ on my previous response.) However, in this case, we don't have $$a$$ (the angle), but we do have the other side $$A$$ (the arc length). Is there any way to isolate a in the equation below to solve for it given $$L$$, $$W$$, $$H$$ and $$A$$? Or is it way too much of a mess to do so? $$A = \sin^{-1}{\!\left(\frac{W + L\sin{\!(a)} + L\sin{\!(a)}}{\left(\frac{(W + L\sin{\!(a)} + L\sin{\!(a)})(W + L\sin{\!(a)} + L\sin{\!(a)})}{4(H - L\sin{\!(90^{\circ}-a)})} + H - L\sin{\!(90^{\circ}-a)}\right) / 2 \cdot 2}\right)} \cdot 2\left(\frac{(W + L\sin{\!(a)} + L\sin{\!(a)})(W + L\sin{\!(a)} + L\sin{\!(a)})}{4(H - L\sin{\!(90^{\circ}-a)})} + (H - L\sin{\!(90^{\circ}-a)})\right) / 2$$ I was able to clean it up a bit with the help of a math site: $$A = \sin^{-1}{\!\left(\frac{W + 2L\sin{\!(a_B)}}{H + \frac{(W + 2L\sin{\!(a_B)})^2}{4H + 4L\sin{\!(a_B - 90^{\circ})}} + L\sin{\!(a_B - 90^{\circ})}}\cdot\left(H + \frac{(W + 2L\sin{\!(a_B)})^2}{4H + 4L\sin{\!(a_B - 90^{\circ})}} + L\sin{\!(a_B - 90^{\circ})}\right)\right)}$$ • Please review the way I've used MathJax to format your question and use similar techniques in the future. Feb 15 at 1:36 • Thank you, I couldn't figure out how to display it like that. I will try to learn more before future posts. Feb 15 at 13:15 • @JacobManaker, do you have access to the initial equation I posted still ? I think there might be a formatting error in the MathJax version. Thank you. Feb 25 at 14:47 • If you click on "edited Feb 15 at 1:35" it will show your original version and the changes I made. (That's what I meant by "review"; my comment may have seemed a little critical of you if you didn't know that, for which I apologize.) Feb 25 at 20:44 • Thank you, I didn't know how to find that information. It turned out that my "cleaned up" version, had some errors in it, and when you fixed the formatting it made that error much more apparent. I just trusted the software that I ran it through without first double checking that it simplified it correctly. Also don't worry about the comment, I am glad that it was critical because I do need to learn. It was constructive criticism and it was also done with the corrections (not just telling me to fix it), so as far as I am concerned it was well done. Feb 28 at 15:34
2022-09-25T21:23:46
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/4375095/width-of-this-shape", "openwebmath_score": 0.8001608848571777, "openwebmath_perplexity": 287.77765260552144, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9728307716151472, "lm_q2_score": 0.8633916029436189, "lm_q1q2_score": 0.8399339192976796 }
https://math.stackexchange.com/questions/2091094/prove-if-f-is-positive-and-increasing-on-a-b-then-l-n-%E2%89%A4-a-%E2%89%A4-r-n-riemann
Prove if f is positive and increasing on $[a, b]$ then $L_n ≤ A ≤ R_n.$ (riemann sum) Prove if f is positive and increasing on $[a, b]$ then for all $n\ge 0$ we have $L_n \le A \le R_n$. (Riemann sum) Let $A$ denote the actual area. Let $L_n$ denote the left Riemann sum. Let $R_n$ denote the right Riemann sum. So far what I did: $$\int_{a}^{b} f(a) dx \leq \int_{a}^{b} f(x) dx \leq \int_{a}^{b} f(b)$$ But after this I am stuck on the proof? 2 Answers Just write the definitions $$L_n = \sum_{i=0}^{n-1}f(x_i){b-a\over n}\le \sup_m L_m = A= \inf_m R_m \le \sum_{i=1}^n f(x_i){b-a\over n}$$ here the $\sup=\limsup$ by monotonicity of $f$. and if you're not familiar with the $\sup$ notation, then try this $$L_n =\sum_{i=0}^{n-1}f(x_i){b-a\over n}=\sum_{i=0}^{n-1}\int_{x_i}^{x_{i+1}}f(x_i)\,dx \le \sum_{i=1}^{n-1}\int_{x_i}^{x_{i+1}}f(x)\,dx$$ $$= \int_a^b f(x)\,dx$$ $$=\sum_{i=1}^n\int_{x_{i-1}}^{x_i}f(x)\le \sum_{i=1}^n\int_{x_{i-1}}^{x_i}f(x_i)\,dx =\sum_{i=1}^nf(x_i){b-a\over n}=R_n$$ • Does the downvoter want to explain what he/she thinks is wrong with my answer? – Adam Hughes Jan 10 '17 at 0:22 • Is the first claim clearly true? I can see that $L_n \le \sup_m L_m$, and for an integrable $f$, $\limsup_m L_m = A$, but I think that going from $\sup_m L_m$ to $\limsup_m L_m$ possibly requires a little more justification. (same comment w.r.t. the upper bound). – πr8 Jan 10 '17 at 0:47 • @πr8 monotonicity means $\limsup = \sup$. I've edited this detail in. – Adam Hughes Jan 10 '17 at 0:51 • The function is monotone, but is it clear that the upper/lower sums are monotone as a result of this? Will change to an upvote in any case - was hasty to downvote, and the remainder of your answer is exemplary. – πr8 Jan 10 '17 at 1:01 For partition $x_0<x_1<\cdots<x_n$ Left Riemann sum: $= \sum_\limits{i=1}^{n} f(x_{i-1})(x_{i}-x_{i-1})$ Right Riemann sum: $= \sum_\limits{i=1}^{n} f(x_i)(x_i-x_{i-1})$
2019-06-20T07:03:03
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2091094/prove-if-f-is-positive-and-increasing-on-a-b-then-l-n-%E2%89%A4-a-%E2%89%A4-r-n-riemann", "openwebmath_score": 0.9433050751686096, "openwebmath_perplexity": 555.6926573220067, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9728307676766119, "lm_q2_score": 0.8633916047011595, "lm_q1q2_score": 0.8399339176069709 }
https://math.stackexchange.com/questions/2048469/how-to-prove-that-a-function-is-affine/2048484
# How to prove that a function is affine? I am trying to understand the concept of affinity of functions. First, I thought that every affine function has to be a linear function, too, because my teacher's notes define linear and affine functions as follows: $$T(\sum_{i=0}^n \alpha_iu_i) = \sum_{i=0}^n\alpha_iT(u_i)$$ is a linear function. An affine function is defined as $T(\sum_{i=0}^n \alpha_iu_i)$ with $\sum_{i=0}^n \alpha_i = 1$ and the above condition of a linear function. Then, I found the example of $f(x) = 2x + 3$ which is an affine function but not linear which is pretty confusing to me (I understand why it is not linear, but have no clue as to why it is affine according to the definitions). I also have to solve a problem such as: $$T: \mathbb{R} \to \mathbb{R}, T(x,y,z) := (x − z + 1, y - 5, z - y, 2)$$ but I really have no idea how to proof if it's affine or not. There are no $\alpha$ and that function is not linear, so I am kind of stuck here. I appreciate any sort of help, like links to websites or anything that helps me to understand this because I have no strategy to solve this problem. • Every linear function is affine but not the other way around. Think of an affine function as a linear function plus a constant. – copper.hat Dec 7 '16 at 18:53 A function is affine iff $$T(\lambda x + (1-\lambda) y) = \lambda T(x) + (1-\lambda) T(y)$$ for all $$x,y$$ and $$\lambda \in \mathbb{R}$$. It is straightforward to show that the above definition is the same as the one in the question. You can use this to answer your question by checking that $$T(\lambda (x_1,y_1,z_1) + (1-\lambda)(x_2,y_2,z_2)) = \lambda T((x_1,y_1,z_1)) + (1-\lambda)T((x_2,y_2,z_2))$$ for any scalar $$\lambda$$. Also, note that if $$T$$ is affine and we let $$L(x) = T(x)-T(0)$$, then $$L(\lambda x) = T(\lambda x) - T(0) = T (\lambda x + (1-\lambda) 0) - T(0) =\lambda T(x)+(1-\lambda) T(0) - T(0) = \lambda L(x)$$, and $$L(x+y) = 2 L({1 \over 2} (x+y))= 2 T({1 \over 2} (x+y)) - 2T(0)= 2( {1 \over 2}(T(x)+T(y)))-2 T(0) = L(x)+L(y)$$. Hence $$L$$ is linear, and we can write $$T(x) = T(0)+L(x)$$. It is easy to check that if $$L$$ is linear and $$c$$ is a constant vector, then $$T(x) = L(x)+ c$$ is affine. So we see that $$T$$ is affine iff it can be written as a constant plus a linear function. In your case, we see that we can write $$T((x,y,z)) = A (x,y,z)^T + b$$ for some matrix $$A$$ and some vector $$b$$. • Ok, I think I am getting the hang of it. But just to be clear: the function is not linear so this approach would pretty much end up with the same result, right? If multiplying with a scalar proofs that it is not a linear function, following this approach, it would also proof that it is not affine, right? – Urmir Dec 7 '16 at 19:05 • The function you have is not linear (it is affine). The above means you just need to check for two $u$s, not $n$ of them... – copper.hat Dec 7 '16 at 19:06 • So I randomly choose six values plus an $\lambda$ and check if the equation holds for these values? – Urmir Dec 7 '16 at 19:16 • No, there's no randomness. Compute the three expressions $T(\lambda (x_1,y_1,z_1) + (1-\lambda)(x_2,y_2,z_2))$, $T((x_1,y_1,z_1))$, and $T((x_2,y_2,z_2))$ and check that the above equality holds. – copper.hat Dec 7 '16 at 19:18 • So what I did is $$T(\alpha (x_1,y_1,z_1) + (1-\alpha)(x_2,y_2,z_2)) = ((\alpha x_1 + (1-\alpha)(x_2))-(\alpha y_1 + (1-\alpha)y_2)+2, ...$$ and so on for the equation in my question above. I ended up with $\alpha(x_1-x2+2, ...)$ and $(1-\alpha)(y_1-y_2+2, ...)$. Is that path to the solution? – Urmir Dec 7 '16 at 19:46 Every affine function is a linear function "plus a constant vector". That is, for every affine function $A(x)$, there is a vector $v$ and a linear function $T(x)$ such that $A(x)=T(x)+v$. What is the difference between linear and affine function
2021-03-07T19:15:34
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2048469/how-to-prove-that-a-function-is-affine/2048484", "openwebmath_score": 0.9064493179321289, "openwebmath_perplexity": 85.36728471617997, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9728307668889048, "lm_q2_score": 0.8633916047011594, "lm_q1q2_score": 0.839933916926871 }
https://math.stackexchange.com/questions/2501158/prove-that-there-is-only-a-single-point-of-minimum-distance-for-n3-points
# Prove that there is only a single point of minimum distance for $N>3$ points We want to mimimize the sum of distances from $n$ distinct points. Prove that there exists only one such point for $n>3$ if all the $n$ points lie on a single plane (and not on a single line) The problem seems quite tough, but might possess an elegant solution. I tried creating two PDE's (partial differential equations) for $x$ and $y$ coordinates and couldn't find anything fruitful. Might be something towards vectors and their sum. • Would you care to explain the statement ''Prove that there exists only one such point for n>3 on a single plane.'' It is not clear to me what you mean. You could minimize the sum of those distances, but the unclear part is ''on a single plane'' – John D Nov 2 '17 at 10:38 • @Magnusseen i meant all points lie on a single plane – avz2611 Nov 2 '17 at 10:40 • @JohnWatson Partial Differential Equations – avz2611 Nov 2 '17 at 10:40 • I think some confusion is created by the wording, hence the questions. But as I understand it, you are given a fixed number of points, say $k$, on a plane and you seek to show that there exists a unique point on the plane, different from these $k$ points, such that the distance of it from all these $k$ points is minimum. – MathematicianByMistake Nov 2 '17 at 10:46 • Glad to clarify. I suggest you edit because it seems-to me at least-as a very nice problem. +1 – MathematicianByMistake Nov 2 '17 at 10:49 lemma:suppose $A,B,C$ are three distinic points on plane , and $M$ is the middle point of $BC$, then $AM \le {{AB+AC} \over 2}$ proof: if three points $A,B,C$ lie on a line it is clear the condtion is true, now consider the case which three point create a triangle , suppose $A_1$ be the symmetry point of $A$ into $M$ then quadrilateral $ABA_1C$ diameters , cuting each other in to half , so it is a parallelogram.please note that $AA_1=2AM$ and $AB=CA_1$ now accordin to the triangle inequality in the $AA_1C$ we have $AA_1 <AC+CA_1$ thus $2AM<AB+AC$ and it is proved. now lets solve problem using this lemma: suppose ${A_1,A_2,A_3,....,A_n}$ are $n$ distinic point and suppose there exist two point that has minimumthe sum of distances from $n$ distinct points, call them $X$ and $Y$. call the middle point of $X$ and $Y$ the $M$,now we are using above lemma in $A_1XY$ and $A_2XY$ and ... $A_nXY$ (please note that even if three point lies on a line then lemma is true): $A_1M \le {{A_1X+A_1Y}\over 2}$ $A_2M \le {{A_2X+A_2Y}\over 2}$ ..... $A_nM \le {{A_nX+A_nY}\over 2}$ add all of them ,$A_1M+A_2M+...+A_nM \le { {A_1X+...+A_nX+A_1Y+...+A_nY} \over 2}$ but since all the points is not on a single line so at least one of the inequalitys is strict inequality thus $A_1M+A_2M+...+A_nM < { {A_1X+...+A_nX+A_1Y+...+A_nY} \over 2}$, and since $X$ and $Y$ has minimum sum,call it H, so $A_1M+A_2M+...+A_nM < H={2H\over 2}={ {A_1X+...+A_nX+A_1Y+...+A_nY} \over 2}$ so the point $M$ is the desired point which is contradiction.(note you should add all the point is not on a single line other wisee there exist two points) • Oh my goodness i forgot to mention that thanks for mentioning this! – avz2611 Nov 2 '17 at 11:39 • i really like this solution, clean and simple to understand +1! – avz2611 Nov 2 '17 at 14:33 Hints & References You are seeking to prove that the Geometric median is unique. This holds true only if the points are not colinear, an assumption that should be added at the description. This paper-"The multivariate L1-median and associated data depth"-presents a generalized approach. This answer on-"How to find out Geometric Median" on stackoverflow provides an algorithm for finding such a point. Also this post-"Geometric median (or Fermat-Weber problem), including continuous case"-here on MSE might interest you- Here is your sum $$S(r) = \sum_{k=1}^n \lVert r - r_k \rVert$$ where $r, r_k \in \mathbb{R}^N$. The $i$-th component of the $r$-gradient of $S$ in the Euclidean norm is \begin{align} \partial_i S(r) &= \partial_i \sum_{k=1}^n \lVert r - r_k \rVert \\ &= \partial_i \sum_{k=1}^n \sqrt{\sum_{j=1}^N \left(x_j - x_{k,j} \right)^2} \\ &= \sum_{k=1}^n \frac{1}{2}\lVert r - r_k \rVert^{-1} \sum_{j=1}^N 2(x_j-x_{j,k})\delta_{ij} \\ &= \sum_{k=1}^n \frac{x_i-x_{k,i}}{\lVert r - r_k \rVert} \end{align} So critical points $r$ of $S$ (which are candidates for extrema) fulfill the condition $$\sum_{k=1}^n \frac{r-r_k}{\lVert r - r_k \rVert} = 0$$ This seems to be the characterization of the geometric median (Wikipedia article). The Wikipedia article links to Vardi & Zhang (2000) for a uniqueness proof, which was already cited by MathematicianByMistake. • I dont get it why does this prove uniqueness – avz2611 Nov 2 '17 at 11:36 • It does not. It just provides the starting point, why one lands at the geometric median – mvw Nov 2 '17 at 13:04 Suppose the minimum sum occurs at two points, $P$ and $Q$. Let $M$ be the midpoint of the line segment $PQ$. For all points not on the line $PQ$, the distance to $M$ is strictly less than the average of the distance to $P$ and $Q$. Since it's assumed that not all $n$ points are on a single line, the sum of their distances to $M$ is strictly less than the average of their sums to $P$ and $Q$ -- which is to say, strictly less than the minimum sum. That's a contradiction, hence the mimimum sum occurs at a unique point. Remark: As Nick Pavlov points out, this answer essentially duplicates Dexpectra's. That answer contains a nice proof of the key observation, that the distance to $M$ is less than the average of the distances to $P$ and $Q$ (by viewing $M$ as the center of a parallelogram with $P$ and $Q$ as oppositve vertices). • this might be worded more succinctly than Dexpectra's answer, but is otherwise exactly the same; perhaps we need a [duplicate] flag for answers now, too. – Nick Pavlov Nov 2 '17 at 12:28 • @NickPavlov, I have to admit, I glanced at Dexpectra's answer but didn't read it. – Barry Cipra Nov 2 '17 at 12:31
2019-07-20T09:25:26
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2501158/prove-that-there-is-only-a-single-point-of-minimum-distance-for-n3-points", "openwebmath_score": 0.9601722359657288, "openwebmath_perplexity": 438.87194875546265, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9728307668889047, "lm_q2_score": 0.8633916011860785, "lm_q1q2_score": 0.8399339135072921 }
http://ucpd.aoru.pw/p-series-calculus.html
# P Series Calculus In mathematics, a series is, roughly speaking, a description of the operation of adding infinitely many quantities, one after the other, to a given starting quantity. 8 Infinite Series 8. The course emphasizes not just getting answers, but asking the question "why is this true?". 8 Taylor and Maclaurin Series Chapter 8 Review Chapter 8 Group Research. n th-Term Test for Divergence If the sequence {a n} does not converge to zero, then the series a n diverges. ANALYTIC GEOMETRY & CALCULUS II Textbook or ebook: thCalculus – 10 Edition by Larson and Edwards, Cengage Learning Publisher. Alternating Series Test: If the series has the form 1 n a n, then the series converges if 0 aa nn 1 (decreasing terms) for all n, for some n, and lim 0 n n b. 8 where Cis the number of correct responses and Iis the number of incorrect responses. (These courses have been audited and approved by the College Board to carry the AP designation and have been acknowledged to provide students with a college. Math 132 - Calculus II - Course Outline (Spring, Fundamental Theorem of Calculus Part I. Using the p-Series test determine if the series $\sum_{n=1}^{\infty} \frac{n^2}{n^4}$ is convergent or divergent. 17Calculus - You CAN ace calculus. If p > 1 then the sum of the p-series is ζ(p), i. We had a guess for pi: somewhere between 2. 4 The Comparison Tests 9. Calculus I and II). Calculus X is the most effective study tool for calculus at the AP or intro college level. Power Series i. The worked-out solutions give students a way to check their answers, ensure that they took the correct steps to arrive at an answer, and help them understand how to solve even the toughest problems. Herep is the parameter. You will need to find one of your fellow class mates to see if there is something in these notes that wasn't covered in class. Course Description AP Calculus has two levels, Calculus AB and Calculus BC. 5 The Ratio Test and the Root Test 8. One of them contains the terms of the series, represented by arrows. Free series convergence calculator - test infinite series for convergence step-by-step. Limit comparison test with a p-series calculus 2? Use the limit comparison test with a p-series to determine whether the following series are convergent or divergent. 6 Alternating Series; Absolute and Conditional Convergence 8. You may want to review that material before trying these problems. The 1st Fundamental Theorem of Calculus is an extremely important theorem that allows us to find the area under a curve over an interval. Successful students will earn 3 credit hours. We will now look at some examples of specifically applying the p-Series test. Se você está vendo esta mensagem, significa que estamos tendo problemas para carregar recursos externos em nosso website. A 15 100 1 1,lim nn54 n 5 5 ss →∞ ⎛⎞+n ==⎜⎟ ⋅1= ⎝⎠+n C I. Distinguishing features of the course include: 1) the introduction and use of Taylor series and approximations from the beginning; 2) a novel synthesis of discrete and continuous forms of Calculus;. Again, Excel can be used to demonstrate this behavior. Math 112 Worksheet 4: Series Convergence Testing I Instructions: Determine whether the following series converge or diverge. This calculator will find the sum of arithmetic, geometric, power, infinite, and binomial series, as well as the partial sum. We also use the fact that sin T / T approaches 1 when T approaches 0. It is part of the unit on Infinite Series, (Chapter 9 in most of the Larson textbooks. In addition, L'Hôpital's rule, improper integrals, and using partial fractions to integrate rational functions are commonly. The following exercises test your understanding of infinite sequences and series. Evaluating Limits Analytically. Besides finding the sum of a number sequence online, server finds the partial sum of a series online. Now is the time to redefine your true self using Slader's free Stewart Calculus answers. p-series Series of the form X1 np, where pis a constant power, are called p-series. instructions accordingly as quizzes and tests in Honors AP Calculus AB will have two parts: no calculator allowed and graphing calculator permitted. So we can say the p-Series converges if, and only if, this integral right over here converges. It is suitable for a one-semester course, normally known as "Vector Calculus", "Multivariable Calculus", or simply "Calculus III". Recall the p-Test: Regardless of the value of the number p, the improper integral is always divergent. 3 Direct Comparison, Limit Comparison, & Ratio Test. Note: The harmonic series is a p-series with p =1. 11 Suppose f is a continuous, positive, decreasing function for x z: 1 and let. The p-series test determines the nature of convergence of a p-series as follows: The p-series converges if and diverges if. Each question is followed by a "Hint" (usually a quick indication of the most efficient way to work the problem), the "Answer only" (what it sounds like), and finally a "Full solution" (showing all the steps required to get to the right answer). 1 n=1 ( 1) n b. So x = 6 must be included in the interval of convergence. Solved Example: Consider the series. Using the p-Series test determine if the series $\sum_{n=1}^{\infty} \frac{n^2}{n^4}$ is convergent or divergent. AP CALCULUS BC Section Number: 9. When p 1, the series is the divergent Harmonic series. Marginal cost, marginal revenue, and marginal profit. 3 Direct Comparison, Limit Comparison, & Ratio Test. Binomial series ( ) 1 2 2 3 3( ) ( )( ) 1. A series, which is not a list of terms like a sequence, is the sum of the terms in a sequence. So in this particular case, our p, for this p-series, is equal to five. (Reprinted in Selected Papers on Calculus, The Mathematical Association of America, 1968, 353-354. p a p a p a a a a p n c n n c n n n n n n n c n No Conclusion, when diverges, when converges, when if then n n 8. Alternating Series remainder For a convergent alternating series, the absolute value of the remainder in approximating the sum with the first n partial sums is less than or equal to the value of the first neglected term. Parallel Cross Sections. However their convergence or divergence depends on the denominator's exponent, p. This section introduced us to series and defined a few special types of series whose convergence properties are well known: we know when a $$p$$-series or a geometric series converges or diverges. Problems to look at. The latest versions may be found by. (Reprinted in Selected Papers on Calculus, The Mathematical Association of America, 1968, 353–354. Then generalize to define an entire class of series called p-series, and prove a theorem showing when they converge. X1 n=1 n3 n4 1 2. CONICS, PARAMETRIC EQUATIONS, AND POLAR COORDINATES. In this part of the exercise we will see how to use information about P 1 k 2 to determine information about P 1 k 2+k. We know that this series is convergent because it is a p-series. 3 # 1,17,21,25,35,59 Vocabulary: p-series Study Questions: When should you use the integral test to check the converge or divergence of a series? Prove the p-series test using the integral test?. ) [3] Rick Kreminski, Using Simpson’s Rule to Approximate Sums of Infinite Series, The College. 3 Day 1 - Packet 1, 7, 14, 17, 28; 10. ) Summarizing the above work, we know that 4 is not included, but 6 is. Let's make our guess better. View Notes - Section 9. The series ($\sum \frac{1}{n}$), known as the harmonic series, diverges by to the p-series test. Recall the p-Test: Regardless of the value of the number p, the improper integral is always divergent. Diverges by limit comparison with harmonic series. MATH 2414 - Calculus II Summary of Series Facts Geometric Series diverges. Late transcendentals and multivariable versions are also available. So this would be the first term, in this p-Series, this would just be an area of one. 10· 9· 8· 7. Theorem (Monotonic Sequence Theorem). Close with the sum of the harmonic series, the fascinating Euler-Mascheroni constant, which is not known to be rational or irrational. Strategy for Testing Series: Solutions 1. Proof - Convergence of a p-Series Contact Us If you are in need of technical support, have a question about advertising opportunities, or have a general question, please contact us by phone or submit a message through the form below. Arithmetic and Geometric Series Definitions: If a = 0 the series is often called a Maclaurin series. We know that the series P 1 k 2 is a p-series with p = 2 > 1 and so P 1 k 2 converges. When p= 1, the p-series is the harmonic series which we know diverges. Each question is followed by a "Hint" (usually a quick indication of the most efficient way to work the problem), the "Answer only" (what it sounds like), and finally a "Full solution" (showing all the steps required to get to the right answer). To be honest, many students will never see series outside of their calculus class. (In particular, if p > 1, then the graph is concave up, such as the parabola y = x2. Convergence of Infinite Series. 3 The Integral Test; p-series 8. Stack Exchange network consists of 175 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. AP Calculus BC Course Syllabus Resources Larson, Ron, Robert P. X1 k=2 1 4k2 The series is a constant multiple of a p-series with p= 2 >1, so the series converges. 2 Linear Models and Rates of Change [11] P. p-series Test File. December 17, 2016 Final Exam Math 162 (Calculus IIA) and the original integral is Z arcsinxdx = xarcsinx+ p 1 x2 +C: 4. Calculus Test One Section One Multiple-Choice No Calculators Time—30 minutes Number of Questions—15. This calculus course covers differentiation and integration of functions of one variable, and concludes with a brief discussion of infinite series. PERMUTATIONS AND COMBINATIONS. Download free-response questions from past exams along with scoring guidelines, sample responses from exam takers, and scoring distributions. Problem Solving. Calculus II Calculators; Math Problem Solver (all calculators) Series and Sum Calculator. nth-Term Test for Divergence. Below is a checklist through which one can run a given series to try to determine its convergence classification. Series is one of those topics that many students don’t find all that useful. Who Am I 4. Moreover, we have. In other words, series is an important topic even if you won’t ever see any of the applications. Combination problems. X1 n=1 n3 n4 1 2. * Series of constants + Motivating examples, including decimal expansion + Geometric series with applications + The harmonic series. The course is intended to be challenging and demanding. (b) n-th Term Test for Divergence: If. I Leave out the theory and all the wind. 17Calculus - You CAN ace calculus. Chapter P Preparation for Calculus [1] P. AP CALCULUS AB/BC I. In an Arithmetic Sequence the difference between one term and the next is a But a sum of an infinite sequence it is called a "Series". A p-series can be either divergent or convergent, depending on its value. Recall the p-Test: Regardless of the value of the number p, the improper integral is always divergent. The course teaches all topics associated with Functions, Graphs, Limits, Derivatives, Integrals, Polynomial Approximations, Series, Parametric and Polar Equations. Moreover, we have. Thisis better example to do the Converges. Sigma notation, divergent series, convergent series. Equal Opportunity Notice The Issaquah School District complies with all applicable federal and state rules and regulations and does not discriminate on the basis of sex, race, creed, religion, color, national origin, age, honorably discharged veteran or military status, sexual orientation including gender expression or identity, the presence of any sensory, mental or physical disability, or. Wolfram Demonstrations Project. Since the harmonic series diverges, these. We also use the fact that sin T / T approaches 1 when T approaches 0. Theorem (Monotonic Sequence Theorem). AP Calculus Questions Similar to AB Exams Free AB Calculus Test Practice Questions with Answers - Sample 1. We will now look at some examples of specifically applying the p-Series test. In this fifth part--part five of five--we cover a calculus for sequences, numerical methods, series and convergence tests, power and Taylor series, and conclude the course with a final exam. When p= 1, the p-series is the harmonic series which we know diverges. By using higher derivatives, the idea of a tangent line can be extended to the idea of polynomials of higher degree which are "tangent" in some sense to a given curve. A power series is an infinite series. AP Calculus BC - Sequences and Series Chapter 11- AP Exam Problems solutions 1. You Can Turn Your Calculus Grade Around. Therefore, our series is absolutely convergent (and therefore convergent). Section 11. The course teaches all topics associated with Functions, Graphs, Limits, Derivatives, Integrals, Polynomial Approximations, Series, Parametric and Polar Equations. ANALYTIC GEOMETRY & CALCULUS II Textbook or ebook: thCalculus – 10 Edition by Larson and Edwards, Cengage Learning Publisher. Integral P Series Homework Link Follow the above link for file with integral test and P series test problems. An unanswered question earns. Side note: most of the BC exam is AB, so if your AB knowledge is good don't worry too much, just learn the new thing. 1 - Area Between Curves. Processing is an open source programming language and environment for people who want to create images, animations, and interactions. The sample tests are just to give you an idea of the a general idea of the topics covered, the level of difficulty, how questions may be worded and, if solutions are provided, what is the acceptable level of detail required in the solutions. Test and Worksheet Generators for Math Teachers. A Series Test Gauntlet. MATH 2414 - Calculus II Summary of Series Facts Geometric Series diverges. Here is another type of series that may converge or diverge dependent upon the value of a parameter. Proof of the method If P(1) is OK, then we can use this to deduce that P(2) is true and then use this to show that P(3) is true and so on. This is a challenging sub-section of algebra that requires the solver to look for patterns in a series of fractions and use lots of logical thinking. Free series convergence calculator - test infinite series for convergence step-by-step. At the end of the PayPal checkout, you will be sent an email containing your key and download instructions. Is the series similar to a $$p$$-series or a geometric series? If so, try the Comparison Test. Note as well that there really isn't one set of guidelines that will always work and so you always need to be flexible in following this set of guidelines. com: Calculus with Analytic Geometry, Alternate (9780395889022) by Ron Larson; Robert P. com Functions READ: Linear Functions Find Slope Find y=mx+b All-in-one-Function Explorer Evaluate Function Find Domain of f(x) Find Range of f(x) Intersection of 2 Functions Composition of 2 Functions f(g(x)) Do the Quadratic Equation Complete the Square. Now you might immediately recognize this as a p-series, and a p-series has the general form of the sum, going from n equals one to infinity, of one over n to the p, where p is a positive value. 2 Introduction to Infinite Series; Geometric Series 8. Its sum is nite for p>1 and is in nite for p 1. Does the celebrated harmonic series diverge or converge? Discover a proof using the integral test. 32 min 3 Examples. If p=1, we call the resulting series the harmonic series: By the above theorem, the harmonic series does not converge. Enter CONV for convergent, DIV for divergent , and the value of p. As a known series, only a handful are used as often in comparisons. (d) If you want to show a series converges, compare it to a larger series that also converges. For the the series in form of 1/nᴾ, the easiest way to determine its convergence is using the p-series test:. @radicalnumber @desmos used for exploring vertex form of a quadratic, students liked seeing how a,h, and k values effect the graph. Also available are scanned solutions to problems in differential, integral and multi-variable calculus and series. So we are using the p series calculus function. 6 Alternating Series and Absolute Convergence 9. Useful Materials and Links: I'll probably post small notes about particular lectures here if need be. CONICS, PARAMETRIC EQUATIONS, AND POLAR COORDINATES. 4 Absolute and Conditional Convergence; Alternating Series Jiwen He 1 Convergence Tests Basic Series that Converge or Diverge Basic Series that Converge Geometric series: X xk, if |x| < 1 p-series: X 1 kp, if p > 1 Basic Series that Diverge Any series X a k for which lim k→∞ a k 6= 0 p-series: X 1 kp, if p ≤ 1. Red and Black 7. Parametric Equations and Calculus. 1 Sequences and Their Limits 8. First we'll prove P(1); this is called "anchoring the induction". On each upward bounce the ball returns to 3 1 of it previous height. Recall the p-Test: Regardless of the value of the number p, the improper integral is always divergent. Most series that we encounter are not one of these types, but we are still interested in knowing whether or not they converge. Sigma notation, divergent series, convergent series. Comparison Tests (19 minutes, SV3 » 52 MB, H. But since 1/n^(3/2) is a converging p-series, the series in question converges also. To distinguish between them we specify what their improper point is. The p-Integrals. 4 Integral Test and Alternating Series Test. Series Convergence & Divergence This page of videos will cover most of your series needs, so that's why it's so long. P an = s YES P an Diverges NO TAYLOR SERIES Does an = f(n)(a) n! (x −a) n? NO YES Is x in interval of convergence? P∞ n=0 an = f(x) YES P an Diverges NO Try one or more of the following tests: NO COMPARISON TEST Pick {bn}. Distinguishing features of the course include: 1) the introduction and use of Taylor series and approximations from the beginning; 2) a novel synthesis of discrete and continuous forms of Calculus;. CONICS, PARAMETRIC EQUATIONS, AND POLAR COORDINATES. Free math problem solver answers your calculus homework questions with step-by-step explanations. APfi Calculus BC 2002 Free-Response Questions These materials were produced by Educational Testing Service fi (ETS ), which develops and administers the examinations of the Advanced Placement Program for the College Board. Learn ap calculus series with free interactive flashcards. Free math lessons and math homework help from basic math to algebra, geometry and beyond. The unique pneumatic toggle clamp mechanism can develop up to 60 tons of clamp force with regular shop air. I hope this helps!. A ball is dropped from a height of 9. 1 n=1 ( 1) n b. Three big theorems are found in this chapter: 1st Fundamental Theorem of Calculus, 2nd Fundamental Theorem of Calculus, and the Mean Value Theorem for Integrals. Geometric Series 1. However their convergence or divergence depends on the denominator's exponent, p. Serioes of this type are called p-series. 5 Notes for AP Calculus class (I guess college calculus, too). Preface: The goal of this text is to help students learn to use calculus intelligently for solving a wide variety of mathematical and physical problems. Convergence of Power Series Lecture Notes Consider a power series, say 0 B œ " B B B B âa b # $%. On each upward bounce the ball returns to 3 1 of it previous height. 3 LECTURE NOTES Topics: The Integral Test and p-Series - The. CONICS, PARAMETRIC EQUATIONS, AND POLAR COORDINATES. Distinguishing features of the course include: 1) the introduction and use of Taylor series and approximations from the beginning; 2) a novel synthesis of discrete and continuous forms of Calculus;. 5 The Root and Ratio Tests 9. If the series has a finite number of terms, it is a simple matter to find the sum of the series by adding the terms. sum_(k=1)^oo (1 / k^p) Please express your views of this topic Dot Product Properties by commenting on blog. Sequences in Calculus. Series can expand about the point x = ∞. Their basic terminology is summarized in the table below. HD videos covering everything you need to know in Calculus I, II & III + Linear Algebra and Differential Equations; Now Offering ALGEBRA, PRECALCULUS, TRIG, & MATH. Look closely at the preceding example. Does the celebrated harmonic series diverge or converge? Discover a proof using the integral test. 8 where Cis the number of correct responses and Iis the number of incorrect responses. is convergent if p > 1 and divergent otherwise. Overview of Sequences and Series with terms and definitions. a) Using Maple, graph the first twenty terms of the series. A Series Test Gauntlet. As a study aid, I have listed below the major. Limits An Introduction to Limits Epsilon-Delta Definition of the Limit Evaluating Limits Numerically Understanding Limits Graphically Evaluating Limits Analytically Continuity Continuity at a Point Properties of Continuity Continuity on an Open/Closed Interval Intermediate Value Theorem Limits Involving Infinity Infinite Limits Vertical Asymptotes. It is suitable for a one-semester course, normally known as "Vector Calculus", "Multivariable Calculus", or simply "Calculus III". Using the p-Series test determine if the series$\sum_{n=1}^{\infty} \frac{n^2}{n^4}$is convergent or divergent. The absolute values of the series is a divergent p-series with. AP Calculus BC Course Syllabus Resources Larson, Ron, Robert P. Heath and Company, 5th edition 1994 – student issued textbook Hughes-Hallett, Deborah, et al. PCHS AP CALCULUS. First we'll prove P(1); this is called "anchoring the induction". Teach yourself calculus. AP CALCULUS AB/BC I. Expression: Variable. Chapter 8: Infinite Sequences and Series, Calculus (3e) by Stewart Important theorems and convergence tests (compiled by Niels Joaquin) Theorem (Squeeze Theorem for Sequences). If this was your ID you would only type in BD92F455. It takes the following form: Here's a common example of a p-series, when p = 2: Here are a few other examples of p-series: Remember not to confuse p-series with geometric series. We will now look at some examples of specifically applying the p-Series test. The series includes High School Chemistry, AP Chemistry, General Chemistry, Organic Chemistry and Biochemistry. p-series Test File. For examples, look at the sample questions released by SOA. p-Series Convergence The p-series is given by 1/n p = 1/1 p + 1/2 p + 1/3 p + where p > 0 by definition. While taking the Advanced Placement (AP) Calculus BC exam is not. If a series is divergent and you erroneously believe it is convergent, then applying these tests will lead only to extreme frustration. To achieve this goal, students will gain a thorough understanding of the topics covered in the course outline (typical Calculus 2 course in college). The sum of all combinations. If you continue browsing the site, you agree to the use of cookies on this website. When p = 1, the p-series is the harmonic series, which diverges. 2 Geometric Series, p-Series, and nth Term Test. Factor x inside the square root and use the fact that sqrt (x). Calculus: Development of Major Content Strands PDF If you have adopted the CPM curriculum and do not have a teacher edition, please contact our Business Office at (209) 745-2055 for information to obtain a copy. ∫f(x) dx Calculus alert! Calculus is a branch of mathematics that originated with scientific questions concerning rates of change. Free math problem solver answers your calculus homework questions with step-by-step explanations. We’re currently working with$ p $-series in my Calculus class, and I’ve fallen for the apparently common misconception that the infinite sum$ \displaystyle \sum_{n=1}^{\infty} \frac{1}{n^{p}} $, where$ p = 1 $, should converge, whereas in reality, it diverges. This guide offers step-by-step solutions for all odd-numbered text exercises in Calculus of a Single Variable 11e (Chapters P-11 of Calculus 11e). Problem Solving. Power Series. Alternating Series remainder For a convergent alternating series, the absolute value of the remainder in approximating the sum with the first n partial sums is less than or equal to the value of the first neglected term. Saleem Watson, who received his doctorate degree under Stewart's instruction, and Daniel Clegg, a former colleague of Stewart's, will author the revised series, which has been used by more than 8 million students over the last fifteen years. We explain calculus and give you hundreds of practice problems, all with complete, worked out, step-by-step solutions. AP Calculus Questions Similar to BC Exams. [Note: the list is not definite; you may learn all or some of the things mentioned, or you may learn other topics not listed her. The 1st Fundamental Theorem of Calculus is an extremely important theorem that allows us to find the area under a curve over an interval. The first term in the series is a, and the last one is a+(n-1)d, so we can say the sum of the series is the first term plus the last term multiplied by the number of terms divided by 2. 58 The AP CALCULUS PROBLEM BOOK A. You will need to find one of your fellow class mates to see if there is something in these notes that wasn't covered in class. Since the harmonic series diverges, these. (These courses have been audited and approved by the College Board to carry the AP designation and have been acknowledged to provide students with a college. 3 Problem 2E. AP Calculus. A Series Test Gauntlet. Calculus For Dummies, 2nd Edition makes calculus manageable—even if you're one of the many students who sweat at the thought of it. Calculus is not explicitly tested on P (one of the changes from 1 to P). AP Calculus BC Review — Chapter 12 (Sequences and Series), Part One Things to Know and Be Able to Do ¾ Understand the distinction between sequences and series ¾ Understand the meaning of convergence (absolute and conditional), divergence, boundedness and how to test for each. Lecture 25/26 : Integral Test for p-series and The Comparison test In this section, we show how to use the integral test to decide whether a series of the form X1 n=a 1 np (where a 1) converges or diverges by comparing it to an improper integral. Webassign Answers. After taking this course you'll be able to work with functions in a variety of ways, and be able to use derivatives to solve a variety of problems, which is math-speak for having the skills to build the future of technology. Index for Calculus Math terminology from differential and integral calculus for functions of a single variable. Alexandru Cibotarica at Ivy Tech Community College - StudyBlue. Proof - Convergence of a p-Series Contact Us If you are in need of technical support, have a question about advertising opportunities, or have a general question, please contact us by phone or submit a message through the form below. Video transcript. Convergence of Infinite Series. Learners in this course can earn a certificate in the series by signing up for Coursera's verified certificate program and passing the series' final exam. Conics and Calculus. This book covers calculus in two and three variables. Series Calculator computes sum of a series over the given interval. Hostetler; Bruce H. 264 » 20 MB). There is no general method of determining the test you should use to check the convergence of a series. Topic 9: Calculus Option Series Part 1 A series consists of C v+C w+C x…qK S=z T St_ qK s=z S T st_ It is denoted by: For a total sum For a partial sum The Divergence Test states:. Awesome, right? Intro to Convergence & Divergence (free) As you probably noticed, there are a LOT of videos in …. BC Calculus - "Fun with P Series" For the following P series: ∑ n=1 ∞ 1 n1. Find more Mathematics widgets in Wolfram|Alpha. Lecture 25/26 : Integral Test for p-series and The Comparison test In this section, we show how to use the integral test to decide whether a series of the form X1 n=a 1 np (where a 1) converges or diverges by comparing it to an improper integral. Fundamental Theorem of Calculus; Simpson's Rule & Trapezoid Rule; Improper Integrals; Sequences; Series. Alternating Series remainder For a convergent alternating series, the absolute value of the remainder in approximating the sum with the first n partial sums is less than or equal to the value of the first neglected term. Processing is an open source programming language and environment for people who want to create images, animations, and interactions. Factor x inside the square root and use the fact that sqrt (x). calculus to graduate-level classes in algebra and numerical analysis. We’re currently working with$ p $-series in my Calculus class, and I’ve fallen for the apparently common misconception that the infinite sum$ \displaystyle \sum_{n=1}^{\infty} \frac{1}{n^{p}} $, where$ p = 1 \$, should converge, whereas in reality, it diverges. Problem Solving. In general, a p-series follows the following form: p-series are useful because of the following theorem: The p-series is convergent if p > 1 and divergent otherwise. Series Formulas 1. Integral Test Finally, let's talk about a convergence test that may help out in certain specialized situations. 1 Convergence of Series - Free download as Powerpoint Presentation (. An important type of series is called the p-series. Excerpts from "How To Ace Calculus". Most of the applications are beyond the scope of most Calculus courses and tend to occur in classes that many students don’t take. Calculus Test Two Section One Multiple-Choice Calculators Allowed Time—45 minutes Number of Questions—15 The scoring for this section is determined by the formula [C −(0. 1 n=1 +1 n, where n > 0 for all n, is called an alternating series, because the terms alternate between positive and negative values. I A series of the form P. December 17, 2016 Final Exam Math 162 (Calculus IIA) and the original integral is Z arcsinxdx = xarcsinx+ p 1 x2 +C: 4. The course emphasizes not just getting answers, but asking the question "why is this true?". 10 Convergence of Taylor Series 10. Two graphs are included. Side note: most of the BC exam is AB, so if your AB knowledge is good don't worry too much, just learn the new thing. 6 Ratio Test and Root Tests notes by Tim Pilachowski The geometric series r cr cr m n n m − ∑ = ∞ = 1 if and only if r <1. Differentiation rules 3. Wolfram Demonstrations Project. Chapter 11 Infinite Sequences and Series Test 4 [James Stewart Calculus 8E] - Mathematics 212 with Dr. Unfortunately some improper integrals fails to fall under the scope of these tests but we will not deal with them here. 1 - Area Between Curves. questions Free-response: 3 questions (partial) Personal Progress Check 2. However, the geometric series is an exception. Excerpts from "How To Ace Calculus". Thinkwell's Calculus course covers both Calculus I and Calculus II, each of which is a one-semester course in college. Typically these tests are used to determine convergence of series that are similar to geometric series or p-series. It is part of the unit on Infinite Series, (Chapter 9 in most of the Larson textbooks. Listed #'s correspond to class lessons and topics. (a) Consider the series X 1 k 2 and X 1 k 2 + k. The p-series test determines the nature of convergence of a p-series as follows: The p-series converges if and diverges if. This is useful for analysis when the sum of a series online must be presented and found as a solution. The Confrontation 3. Calculus Test One Section One Multiple-Choice No Calculators Time—30 minutes Number of Questions—15. (In particular, if p > 1, then the graph is concave up, such as the parabola y = x2.
2020-04-04T05:26:23
{ "domain": "aoru.pw", "url": "http://ucpd.aoru.pw/p-series-calculus.html", "openwebmath_score": 0.7618722915649414, "openwebmath_perplexity": 850.8486311592696, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9928785729400543, "lm_q2_score": 0.8459424353665381, "lm_q1q2_score": 0.8399181180161626 }
https://nhigham.com/2020/11/24/what-is-a-nonnormal-matrix/
# What Is a (Non)normal Matrix? An $n\times n$ matrix is normal if $A^*A = AA^*$, that is, if $A$ commutes with its conjugate transpose. Although the definition is simple to state, its significance is not immediately obvious. The definition says that the inner product of the $i$th and $j$th columns equals the inner product of the $i$th and $j$th rows for all $i$ and $j$. For $i = j$ this means that the $i$th row and the $i$th column have the same $2$-norm for all $i$. This fact can easily be used to show that a normal triangular matrix must be diagonal. It then follows from the Schur decomposition that $A$ is normal if it is unitarily diagonalizable: $A = QDQ^*$ for some unitary $Q$ and diagonal $D$, where $D$ contains the eigenvalues of $A$ on the diagonal. Thus the normal matrices are those with a complete set of orthonormal eigenvectors. For a general diagonalizable matrix, $A = XDX^{-1}$, the condition number $\kappa(X) = \|X| \|X^{-1}\|$ can be arbitrarily large, but for a normal matrix $X$ can be taken to have 2-norm condition number $1$. This property makes normal matrices well-behaved for numerical computation. Many equivalent conditions to $A$ being normal are known: seventy are given by Grone et al. (1987) and a further nineteen are given by Elsner and Ikramov (1998). The normal matrices include the classes of matrix given in this table: Real Complex Diagonal Diagonal Symmetric Hermitian Skew-symmetric Skew-Hermitian Orthogonal Unitary Circulant Circulant Circulant matrices are $n\times n$ Toeplitz matrices in which the diagonals wrap around: $\notag \begin{bmatrix} c_1 & c_n & \dots & c_2 \\ c_2 & c_1 & \dots & \vdots \\ \vdots & \ddots & \ddots & c_n \\ c_n & \dots & c_2 & c_1 \\ \end{bmatrix}.$ They are diagonalized by a unitary matrix known as the discrete Fourier transform matrix, which has $(r,s)$ element $\exp( -2\pi \mathrm{i} (r-1)(s-1) / n )$. A normal matrix is not necessarily of the form given in the table, even for $n = 2$. Indeed, a $2\times 2$ normal matrix must have one of the forms $\notag \left[\begin{array}{@{\mskip2mu}rr@{\mskip2mu}} a & b\\ b & c \end{array}\right], \quad \left[\begin{array}{@{}rr@{\mskip2mu}} a & b\\ -b & a \end{array}\right].$ The first matrix is symmetric. The second matrix is of the form $aI + bJ$, where $J = \bigl[\begin{smallmatrix}\!\phantom{-}0 & 1\\\!-1 & 0 \end{smallmatrix}\bigr]$ is skew-symmetric and satisfies $J^2 = -I$, and it has eigenvalues $a \pm \mathrm{i}b$. It is natural to ask what the commutator $C = AA^*- A^*A$ can look like when $A$ is not normal. One immediate observation is that $C$ has zero trace, so its eigenvalues sum to zero, implying that $C$ is an indefinite Hermitian matrix if it is not zero. Since an indefinite matrix has at least two different nonzero eigenvalues, $C$ cannot be of rank $1$. In the polar decomposition $A = UH$, where $U$ is unitary and $H$ is Hermitian positive semidefinite, the polar factors commute if and only if $A$ is normal. The field of values, also known as the numerical range, is defined for $A\in\mathbb{C}^{n\times n}$ by $F(A) = \biggl\{\, \displaystyle\frac{z^*Az}{z^*z} : 0 \ne z \in \mathbb{C}^n \, \biggr\}.$ The set $F(A)$ is compact and convex (a nontrivial property proved by Toeplitz and Hausdorff), and it contains all the eigenvalues of $A$. Normal matrices have the property that the field of values is the convex hull of the eigenvalues. The next figure illustrates two fields of values, with the eigenvalues plotted as dots. The one on the left is for the nonnormal matrix gallery('smoke',16) and that on the right is for the circulant matrix gallery('circul',x) with x constructed as x = randn(16,1); x = x/norm(x). ## Measures of Nonnormality How can we measure the degree of nonnormality of a matrix? Let $A$ have the Schur decomposition $A = QTQ^*$, where $Q$ is unitary and $T$ is upper triangular, and write $T = D+M$, where $D = \mathrm{diag}(\lambda_i)$ is diagonal with the eigenvalues of $A$ on its diagonal and $M$ is strictly upper triangular. If $A$ is normal then $M$ is zero, so $\|M\|_F$ is a natural measure of how far $A$ is from being normal. While $M$ depends on $Q$ (which is not unique), its Frobenius norm does not, since $\|A\|_F^2 = \|T\|_F^2 = \|D\|_F^2 + \|M\|_F^2$. Accordingly, Henrici defined the departure from normality by $\notag \nu(A) = \biggl( \|A\|_F^2 - \displaystyle\sum_{j=1}^n |\lambda_j|^2 \biggr)^{1/2}.$ Henrici (1962) derived an upper bound for $\nu(A)$ and Elsner and Paardekooper (1987) derived a lower bound, both based on the commutator: $\notag \displaystyle\frac{\|A^*A-AA^*\|_F}{4\|A\|_2} \le \nu(A) \le \Bigl( \displaystyle\frac{n^3-n}{12} \Bigr)^{1/4} \|A^*A-AA^*\|_F^{1/2}.$ The distance to normality is $\notag d(A) = \min \bigl\{\, \|E\|_F: ~A+E \in \mathbb{C}^{n\times n}~~\mathrm{is~ normal} \,\bigr\}.$ This quantity can be computed by an algorithm of Ruhe (1987). It is trivially bounded above by $\nu(A)$ and is also bounded below by a multiple of it (László, 1994): $\notag \displaystyle\frac{\nu(A)}{n^{1/2}} \le d(A) \le \nu(A).$ Normal matrices are a particular class of diagonalizable matrices. For diagonalizable matrices various bounds are available that depend on the condition number of a diagonalizing transformation. Since such a transformation is not unique, we take a diagonalization $A = XDX^{-1}$, $D = \mathrm{diag}(\lambda_i)$, with $X$ having minimal 2-norm condition number: $\kappa_2(X) = \min\{\, \kappa_2(Y): A = YDY^{-1}, ~D~\mathrm{diagonal} \,\}.$ Here are some examples of such bounds. We denote by $\rho(A)$ the spectral radius of $A$, the largest absolute value of any eigenvalue of $A$. • By taking norms in the eigenvalue-eigenvector equation $Ax = \lambda x$ we obtain $\rho(A) \le \|A\|_2$. Taking norms in $A = XDX^{-1}$ gives $\|A\|_2 \le \kappa_2(X) \|D\|_2 = \kappa_2(X)\rho(A)$. Hence $\notag \displaystyle\frac{\|A\|_2}{\kappa_2(X)} \le \rho(A) \le \|A\|_2.$ • If $A$ has singular values $\sigma_1 \ge \sigma_2 \ge \cdots \ge \sigma_n$ and its eigenvalues are ordered $|\lambda_1| \ge |\lambda_2| \ge \cdots \ge |\lambda_n|$, then (Ruhe, 1975) $\notag \displaystyle\frac{\sigma_i(A)}{\kappa_2(X)} \le |\lambda_i(A)| \le \kappa_2(X) \sigma_i(A), \quad i = 1\colon n.$ Note that for $i=1$ the previous upper bound is sharper. • For any real $p > 0$, $\notag \displaystyle\frac{\rho(A)^p}{\kappa_2(X)} \le \|A^p\|_2 \le \kappa_2(X) \rho(A)^p.$ • For any function $f$ defined on the spectrum of $A$, $\notag \displaystyle\frac{\max_i|f(\lambda_i)|}{\kappa_2(X)} \le \|f(A)\|_2 \le \max_i|f(\lambda_i)|.$ For normal $A$ we can take $X$ unitary and so all these bounds are equalities. The condition number $\kappa_2(X)$ can therefore be regarded as another measure of non-normality, as quantified by these bounds. ## References This is a minimal set of references, which contain further useful references within.
2021-10-17T22:13:39
{ "domain": "nhigham.com", "url": "https://nhigham.com/2020/11/24/what-is-a-nonnormal-matrix/", "openwebmath_score": 0.9715813398361206, "openwebmath_perplexity": 166.27571390853623, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9928785723078832, "lm_q2_score": 0.8459424314825853, "lm_q1q2_score": 0.8399181136250886 }
https://math.stackexchange.com/questions/3060767/why-is-frac15-sqrt4125-sqrt45-15-sqrt5-and-not-15-sqrt425
# Why is $\frac{15\sqrt[4]{125}}{\sqrt[4]{5}}$ $15\sqrt{5}$ and not $15\sqrt[4]{25}$? I have an expression I am to simplify: $$\frac{15\sqrt[4]{125}}{\sqrt[4]{5}}$$ I arrived at $$15\sqrt[4]{25}$$. My textbook tells me that the answer is in fact $$15\sqrt{5}$$. Here is my thought process: $$\frac{15\sqrt[4]{125}}{\sqrt[4]{5}}$$ = $$\frac{15*\sqrt[4]{5}*\sqrt[4]{25}}{\sqrt[4]{5}}$$ = (cancel out $$\sqrt[4]{5}$$ present in both numerator and denominator) leaving: $$15\sqrt[4]{25}$$ Where did I go wrong and how can I arrive at $$15\sqrt{5}$$? • The fourth root is the square root of the square root ... Jan 3 '19 at 16:54 $$\frac{\sqrt[4] {125}}{\sqrt[4] 5} = \frac{\sqrt[4] {5^3}}{\sqrt[4] 5} = \sqrt[4]{5^2} = 5^{\frac{2}{4}} = 5^{\frac{1}{2}} = \sqrt 5$$ Even quicker, $$\sqrt[4]{25}$$ means $$\sqrt{\sqrt{25}}$$, which becomes $$\sqrt{5}$$. Write $$\sqrt[4]{\frac{125}{5}}=\sqrt[4]{25}=\sqrt{5}$$ It turns out that $$\sqrt[4]{25}=\sqrt{5}$$. This is because $$25=5^2$$, so that $$\sqrt[4]{25}=\sqrt[4]{5^2}=(5^2)^{1/4}=5^{1/2}=\sqrt{5}.$$ So, you are correct, as is the book. • Thanks for helping me with your answer. I went with KM101 answer only because, for me, it just read slightly more intuitively between each step. At least for me. Jan 3 '19 at 17:09
2021-09-21T04:49:31
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3060767/why-is-frac15-sqrt4125-sqrt45-15-sqrt5-and-not-15-sqrt425", "openwebmath_score": 0.9452316761016846, "openwebmath_perplexity": 210.3992910117195, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9770226317625857, "lm_q2_score": 0.8596637541053281, "lm_q1q2_score": 0.8399109434668921 }
https://socratic.org/questions/express-2-00-as-a-percentage-of-8-00
# Express $2.00 as a percentage of$8.00 ? ##### 2 Answers Write your answer here... Start with a one sentence answer Then teach the underlying concepts Don't copy without citing sources preview ? #### Answer Write a one sentence answer... #### Explanation Explain in detail... #### Explanation: I want someone to double check my answer Describe your changes (optional) 200 1 Nam D. Share Mar 9, 2018 #### Answer: 25% #### Explanation: Given: ($2)/($8) We have: (color(red)cancelcolor(black)$2)/(color(red)cancelcolor(black)$8)=1/4 Now, we convert $\frac{1}{4}$ to a percent. We got: 1/4*100%=25% :.($2)/($8)=25% Was this helpful? Let the contributor know! Write your answer here... Start with a one sentence answer Then teach the underlying concepts Don't copy without citing sources preview ? #### Answer Write a one sentence answer... #### Explanation Explain in detail... #### Explanation: I want someone to double check my answer Describe your changes (optional) 200 1 Mar 9, 2018 25% #### Explanation: First let's think about a normal percentage as a ratio. If I wanted to think about 4% as a ratio I would say well... That's 4 parts of 100% or $\frac{4}{100}$ and from there I could simplify the fraction into $\frac{1}{25}$ and now I have a mathematical representation of 4%. Anything that I multiply by $\frac{1}{25}$ will give me 4% of that thing. "How does this help me?" you say I'm very glad you asked Let's think about $8$ as our 100% and we want to find 2 parts of 8, so using what we just learned we say that "2 parts of 8 is the same as $\frac{2}{8}$." To turn $\frac{2}{8}$ into a percentage we just need the denominator to equal 100 since earlier we said that 8 is our 100% We could use an equation for this, so let's use an equation for this :D We know that $8 \cdot \left(\text{some number}\right) = 100$ so; $8 x = 100$ $\frac{1}{8} \cdot 8 x = 100 \cdot \frac{1}{8} = \frac{100}{8} = \frac{25}{2} = 12.5$ Now we know that if we multiply the denominator by 12.5 we will get 100 and if we multiply the numerator by 12.5 we will get a ratio with 100 as the denominator, so our percentage must be the numerator! 2/8*12.5/12.5 = 25/100 = 25% Was this helpful? Let the contributor know! ##### Just asked! See more • 9 minutes ago • 9 minutes ago • 11 minutes ago • 11 minutes ago • 55 seconds ago • 2 minutes ago • 2 minutes ago • 4 minutes ago • 7 minutes ago • 8 minutes ago • 9 minutes ago • 9 minutes ago • 11 minutes ago • 11 minutes ago
2018-03-24T17:58:57
{ "domain": "socratic.org", "url": "https://socratic.org/questions/express-2-00-as-a-percentage-of-8-00", "openwebmath_score": 0.9287996888160706, "openwebmath_perplexity": 3098.363820310095, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9770226300899745, "lm_q2_score": 0.8596637541053281, "lm_q1q2_score": 0.8399109420290087 }
https://math.stackexchange.com/questions/1876240/proving-or-disproving-existence-of-a-continuous-function
# Proving or Disproving Existence of a Continuous Function I'm studying for an exam in topology; this is a question from a previous exam several years ago -- it's not being graded, I just want to know how to handle it. I'm more concerned here with learning the thought process involved in answering the following question(s) than I am with just being given the actual answers. If someone can provide a little guidance or maybe a hint or two, that would be great! The question is this: Consider the following result, which you can assume to be true without a proof: (*) For every uncountable closed subset $F$ of $\mathbb{R}$ there exists a continuous function from $F$ onto the unit interval $I=[0,1]$. Which of the following variations of (*) is true? Justify your answers. (a) For every uncountable closed subset $F$ of $\mathbb{R}$ there exists a continuous function from $F$ onto $\mathbb{R}$. (b) For every uncountable closed subset $F$ of $\mathbb{R}$ there exists a continuous function from $F$ onto the unit square $I^2=[0,1]^2$. (c) For every uncountable closed subset $F$ of $\mathbb{R}$ there exists a continuous function from $F$ onto the Cantor ternary set $C$. The work so far... The definition of continuity that I'm working with is this: A function $f:X \rightarrow Y$ is continuous if for every set V open in Y, the set $f^{-1}(V)$ is open in $X$. This tells me that, in some sense, the topology on the domain must have more (or an equal number of) open sets than the topology on the range space. I'm also aware that several properties are preserved under continuous maps: compactness, convergence of sequences, connectedness, path connectedness, the Lindelof property, and separability. Statement (a) then should be false. $F$ is compact, as it is either a closed interval or a union of closed intervals in $\mathbb{R}$. The image of $F$ under any continuous function would also have to be compact. However, $\mathbb{R}$ is not compact. Thus such a continuous function does not exist. I'm inclined to think that (b) is true, mainly because I can't come up with a reason why it wouldn't be. $I^2$ is not path connected, but $F$ isn't necessarily either. $I^2$ is connected and compact, but I don't think that really gives me anything to rule out the existence of the desired function. Now, if I want to show that such a function does exist, the only convincing argument I can come up with is to define one, but I'm not really sure how to do that here. I think (c) is false, mostly based on intuition. I think it's going to come down to showing that the cardinality of the Cantor set is too big for a surjective function to exist, but I wouldn't put money on it. Any help at all would be fantastic, but bonus points for putting a lot of detail into your thought process! I really want to learn how to handle this type of problem on my own, not just have an answer to this particular problem. • (a) is false, but your reasoning is not correct, for example you could take $F$ to be the reals in which case the identity is a suitable map. You can just produce a counterexample by taking $F$ to be compact. Jul 30 '16 at 19:04 You are right about (a) (although you should be careful: a finite union of closed intervals is compact, but an infinite union need not be - consider $[0, 1]\cup [2, 3]\cup [4, 5]\cup . . .$). EDIT: Actually I misread it - your reasoning for (a) is wrong. How do you know $F$ is compact? Rather, the point is that there exists an uncountable closed set which is compact, and such a set is a counterexample to (a). Your guess is right for part (b), but your reason is wrong (note that both $I^2$ and $I$ are path connected). HINT: it would be enough to find a continuous map from $I$ onto $I^2$ - do you see why, and have you heard of the Peano curve? Your guess for (c) is right, but again, for the wrong reason: the Cantor set and $I$ have the same cardinality. Instead, consider (similarly to (a)): what can you say about the image of a connected set under a continuous map? • @Keith Your second sentence ("In order . . .") is not true: the set I describe above is closed but not compact, and not a finite union of closed intervals. But this doesn't effect your reasoning for (a): all you need is a single uncountable closed compact set, and $I$ works. Re: the Peano curve, you don't need to define it differently in topology - the point is just that it's a continuous surjective map from $I$ to $I^2$. Jul 30 '16 at 18:56 • For (a), I see what you're saying. For (b), I'm not sure I see why it's enough to find a continuous map from $I$ onto $I^2$. Is it true in general that all closed subsets of $\mathbb{R}$ are homeomorphic with one another (and is the analogous statement true for arbitrary $\mathbb{R}^n$)? Or is there some deeper reason I don't see? Jul 30 '16 at 23:12 • @Keith Suppose I find a continuous map from $I$ onto $I^2$. The question allows you to assume already that there is a continuous map from any uncountable closed $F$ onto $I$. Do you see how to combine these? (And it is very false that any two closed subsets of $\mathbb{R}$ are homeomorphic - consider e.g. the closed sets $\emptyset$, $\{0\}$, $\{0, 1\}$, $[0, 1]$, $[0, 1]\cup [2, 3]$, $\mathbb{R}$.) Jul 30 '16 at 23:17
2021-09-18T19:22:42
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1876240/proving-or-disproving-existence-of-a-continuous-function", "openwebmath_score": 0.8657563328742981, "openwebmath_perplexity": 78.85529610782326, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9770226307590189, "lm_q2_score": 0.8596637523076225, "lm_q1q2_score": 0.8399109408477629 }
http://math.stackexchange.com/questions/317235/covariance-and-variance-of-a-poisson-r-v
# Covariance and variance of a Poisson r.v. Given a Poisson process $N(t),t\geq 0$ with rate $\lambda$ and another r.v. $T$ independent of $N(t)$ with mean $\mu$ and variance $\sigma^2$, I would like to compute the following quantities: $$\mathbb{Cov}(T,N(T)) \ \ \mbox{ and } \ \ \mathbb{Var}(N(T))$$ My guess is respectively: $\lambda \mu + \lambda \sigma^2$ and $\sigma^2\lambda$. But I am not sure it is correct nor how to justify some steps. Anyone knows? Thank you very much! - For the variance, use the conditional variance formula: $$\text{var}(N(T)) = E[\text{var}(N(T)\mid T] + \text{var}(E[N(T)\mid T).$$ This will show why your guessed answer is not correct (it is missing one term from the displayed expression above). –  Dilip Sarwate Feb 28 '13 at 21:48 Since $$\mathbb{Cov}\left(T, N(T)\right) = \mathbb{E}\left(T N(T)\right) - \mathbb{E}(T) \mathbb{E}\left(N(T)\right) = \mathbb{E}\left(T \, \mathbb{E}\left(N(T)\mid T\right)\right) - \mathbb{E}(T) \, \mathbb{E}\left(\mathbb{E}\left(N(T)\mid T\right)\right)$$ But $\mathbb{E}\left(N(T) \mid T\right) = \lambda T$, thus $$\mathbb{Cov}\left(T, N(T)\right) = \mathbb{E}\left(\lambda T^2\right) - \lambda \mathrm{E}(T)^2 = \lambda \mathbb{Var}(T)$$ Similarly: $$\begin{eqnarray} \mathbb{Var}\left(N(T)\right) &=& \mathbb{E}\left( \mathbb{E}\left(N(T)^2|T\right) \right) - \mathbb{E}\left(\mathbb{E}\left( N(T) \mid T\right)\right)^2 \\ &=& \mathbb{E}\left( \lambda^2 T^2 + \lambda T\right) - \mathbb{E}\left(\lambda T\right)^2 \\ &=& \lambda^2 \mathbb{Var}(T) + \lambda \mathbb{E}(T) \end{eqnarray}$$ Thanks a lot! Yes I see it, this is exactly what I did but something seemed strange to me.... Since we compose $N(T)$, it could be that we know the random variable $T$ but not $N$, what I mean is that $N(T) = N(T(\omega))(\tilde{\omega})$ where $\omega \in \Omega$, $\tilde{\omega} \in \tilde{\Omega}$ are the sample spaces of each variable. So when averaging out one, we should obtain a random variable? shouldn't we? –  Dan Feb 28 '13 at 21:53 Yes, I think you are correct. The conditioning by $T$ indicates that we average over $\tilde\omega$ while keeping $\omega$ fixed, and then average over $\omega$. –  Sasha Feb 28 '13 at 22:03
2015-07-02T16:40:16
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/317235/covariance-and-variance-of-a-poisson-r-v", "openwebmath_score": 0.9581418633460999, "openwebmath_perplexity": 203.15259132298777, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9770226300899744, "lm_q2_score": 0.8596637487122111, "lm_q1q2_score": 0.8399109367598113 }
https://math.stackexchange.com/questions/830413/calculating-the-arc-length-of-a-circle-segment
# Calculating the arc length of a circle segment I would like to calculate the arc length of a circle segment, i.e. I know the start coordinates (x/y) of the circle segment, the end coordinates (x/y) and the x and y distances from the starting point to the center point of the circle segment. I know that I can calculate the circumference with 2 * radius * PI. Consequently, I would have to calculate the radius and the angle of the circle segment via Pythagorean theorem and sin and cos. My question: Is there a simple formula where I just have to put in start-coordinates, end-coordinates and the circle origin point coordinates? Thanks. enne • I have never seen the phrase "bow length" used before. What does it mean? – Gerry Myerson Jun 11 '14 at 12:34 • I mean the circle length, I replaced the term "bow" with "circle". – enne87 Jun 11 '14 at 12:40 • Your question is still not very clear. If you have translated this, please provide the original text also. – M. Vinay Jun 11 '14 at 12:41 • @GerryMyerson, I think OP wants to find the length of the arc between the two points given. – Vikram Jun 11 '14 at 12:42 • @GerryMyerson Arc length. Could be a word-for-word translation from the German Bogenlänge. – Daniel Fischer Jun 11 '14 at 12:42 Use $(x-h)^2+(y-k)^2=r^2$...(eq I), where $(h,k)$ is the center and $r$ is the radius. Your third point can be calculated as $x_3=x_1+$(horizontal displacement) and $y_3=y_1+$(vertical displacement), you have mentioned that you know x and y distance. the x and y distances from the starting point to the center point of the circle segment. Now, in eq (I), put $(x_1,y_1)$,$(x_2,y_2)$,$(x_3,y_3)$ to get three equations, solve these three equations simultaneously to get $(h,k)$. Next, use $(h,k)$ and any of the three points we know to get $r$ with the help of eq (I). Now shift the circle so that it's origin coincides with $(0,0)$, this will help you find the angle $\theta$ easily. Now, find $\theta$ and the length of the arc=$r*\theta$ EDIT:Consider a circle with 3 points on it. $x_1\equiv(2+2\sqrt{3},0) \hspace{12 pt}x_2\equiv(6,2)\hspace{12 pt}x_3\equiv(2+2\sqrt{3},4)$ If you use eq (I) you will get following 3 eqns: $29.85+h^2-10.91h+k^2=r^2$...(eqn 1) $45.85+h^2-10.91h+k^2-8k=r^2$...(eqn 2) $40+h^2-12h+k^2-4k=r^2$...(eqn 3) subtract eqn 3 from eqn 1 to get one eqn subtract eqn 3 from eqn 2 to get second eqn solve these last two eqn and you will get $(h,k)\equiv(2,2)$, the center of the circle, substitute $(h,k)$ in eqn 3 (or 1 or 2), you will get $r=4$ No need to do transform the center of the circle to the origin, we know the radius, so find what angle points $x_1$ and$x_3$ makes with the horizontal line using trigonometry ($\sin \theta=2/4=1/2 \therefore \theta=\pi/6$) Length of the arc=$r*\theta=4*\large\frac{\pi}{6}=\large \frac{2\pi}{3}$ • I don't know why you are give 3 points on the circle, only two are enough to find the center,(2 unknowns, 2 equations) – Vikram Jun 11 '14 at 13:36 • replace the word "origin" in second last line with "center" – Vikram Jun 11 '14 at 13:47 • Sorry, probably I'm too stupid, but can you please give me an example how this works? – enne87 Jun 12 '14 at 10:03 • Hey, cool thing, thanks :D – enne87 Jun 12 '14 at 15:32 • @enne87, you’re welcome – Vikram Jun 12 '14 at 16:01 You can derive a simple formula using the law of cosines. In fact, while all the planar geometry is helpful for visualization, there's really no need for most of it. You have 3 points: your arc start and stop points, which I'll call $A$ and $B$, and your circle center, $C$. The angle for the arc you're wanting to measure, I'll call it $\theta$, is the angle of the triangle $ABC$ at point $C$. Because $C$ is the center of the circle that $A$ and $B$ are on, the triangle sides $AC$ and $BC$ are equal to your circle's radius, $r$. We'll call the length of $AB$, the remaining side, $d$ (see picture). (By the way, if $A=(x_1,y_1)$ and $B=(x_2,y_2)$, then $d=\sqrt {(x_1-x_2)^2 + (y_1-y_2)^2}$.) According to the law of cosines, $\cos (\theta )={{r^2+r^2-d^2}\over {2rr}}=1- {{d^2}\over {2r^2}}$. So all you need is the distance between the end points of your arc and the radius of the circle to compute the angle, $\theta = \arccos (1- {{d^2}\over {2r^2}})$ Lastly, the length is calculated - $Length = r\theta$ Where $\theta$ is expressed in radians. • Hi Zimul8r, thanks for your help. I just tried your approach with a circle segment where θ = 90° and r = 4. This means this is an exact quarter circle segment. So d = sqrt(4²+4²) = 5.6568; Consequently, cos(θ) = (1-5.6568²) / 32 = -0.9687. arccos(-0.9687) = 14.373rad ?? What am I doing wrong here? – enne87 Jun 12 '14 at 9:40 • Ah sorry, now it works.Thanks for the great approach. – enne87 Jun 12 '14 at 15:32
2019-06-16T06:34:29
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/830413/calculating-the-arc-length-of-a-circle-segment", "openwebmath_score": 0.7579015493392944, "openwebmath_perplexity": 390.4446218473956, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9770226341042414, "lm_q2_score": 0.8596637451167997, "lm_q1q2_score": 0.8399109366979328 }
https://mathoverflow.net/questions/217612/primorial-puzzlement
# primorial puzzlement Let $x_n$ be the smallest positive integer which is not a quadratic residue modulo any of the first $n$ odd primes. The question is: is there any bound on how quickly $x_n$ grows as a function of $n?$ Now, since the probability of being a residue modulo any given prime is very close to $1/2,$ by an independence heuristic, $x_n$ should grow roughly like $2^n.$ The problem is that independence clearly does not hold here: if you ask the "opposite" question: how big is $y_n,$ the smallest integer which is a square modulo all of the first $n$ odd primes, the answer is $y_n=1.$ When in doubt, experiment, and computing $\log x_n$ for the $n=2, \dotsc, 20$ gives the graph: In case you wonder, the slope is around $0.8$ (so a bit bigger than $\log 2,$ but $20$ is pretty small, so $x_n \sim 2^n$ seems like a reasonable guess. Does anyone have any nontrivial bounds, even mod "standard conjectures"? EDIT Noam Elkies points out that a few more terms have been computed (I have gotten up to 24 in the meantime, but 27 is even better :)) The slope of the log is down to $0.76,$ so the conjecture that $\log(x_n) \sim n \log 2$ seems quite reasonable. Further Edit In fact, if you ponder Noam's comment, you will note that the heuristic will give something like $\log n 2^n$ for the conjectured growth rate... More Values Using some of joro's ideas, and a little more, we can push the list of values to 40. {2, 2, 17, 17, 83, 167, 227, 398, 398, 5297, 64382, 69647, 116387, 214037, 214037, 430022, 5472953, 5472953, 8062073, 8062073, 8062073, 41941577, 86374763, 163520117, 163520117, 231912722, 231912722, 231912722, 545559467, 1728061733, 2832363203, 5638787822, 5638787822, 6154772762, 6154772762, 7012246247, 7012246247, 7012246247, 6571091781638, 7218195919667} • A few more terms, up to $x_{29} = 1728061733$: oeis.org/A206095 Sep 6 '15 at 22:24 • One might expect the slope to start a bit above $\log 2$, because the probability of $(x/p) = -1$ for small $x$ is $(p-1) \, / \, (2p)$, which is a bit less than $1/2$, and noticeably less for $p$ small. Sep 6 '15 at 22:27 • @NoamD.Elkies Thanks! I incorporated this into the latest edit. Sadly, oeis seems to make no further statement... Sep 6 '15 at 22:32 • @NoamD.Elkies True, but that would probably affect the intercept more than the slope. If you don't control for the intercept, it is, indeed, negative, but the slope than becomes a bit higher. Again, the numbers (be they 20 or 27) are small enough that I would not read too much into them... Sep 6 '15 at 22:43 • I think the standard conjecture is that the $n$th prime satisfies $p_n\sim n\log n\sim (\log x_n)(\log\log x_n)/\log 2$, simply transferring from pseudosquare guesses. Which is the same as what you write. Sep 7 '15 at 15:12 I'll try to unify all the previous answers (of GH from MO, Will Sawin and Hurkyl) and also indicate unconditional results on this problem. It turns out that one can get a surprisingly decent unconditional upper bound here, which is something I hadn't appreciated fully previously. As noted in Hurkyl's answer above, a unifying problem is the following: Given a non-trivial subgroup $H$ of $({\Bbb Z}/q{\Bbb Z})^*$ with index $h$, bound (i) the least prime $p$ lying in a given coset of $H$, or (ii) the least integer $n$ lying in a given coset of $H$. Obviously the second problem is easier than the first, and as noted in Hurkyl's answer Theorem 1.4 of Lamzouri, Li and Soundararajan gives a good bound on GRH for the first problem: the least prime is essentially bounded by $((h-1) \log q)^2$ (see the precise form) and this result unifies both the least quadratic non-residue problem and also the least prime in an arithmetic progression problem. Unconditionally, for problem (i), by Linnik's theorem on the least prime in an arithmetic progression we always have a bound of $\ll q^{L}$, for an absolute constant $L$, and the current record here is that $L=5$ is permissible by Xylouris. When $h$ is small, then a somewhat better bound can be given: for $h=2$ (the case of the least prime that splits, or the least prime that is inert in a quadratic field) this is classical and well known, the case of split primes being harder and the bound here is $q^{\frac 14+\epsilon}$ (using Burgess for character sums and Siegel's ineffective bound for $L(1,\chi)$). For larger, but still bounded $h$, the matter was treated by Elliott in the context of the least prime $h$-th power residue, and he obtained the bound $q^{(h-1)/4+\epsilon}$. Of course for large $h$ (i.e. $h\ge 22$) this becomes inferior to Linnik's theorem. A recent paper of Pollack addresses a somewhat more general version of this question, and obtains the bound $\ll q^{(h-1)/4+\epsilon}$. Now for unconditional results towards the easier problem (ii). Assume that $h \le q^{\epsilon}$ and express the condition of belonging to a coset of $H$ in terms of the characters that are trivial on $H$ (see the paper of Lamzouri, Li and Soundararajan for details). Then use the Burgess bounds on the character sums that arise. This argument gives that the least integer $n$ in any given coset is $\ll q^{\frac 14+\epsilon}$. This is a (modest) improvement over the trivial bound of $q$. For a general modulus $q$ the Burgess bound gives the best known result on this problem. However, for moduli $q$ that are very smooth (and this will be important for the present problem) one can obtain a better result by a $q$-van der Corput argument due to Graham and Ringrose (following Heath-Brown). From the Graham-Ringrose argument (see either the original paper, or Corollary 12.14 of Iwaniec and Kowalski, or estimate (4.1) and Lemma 4.2 from Granville and Soundararajan), one can show that if all the prime factors of $q$ are bounded by $q^{o(1)}$ then the least integer in any prescribed coset is $\ll q^{\epsilon}$ for any fixed $\epsilon >0$. Naturally there is a connection between how small $\epsilon$ can be and the smoothness of $q$, and one can find uniform bounds in the results referenced above. Returning to the problem at hand, if $p_1, \ldots, p_n$ are the first $n$ odd primes, and we set $q=p_1\cdots p_n = n^{(1+o(1))n}$ and $H$ to be the subgroup of squares mod $q$ (which has index $2^n$) then on GRH we can find a prime $p \ll 4^n (n\log n)^2$ lying in any given coset of $H$. That is given any choice of signs $\epsilon_j = \pm 1$, there is a prime $p\ll 4^n (n\log n)^2$ with $(\frac{p}{p_j}) = \epsilon_j$ (in particular we can take all $\epsilon_j=-1$ as asked for in the problem). This was noted in Hurkyl's answer. Note now that unconditionally by the Burgess estimate we may find a number $N \ll n^{n(1/4+\epsilon)}$ with $(\frac{N}{p_j}) =\epsilon_j$. But note that we are dealing now with a modulus $q$ of size $n^n$ all of whose prime factors are of size $\ll n\log n$; in other words, $q$ is very smooth indeed and Graham-Ringrose applies and gives an unconditional upper bound of $n^{\epsilon n}$. In fact, by keeping track of uniformity, one gets an unconditional upper bound of $n^{c n/\log \log n}$ for some positive constant $c$. Now consider lower bounds in the problem. Here we must make use of the fact that we are looking for the smallest number $N$ with $(\frac{N}{p_j})=-1$ for all $j\le n$ -- for a random choice of signs $\epsilon_j$ there may of course be a very small number $N$ (just pick the number $N$ and see what the signs are!). Note that $N$ or $4N$ would be a discriminant, and we are asking for a quadratic character $\pmod {N}$ or $\pmod {4N}$ taking value $-1$ on the first $n$ small primes. This fits our framework by taking $q=4N$, and $H$ to be the subgroup of index $2$ on which this character (say $\chi$) is trivial. On GRH we know that there is an odd prime $\ell \le (1+o(1)) (\log N)^2$ with $\chi(\ell) =1$, and so we must have $(\log N)^2 \ge (1+o(1)) n\log n$ or $$N\ge \exp((1+o(1)) \sqrt{n\log n}).$$ This is the conditional bound mentioned in Will Sawin's answer, and what I indicated in my comment there. Unconditionally, the Burgess bound and Siegel's theorem argument (for problem (i)) gives that there is a prime $\ell \le N^{\frac 14+\epsilon}$ with $\chi(\ell)=1$, and so $N\ge n^{4+o(1)}$. To summarize, on GRH we know that the answer lies between $$\exp((1+o(1)) \sqrt{n\log n} ) \text{ and } \ll 4^n (n\log n)^2$$ and unconditionally we know that it is between $$n^{4+o(1)} \text{ and } \ll n^{cn/\log \log n}.$$ The probabilistic conjecture that the answer should be somewhere near $2^n$ seems reasonable. I think the standard approach to this problem is to estimate the sum $$S(x) := \sum_{m=1}^x\prod_{k=1}^n\left(1-\left(\frac{m}{p_k}\right)\right),$$ where $p_k$ is the $k$-th odd prime. Indeed, we are looking for the smallest $x$ such that $S(x)>0$. Factoring out, we get $$S(x) = \sum_{d\mid p_1\dots p_n}(-1)^{\omega(d)}\sum_{m=1}^x \left(\frac{m}{d}\right).$$ The inner sum equals $x$ for $d=1$, while it is much smaller for $d>1$ due to the oscillating nature of the Jacobi symbol. We can quantify this under GRH using an explicit bound of Chandee (Explicit upper bounds for $L$-functions on the critical line, Proceedings of the AMS), and we infer $$S(x)=x+O_\epsilon\bigl(2^n e^{(3/8+\epsilon)n}\sqrt{x}\bigr).$$ In particular, under GRH, we see that $x_n$ grows at most exponentially, namely $$x_n \ll_\epsilon 4^n e^{(3/4+\epsilon)n}.$$ Added. We can improve the above argument by restricting $m$ to prime values exceeding $p_n$ and adding the weights $\Lambda(m)$. We get, by Theorem 5.15 in Iwaniec-Kowalski: Analytic number theory, $x_n\ll 4^n n^5$ (under GRH). • Sorry, what does the second last formula mean? There must be a typo of some sort... Sep 7 '15 at 0:08 • @IgorRivin: Sorry, "$S(x)=$" was missing, I added this. Sep 7 '15 at 0:11 • Can we also use GRH to give a lower bound by upper bounding the sum $\sum_{k=1}^{p_{n+1}-1} \mu(k) \left( \frac{ x } {k} \right)$ for $x$ small, using the fact, from quadratic reciprocity, that $\left( \frac{ x } {k} \right)$ is a Dirichlet character? Sep 7 '15 at 2:48 • @WillSawin: Good idea. I think this way we can get $\log x_n\gg(\log n)(\log\log n)$ or, using more optimistic conjectural upper bounds for $L$-functions perhaps $\log x_n\gg(\log n)^{2-o(1)}$. Sep 7 '15 at 7:39 • The OP's question (with his intent that none of the first $n$ odd primes divide $x_n$) is equivalent to asking for the smallest $x$ such that the first $n$ odd primes are all inert in $\mathbb{Q}(\sqrt{x})$. If you have an upper bound on the smallest odd split prime in terms of the discriminant, then you get a lower bound on $x_n$. – user13113 Sep 7 '15 at 22:06 I think one can get a lower bound more like $x_n \geq e^{ c \sqrt{n \log n}}$, or equivalent $p_{n+1} = O ( (\log x_n)^2)$, conditional on GRH. One simply reverses the sign in the argument giving the upper bound on the least quadratic nonresidue to obtain an upper bound on the first prime at which a quadratic Dirichlet character takes the value 1. This argument is due to Ankeny, in The Least Quadratic Non-Residue. Apply the same argument from Theorem 2 to the Dirichlet character $\chi(d) = \left( \frac{x_n}{d} \right)$. The condition that $\chi(p) = 1$ for small $p$ becomes $\chi(p) = -1$ for small $p$. The same argument goes through with the sign reversed and gives the same bound. • See also Theorem 1.4 of arxiv.org/pdf/1309.3595v1.pdf for a recent explicit version. Also unconditionally, Linnik and Vinogradov knew that the least prime that splits completely in a quadratic field is $\le |D|^{1/4+o(1)}$ (see Pollack ams.org/journals/proc/2014-142-06/S0002-9939-2014-12199-X/… ) ; this follows from the Burgess bounds and Siegel's theorem. Sep 7 '15 at 14:20 • @Lucia So you're saying that unconditionally, in Igor's notation, we have $x_n > n^{4 - o(1)}$? Sep 7 '15 at 14:23 • Yes, that's right. Sep 7 '15 at 14:23 • The result of Linnik-Vinogradov is ineffective. This is a substantial difference between the case of $\chi(p)=-1$ versus $\chi(p)=1$ for all the small primes. But under GRH it should not matter (maybe only a log factor somewhere). Sep 7 '15 at 15:06 • Your observation is very nice, by the way. Sep 7 '15 at 19:41 Very partial answer for computational approach. I get $x_{30}=2832363203,x_{31}=x_{32}=5638787822,x_{33}=6154772762$ in relatively short time and other results agree with OEIS. The performance likely can be greatly improved by working in something faster than sage. The main idea is to work in many arithmetic progression with large step. Set $M$ the product of the $k$ odd primes. Build increasing sequence $0 \le b_i \le M-1$ s.t. $b_i$ is quadratic non-residue modulo the first $k$ odd primes. Experimentally $|\{b_i\}|$ is significantly smaller than $M$. Work in the arithmetic progressions $Mj+b_i$ in increasing order. Sample sage implementation def igorprimes1(n): """ build M, b_i """ pri=[] res=[] for k in [ 2 .. n+1]: p=nth_prime(k) pri += [p] for k in xrange(prod(pri)): for p in pri: if kronecker(k,p) != -1: break res += [k] return res,prod(pri) def igorprimes2(res,M,n): """ computes x_n = A206095(n) """ pri=[nth_prime(k) for k in [ 2 .. n+1] ] r=0 while True: M1=M*r for a in res: M2=M1 + a for p in pri: if kronecker(M2%p,p) != -1: break return M2 r += 1 • Actually, my Sage complains when I run igorprimes1(20) that there is some number bigger than a C int. (my original computations were done in a completely brute force manner in Mathematica) Sep 7 '15 at 13:51 • @IgorRivin This is normal, $igorprimes1$ doesn't expect such large values (it does loop to 21#/2). Try: tt=igorprimes1(7);igorprimes2(tt[0],tt[1],33) – joro Sep 7 '15 at 14:14 • Ah, I was guessing it was something like that! Sep 7 '15 at 14:23 • You sieve first, then test, but you don't sieve all the way. Sep 7 '15 at 14:33 • @IgorRivin Something like this -- there are two stages as explained. First find M,b_i, then look for solutions in the arithmetic progressions M j+ b_i. As the code is currently written, it may lose small solutions if the first stage is sufficiently large, but this is easy to fix. – joro Sep 7 '15 at 14:55 Lucia's comment above mentions theorem 1.4 from CONDITIONAL BOUNDS FOR THE LEAST QUADRATIC NON-RESIDUE AND RELATED PROBLEMS : assuming the GRH, Let $q \geq 20000$, $H$ be a proper subgroup of $G = (\mathbb{Z} / q \mathbb{Z})^\times$, $h = [G : H]$, and $p$ be the smallest prime in a given coset of $H$. Then either $p \leq 10^9$ or $$p \leq \left( (h-1) \log q + 3(h+1) + \frac{5}{2} (\log \log q)^2 \right)^2$$ If we let $q = \prod_{k=1}^n p_k$ and $H$ be the subgroup of quadratic residues, then the OP asks for the smallest positive integer in a particular coset of $H$. This is bounded above by the smallest prime in the coset, which can be bounded by the theorem. In particular, we have $h = 2^n$ and $\log q = (1 + o(1)) n \log n$, and consequently we infer $$x_n = O\left( 4^n n^2 (\log n)^2 \right)$$ This is a slight improvement over the answer above. • Cool! By the way, if you look at the numbers (well, let your computer look at them...) about 1/2 are primes. I am not sure if this trend continues... Sep 11 '15 at 12:14 • Good observation! Sep 11 '15 at 12:49 • By the way, none of the answers mention any nontrivial unconditional upper bound. Is there really nothing one can say? Sep 11 '15 at 12:55 On the possible precision of an asymptotic estimate... At "random" we expect $x_{n+1} = x_n$ with probability 1/2. For any particular size $B$, we expect there to be some $n \sim B$ with $x_n = x_{n + \lfloor \log_2 B \rfloor}$. Supposing that we estimate $x_n \sim 2^n \log n$, if $n$ is as above we have $$2^n \log n \sim 2^{n + \log_2 n} \log(n + \log_2 n)$$ Consequently, if this is the right estimate, it is unlikely that it can be stated more precisely than $$x_n = 2^{n + O(\log n)}$$ If we treat a quadratic residue as a Bernoulli random trial with probability 1/2, then we can model $$x_n \approx G_n \log n$$ Where $G_n$ is a geometric random variable with parameter $1/2^n$, and $\log n$ estimates the effect of having to be relatively prime to the first $n$ odd primes. Recall that the cumulative distribution for a geometric random variable is given by $$P(G_n > m) = (1 - 1/2^n)^m \approx \exp(-m/2^n)$$ We have $$P(G_n < a \log n \, 2^n) \approx 1 - n^{-a}$$ If we blithely assume the $G_n$ are independent random variables, then we have $$P(\forall n: G_n < a \log n\, 2^n) = \prod_n (1 - n^{-a})$$ which diverges to zero if $a=1$. Therefore: • $\forall n: x_n < 2^n (\log n)^2$ happens with probability zero • $x_n = O(2^n (\log n)^2)$ with probability 1 Similarly, $$P(G_n > c 2^n / n^a) \approx \exp(-c/n^a)$$ $$P(\forall n: G_n > 2^n / n^a) \approx \exp\left (-\sum_{n=1}^{\infty} 1/n^a \right)$$ and therefore • $x_n = \Omega(2^n (\log n) / n)$ happens with probability zero • $x_n = \Omega(2^n (\log n) / n^{1+\epsilon})$ with positive probability A more accurate model which makes the $G_n$ truly independent would be $x_n \approx x_{n-1} + B_n G_n \log n$ where the $B_n$ are independent Bernoulli random variables with parameter $1/2$. I'm pretty sure this doesn't affect the asymptotics above, but I have not verified it. This implies that the estimate $x_n = 2^{n + O(\log n)}$ given in the initial section should be expected to happen "at random" with probability 1, and we can't expect to do better in the sense that $x_n = 2^{n + o(\log n)}$ should happen with probability 0. • Certainly, the experiments indicate that there is a lot of jumping around, so I am sure you are right. Do you think that even this level of precision is possible? Sep 10 '15 at 7:10 • See the last two data points, just added :) Sep 10 '15 at 7:12 • I'm not sure. My main tool for conjecturing these things is to model everything as random variables, but I haven't fully worked out the right model, and I feel this example is outside of the domain where I have confidence the approach I want to use will give reasonable results anyways. – user13113 Sep 10 '15 at 7:47 • ... but my impression is that this approach leads to $E(x_n) \approx 2^n \log n$ and $Var(x_n) \approx 4^n (\log n)^2$, which would suggest that you can't do better than $O(2^n \log n)$ (and I haven't worked out the probability that such an expression holds for all of the random variables!). But my vague impression is that in these sorts of problems, the actual distributions tend not to vary to such great extremes as might be predicted by a simple random model. – user13113 Sep 10 '15 at 8:08 • The model I used, incidentally, is that $x_n = x_{n-1} + G_n B_n \log n$, where the $G_n$ and $B_n$ are independent, $B_n$ is a bernoulli variable with parameter 1/2 (to reflect the possibility that $x_n = x_{n-1}$), and $G_n$ is geometric with parameter $1/2^n$ (to reflect the need to do more random trials until you find all non-residues). (and the $\log n$ factor represents the need to be relatively prime to the first $n$ odd primes) – user13113 Sep 10 '15 at 8:13
2021-12-03T04:49:08
{ "domain": "mathoverflow.net", "url": "https://mathoverflow.net/questions/217612/primorial-puzzlement", "openwebmath_score": 0.9119747281074524, "openwebmath_perplexity": 247.02325675948828, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.977022625406662, "lm_q2_score": 0.8596637505099168, "lm_q1q2_score": 0.8399109344901365 }
https://math.stackexchange.com/questions/1840037/number-of-positive-unequal-integer-solutions-of-xyzw-20
# Number of positive unequal integer solutions of $x+y+z+w=20$ What is the number of positive different integer solutions of $x+y+z+w=20$, where $x,y,z,w$ are all different and positive? It would be nice if coding is not used. I am given the answer $552$. HINT: Each solution of the desired type is a permutation of a solution in which $x<y<z<w$, and every permutation of such an increasing solution is of the desired type. Each increasing solution has $4!=24$ permutations, so you need only count the increasing solutions and multiply by $24$. Added: This can be done fairly easily by brute force. For other methods see this question. To see what Marc van Leeuwen is doing in his answer, note that \begin{align*} \frac1{1-x}&=1+x+x^2+x^3+\ldots=\sum_{n\ge 0}x^n\\ \frac1{1-x^2}&=1+x^2+x^4+x^6+\ldots=\sum_{n\ge 0}x^{2n}\\ \frac1{1-x^3}&=1+x^3+x^6+x^9+\ldots=\sum_{n\ge 0}x^{3n}\\ \frac1{1-x^4}&=1+x^4+x^8+x^{12}+\ldots=\sum_{n\ge 0}x^{4n} \end{align*} If you take the product of these, each term in that product (before you collect like terms) will be of the form $$x^{k_1}x^{2k_2}x^{3k_3}x^{4k_4}=x^{k_1+2k_2+3k_3+4k_4}\tag{1}$$ for some non-negative integers $k_1,k_2,k_3$, and $k_4$. When you combine like powers of $x$, the coefficient of $x^{10}$ will be the number of terms like $(1)$ in which $k_1+2k_2+3k_3+4k_4=10$. Finally, there is a bijection between such $4$-tuples $\langle k_1,k_2,k_3,k_4\rangle$ and partitions of $10$ into parts of sizes $1,2,3$, or $4$: $k_i$ is the number of parts of size $i$. And as Marc had already briefly explained, the number of such partitions is equal to the number that we want. You may find it helpful to look at this Wikipedia article; when Marc talks about Young diagrams, he’s talking about what the article calls Ferrers diagrams. • Is it by taking $x1$=$x$-1, $y1$=$y$-2, and so on so u get $x1+y1+z1+w1$=10 so the no of solutions is 23?? – MathMan Jun 26 '16 at 9:40 • @Harish: Yes, that’s essentially the method used by Marc van Leeuwen in his answer to the question to which I linked in the addition to my answer. – Brian M. Scott Jun 26 '16 at 10:02 • Yes i understood most of that but why is it 1/1−X×1/1−X2×1/1−X3×1/1−X4?? I did not get that part and i couldn't ask him because of my lack of reputations – MathMan Jun 26 '16 at 10:06 • @Harish: Have you done any work yet with generating functions? – Brian M. Scott Jun 26 '16 at 10:09 • @Harish: That makes it pretty difficult to explain what he was doing there. Let me see if I can add something to my answer to give you at least the general idea. – Brian M. Scott Jun 26 '16 at 10:12 By inclusion-exclusion over the distinctness conditions: There are $\binom{20-1}3=\binom{19}3$ solutions disregarding the conditions. There are $\binom42$ ways to choose one pair that fails to be distinct, with common value $k$, and $19-2k$ options for the remaining two values, for a total of \begin{align} \sum_{k=1}^9(19-2k)&=9\cdot19-2\cdot\frac{9(9+1)}2\\ &=81\;. \end{align} There are $3$ ways to choose two non-overlapping pairs that fail to be distinct, and $\binom{10-1}1=9$ options for their values, and $12$ ways to choose two overlapping pairs that fail to be distinct, so that three values are equal, and then $6$ different options for the values. There are $\binom{\binom42}3=\binom63$ ways to choose three pairs, of which $4$ constrain only $3$ values to be equal, leading to $6$ options as above, and the remaining $\binom63-4$ constrain all $4$ values to be equal, leaving only $1$ option. For $k=4,5,6$, there are $\binom{\binom42}k=\binom6k$ ways to choose $k$ pairs, all of which constrain all $4$ values to be equal and thus leave only $1$ option. Thus by inclusion-exclusion the total count is $$\binom{19}3-\binom42\cdot81+3\cdot9+12\cdot6-4\cdot6-\left(\binom63-4\right)+\binom64-\binom65+\binom66=552\;.$$ Just for comparison with Brian Scott's solution, here is the longhand count solution. As is observed in several places above, it is sufficient to find the number of solutions with $x<y<z<w$ and multiply by 24, because each such solution can be permuted to give 24 solutions to the original question. Next note that $1+2+3+4=10$ is the smallest total for 4 unequal positive integers, so we are not going to get many solutions. Now $4+5+6+7>20$, so $x=1,2$ or 3. Since $3+4+5+6=18$ the only possible solutions for $x=3$ are $(3,4,6,7),(3,4,5,8)$. Similarly for $x=2$ we must have $y=3,4$ or 5. $y=5$ gives only $(2,5,6,7)$. $y=4$ gives only $(2,4,6,8),(2,4,5,9)$. $y=3$ gives only $(2,3,4,11),(2,3,5,10),(2,3,6,9),(2,3,7,8)$. Finally in a similar way $x=1$ implies $y=2,3,4,5$ and gives solutions $(1,2,3,4),(1,2,4,13),(1,2,5,12),(1,2,6,11),(1,2,7,10),(1,2,8,9)$ and $(1,3,4,12),(1,3,5,11),(1,3,6,10),(1,3,7,9)$ and $(1,4,5,10),(1,4,6,9),(1,4,7,8)$, and $(1,5,6,8)$. Total 23, hence 552 to question. --------- shorter version ------ I have spelt this out in full detail, but note that since only the count is required setting out all those cases with $z+w=k$ is not really needed. It is enough to say something like: $x=3$ implies $y=4$ and 2 solutions $x=2$ implies: $y=3$, 4 solutions; or $y=4$, 2 solutions; or $y=5$, 1 solution $x=1$ implies: $y=2$, 6 solutions; or $y=3$, 4 solutions; or $y=4$, 3 solutions; or $y=5$, 1 solution. Total 23 solutions. Times 4! gives 552 to the original question. ----------- comment ---------- Teachers often give simple questions for you to practice methods like generating functions. But simple questions can often be answered faster by more elementary methods. Often fastest is best! Here is the best Solution I found when I was preparing for IIT-JEE 2000-2003. suppose equation is $x + y +z + t = N$ find $k= [(N-2n-4)/2]$, where n is the least integer present is the solution. for example to find number of solutions in which least number present is $1$, put $n=1$. Now draw the following diagram Stop when $1$ comes. Now If $N$ is even add lower row terms along with middle row terms and multiply the sum with $4!$. This is the number of unequal integral solution of above equation having n as the least integer. If $N$ is odd add upper row terms along with middle row terms and multiply the sum with $4!$. Repeat the process for other possible values of $N$. In above case $n$ can have values $0, 1, 2$, & $3$, if we are interested in finding non-negative unequal integral solutions, because $4 + 5 + 6 + 7 > 20$ for $n=0$, there are $24\times 4!$ solution for $n=1$, there are $14\times 4!$ solutions for $n=2$, there are $7\times 4!$ solutions and for $n=3$, there are $2\times 4!$ solutions. Total number of non-negative solutions can be obtained by adding all$= 1128$ If you are interested in only positive unequal integral solutions drop the case of n=0, and you get $552$ If you wish to obtain solution for $x, y, z, t > 1$, drop the case $n=0$ and $n=1$ both, and you get $216$. and so on.......
2019-12-12T03:41:56
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1840037/number-of-positive-unequal-integer-solutions-of-xyzw-20", "openwebmath_score": 0.818031370639801, "openwebmath_perplexity": 282.2537124383555, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9770226327661525, "lm_q2_score": 0.8596637433190939, "lm_q1q2_score": 0.839910933791227 }
http://math.stackexchange.com/questions/50671/why-isnt-there-a-good-product-formula-for-antiderivatives
# Why isn't there a good product formula for antiderivatives? Computing antiderivatives is more challenging than computing derivatives, in part due to the lack of a product formula''; namely, while $(fg)'$ can be expressed in terms of $f,f',g,g'$, there seems to be no way to express $\int fg$ in terms of $f, \int f, g \int g$ and related quantities. Is there any intuitive reason or heuristic explanation for why no such formula exists? I'm looking for a non-rigorous explanation which can be understood by first-year calculus students. - See also mathoverflow.net/questions/66377/… . –  Qiaochu Yuan Jul 10 '11 at 18:52 Maybe use the notion of "elementary function". There are elementary functions $A,B$ such that both $\int A$ and $\int B$ are elementary, but $\int(AB)$ is not elementary. So there can be no simple "product rule" for integration, since any simple combinations of elementary functions is again elementary. –  GEdgar Jul 10 '11 at 20:26 Because there isn't a good product formula for derivatives? –  André Nicolas Jul 10 '11 at 20:30 @GEdgar - thats an excellent suggestion. Because I'm looking for something I can explain to a first-year calculus student, should I go in this direction, I would need an elementary function and a non-rigorous explanation, understandable by such a student, for why its antiderivative is not elementary. Does something like that exist at this level? –  robinson Jul 10 '11 at 20:38 @user6312 - I suppose I neglected to say what, exactly, I mean by "good." I would be happy with any expression for $\int fg$ in terms of $\int f, f, f', f'', \ldots$ and $\int g, g, g', g'', \ldots$, since such an expression would turn the computation of antiderivatives of products into simple mechanics. –  robinson Jul 10 '11 at 20:40 Expanding on the idea of @Bill Dubuque, let us hypothesize that we have a differentiable function $p(x_1,x_2,x_3,x_4)$ such that $\int fg=p(f,g,\int f,\int g)$ for all differentiable functions $f$ and $g$. (Assuming $f$ and $g$ are merely continuous is not good enough, since then the right-hand side may not be differentiable, whereas the left-hand side must be.) More precisely, we assume that whenever $F$ and $G$ are twice differentiable, we have $$\frac d{dx}p(F'(x),G'(x),F(x),G(x)) = F'(x)G'(x).$$ Let us take $F(x)=ux^2+ax+c$ and $G(x)=vx^2+bx+d$. Using the multi-variable chain rule, we get \begin{align*} ab &= F'(0)G'(0) = \frac d{dx}p(F'(x),G'(x),F(x),G(x))\bigg|_{x=0}\\ &= 2up_1(a,b,c,d) + 2vp_2(a,b,c,d) + ap_3(a,b,c,d) + bp_4(a,b,c,d). \end{align*} (Here, $p_j=\partial p/\partial x_j$.) Since the left-hand side does not depend on $u$ and $v$, we must have $p_1=p_2=0$, for all $a,b,c,d$. But this implies that the function $p$ depends only on $x_3$ and $x_4$. So the above reduces to $$ab = ap_3(c,d) + bp_4(c,d).$$ Taking $a=1$ and $b=0$ gives $p_3=0$, for all $c,d$. Taking $a=0$ and $b=1$ gives $p_4=0$, for all $c,d$. Finally, then, we have that the function $p$ is a constant function. Since a constant function cannot satisfy our hypothesis, this shows that there can be no such function. - HINT $\$ If there were a product rule $\rm\:\int f\:g\ =\ p(f,g,\int f,\int g)\:$ for some polynomial $\rm\:p\:$ then for $\rm\:f = x,\ g = 1/x^2\:$ this would imply that $\rm\: log(x)\:$ is a rational function. - Thanks, this is exactly the sort of thing I'm looking for. Now suppose the student to whom I'm explaining this were to object that perhaps we should look for a non-polynomial $p$? I do see that this begins to look rather unlikely, but is there a simple argument to shut this possibility down? –  robinson Jul 10 '11 at 21:32 I'd ask what they mean by "non-polynomial", because if they mean some rational function, then I believe the same argument works. If they mean any arbitrary continuous function or something, then it will be a bit trickier I'd guess, but I'm not sure I'd consider that a "rule" anymore. –  Matt Jul 10 '11 at 22:02 +1 This is a very good answer. Although, I wonder, is there a intuitive explanation for why we shouldn't expect $\log(x)$ to be a rational function? (Besides a formal proof that it is not, that is.) –  Zev Chonoles Jul 10 '11 at 23:23 Here's another one: If there were a product rule for antiderivatives then you could integrate $$e^{-x^2/2}=\bigl({1\over x}\bigr)\cdot\bigl(x e^{-x^2/2}\bigr)$$ in elementary terms. –  Christian Blatter Jul 11 '11 at 8:07 Differentiating is somewhat like taking the difference of two things (that are close together). Integrating is somewhat like taking the sum of many things (that may be fluctuating). Suppose $f$ and $g$ are functions that we "know" how to differentiate and integrate. That's somewhat analogous to saying we have expressions for $f_2-f_1$ $g_2-g_1$ $f_1+\cdots+f_n$ $g_1+\cdots+g_n$ Wanting to differentiate or integrate the product $fg$ is somewhat analogous to wanting formulas for $f_2g_2-f_1g_1$ or for $f_1g_1+\cdots+f_ng_n$. With a difference of two things, you can do algebraic "tricks" such as $f_2g_2-f_1g_1=f_2g_2-f_1g_2+f_1g_2-f_1g_1$. It's not so easy to find an algebraic "trick" for expressing $f_1g_1+\cdots+f_ng_n$ in terms of $f_1+\cdots+f_n$ and $g_1+\cdots+g_n$. - Yes, this is more or less how I think about it. Another way to phrase the same observation is that differentiation is local, while integration is global. –  Qiaochu Yuan Jul 10 '11 at 22:14 Maybe use the notion of "elementary function". There are elementary functions $A,B$ such that both $\int A$ and $\int B$ are elementary, but $\int(AB)$ is not elementary. So there can be no simple "product rule" for integration, since any simple combinations of elementary functions is again elementary. Example: $A(x) = \cos x$, $B(x) = \frac{1}{x}$. Then $\int \cos x\,dx = \sin x + C$ and $\int \frac{1}{x}\,dx = \ln x +C$ are elementary, but $\int \frac{\cos x}{x}\,dx$ is not. - Ok, but is there any simple way to convince a first year calculus student that $\int cos(x)/x$ is not elementary? That is the intended audience. –  robinson Jul 10 '11 at 21:27 Arguably integration by parts is the anti-derivative form of the product rule; in fact it is derived from the differentiation (i.e. the usual) product rule. - Sure, but it expresses the antiderivative of one product in terms of the antiderivative of another product. I'm wondering if there is an intuitive reason we can't do even better and get rid of the products entirely. –  robinson Jul 10 '11 at 18:49 I'm not sure I have a good explanation beyond "that's just how it works" :) Hopefully someone else will be able to give you a more satisfying, intuitive answer. –  Zev Chonoles Jul 10 '11 at 19:01
2015-08-03T15:22:09
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/50671/why-isnt-there-a-good-product-formula-for-antiderivatives", "openwebmath_score": 0.9527915716171265, "openwebmath_perplexity": 191.5125882013445, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.977022632097108, "lm_q2_score": 0.8596637433190939, "lm_q1q2_score": 0.8399109332160738 }
https://math.stackexchange.com/questions/4206782/finding-lambda-for-which-alpha-i-is-a-root-of-z2-lambda-z-4
# Finding $\lambda$ for which $\alpha=i$ is a root of $z^2+\lambda z-4$ (Note: $$i$$ refers to the imaginary unit) I am trying to find the values of $$\lambda$$ for which $$\alpha =i$$ is a root of the quadratic: $$z^2+\lambda z-4$$ Using the quadratic formula I got: $$z=\frac{-\lambda \pm \sqrt{\lambda^2+16}}{2}$$ (Note: I believe that $$\alpha$$ refers to the root that is equal to $$\frac{-b \textbf{+} \sqrt{b^2-4ac}}{2a}$$, but I could be mistaken) Therefore, to find the value of $$\lambda$$ for which $$\alpha =i$$, I have to solve the equation: $$i=\frac{-\lambda + \sqrt{\lambda^2+16}}{2}$$ Here is an outline of the steps I took: Multiply both sides by $$2$$ and add $$\lambda$$ to both sides: $$2i+\lambda=\sqrt{\lambda^2 +16}$$ Square both sides: $$4i^2 +4\lambda i +\lambda^2 =\lambda^2 +16$$ Subtract $$\lambda^2$$ from both sides then solve for $$\lambda$$: $$\lambda=-5i$$ However, $$\lambda=-5i$$ does not solve the equation ($$i \neq 4i$$ ), which is very confusing. Where did I go wrong? P.S: I did find that $$\lambda=-5i$$ was a solution to the other root, $$i=\frac{-\lambda - \sqrt{\lambda^2+16}}{2}$$. • if $i$ is a root doesn't it mean that $i^2+i\lambda -4=0$,$\lambda=-5i$ Jul 25, 2021 at 11:29 • Yes, that's part of the problem. Then why doesn't $i=\frac{-\lambda + \sqrt{\lambda^2+16}}{2}$ work when you substitute $\lambda=-5i$? Jul 25, 2021 at 11:38 • It does? $$i=\frac{-\lambda - \sqrt{\lambda^2+16}}{2}=i=\frac{5i - \sqrt{-25+16}}{2}=\frac{2i}{2}=i$$ It's just one of the two roots Jul 25, 2021 at 11:49 • Yes, I mentioned that at the end of my post. What I don't understand is why $i \neq \frac{-(5i)+ \sqrt{(-5i)^2+16}}{2}=4i$ Jul 25, 2021 at 11:52 • @TookieWookie: Sorry if this doesn't address your specific confusion, but the simplest way to solve this is as follows: if $i$ is a root of the quadratic $z^2+\lambda z-4$, then $$i^2+\lambda i-4=0\iff \lambda=-5i \, .$$ – Joe Jul 25, 2021 at 18:20 Each non-zero real or complex number $$w$$ has exactly two square roots $$r_1, r_2$$ which differ by sign ($$r_2 = - r_1$$). If $$w$$ is a positive real number, then both $$r_1, r_2$$ are real and the standard convention is to write $$\sqrt w$$ for the positive square root. In all other cases there is no universally accepted interpretation of $$\sqrt w$$. If $$w$$ is a negative real number, then one may of course use the definition $$\sqrt w = i \sqrt {\lvert w \rvert}$$ (as you do in your calculation). This is a good and reasonable choice for $$\sqrt w$$, but it is only one of two possible choices. For $$w \notin \mathbb R$$ it is even more arbitrary to define a unique value of $$\sqrt w$$. You corrrectly state that the quadratic equation $$z^2 + \lambda z - 4 = 0 \tag{1}$$ has the two solutions $$z=\frac{-\lambda \pm \sqrt{\lambda^2+16}}{2} \tag{2}$$ As explained above, this formula is based on a specific interpretation of the expression $$\sqrt{\lambda^2+16}$$; it involves a convention concerning the symbol $$\sqrt{\phantom x }$$. Perhaps it would be a more neutral way to say that the solutions of $$(1)$$ have the form $$z=\frac{-\lambda + r}{2} \tag{3}$$ where $$r$$ is any square root of $$\lambda^2+16$$, i.e. any solution of $$r^2 = \lambda^2+16 . \tag{4}$$ If you want to have $$i$$ as a solution of $$(1)$$, you have to determine $$\lambda \in \mathbb C$$ and $$r$$ with $$r^2 = \lambda^2+16$$ such that $$i=\frac{-\lambda + r}{2} \tag{5}$$ You write right from the start $$r = \sqrt{\lambda^2+16}$$, but this is inadequate if you use a fixed convention for the symbol $$\sqrt{\phantom x }$$. In fact, you must be aware that only one of the two solutions of $$(4)$$ will satisfy $$(5)$$ and the other produces a value $$\ne i$$. Can you be sure that a fixed square root convention produces the appropriate value for $$r$$? No, you can't. Your calculation correctly gives $$\lambda = -5i$$ and thus $$\lambda^2+16 = -9$$. The above convention for square roots of negative real numbers produces then $$r = \sqrt{-9} = 3i$$ which does not satisfy $$(5)$$. The other solution of $$(4)$$ is $$r = -3i$$ and this is the adequate one which satisfies $$(5)$$. Update: A simpler approach is this. You want to find $$\lambda$$ such that $$i$$ is a root of $$(1)$$. Let $$\rho$$ be the second root of $$(1)$$. Then $$(z-i)(z-\rho) = z^2 + \lambda z - 4$$ which gives $$i\rho = -4$$ and $$-(i + \rho) = \lambda$$. The first equation implies $$\rho = 4i$$ and the second implies then $$\lambda = -5i$$. • Thank you! I understand now... except for the bit after "Update: " How do you go from $(z-i)(z-\rho) = z^2 + \lambda z - 4$ to $i\rho = -4$ and $-(i + \rho) = \lambda$? Jul 26, 2021 at 8:20 • @TookieWookie We have $(z-i)(z-\rho) = z^2 - (i +\rho)z + i \rho$. Now compare the coefficients. Recall Vieta's formulas for quadratic equations! Jul 26, 2021 at 8:28 If a quadratic equation is given with certain coefficients its roots can be found. Else if the roots are given we can find out the quadratic equation that contains/defines these roots. The only quadratic equation which has roots $$\pm \alpha = \pm i\;$$ is: $$z^2+1=0\text { or } z^2+\alpha^2=0$$ where the complex conjugate has to be included. It is not clear how the given equation can be imagined or thought of to be able to accommodate these roots. To me appears such adjustment is not possible. • If we want both $\pm i$ to be roots, your argument is correct. But the OP only requires that $i$ is a root. Jul 25, 2021 at 23:12 • A quadratic equation with real coefficients can have a single isolated stand alone imaginary root? The totality needs to be considered in an answer even if OP asks for an impossible scenario ... or so I assume. Jul 25, 2021 at 23:59 • You are right again if the coefficients of the quadratic equation are required to be real. But the OP does not assume this. Jul 26, 2021 at 6:55 • ok thanks, .. your last edit clarifies it well. Jul 26, 2021 at 11:51 It isn't often discussed in textbooks (at least those I've seen) that polynomial and synthetic division also work for complex numbers. If we already know one of the zeroes of the polynomial $$\ z^2 + \lambda z - 4 \$$ is $$\ i \ \ ,$$ we may also carry out the calculation We must then have $$\ -5 + \lambda·i \ = \ 0 \ \Rightarrow \ \lambda \ = \ \frac{5}{i} \ = \ -5i \ \ .$$ The "reduced" polynomial is then $$\ z + (\lambda + i) \ = \ z + [-5i] + i \ = \ z - 4i \ \ ,$$ confirming that the second zero is $$\ z = 4i \ \$$ and that the quadratic polynomial is $$\ z^2 - 5i·z - 4 \ \ .$$ A small extension (which is not difficult to show) of the theorem that a quadratic polynomial with real coefficients has complex conjugate zeroes is that a quadratic polynomial has a real constant term and imaginary linear coefficent if and only if it has two purely imaginary zeroes.
2022-05-26T05:44:36
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/4206782/finding-lambda-for-which-alpha-i-is-a-root-of-z2-lambda-z-4", "openwebmath_score": 0.9237287640571594, "openwebmath_perplexity": 131.8115896204816, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9770226314280636, "lm_q2_score": 0.8596637433190939, "lm_q1q2_score": 0.8399109326409205 }
https://goluxury.travel/dushyant-wagh-gtkz/2addff-complex-number-formula
Example – $\large i^{2}=-1\:;\:i^{6}=-1\:;\:i^{10}=-1\:; i^{4a+2}\:;$. If θ is the argument of a complex number then 2 nπ + θ ; n ∈ I will also be the argument of that complex number. Leonhard Euler was enjoying himself one day, playing with imaginary numbers (or so I imagine! Formula: |z| = |a + bi | = √ a 2 + b 2 where a,b - real number, i - imaginary number. AC Circuit Definitions ; 9. On multiplying these two complex number we can get the value of x. z 2 + 2z + 3 = 0 is also an example of complex equation whose solution can be any complex number. $\LARGE a+bi=c+di\Leftrightarrow a=c\:\:and\:\:b=d$, $\LARGE (a+bi)\times(c+di)=(ac-bd)+(ad+bc)i$, $\LARGE \frac{(a+bi)}{(c+di)}=\frac{a+bi}{c+di}\times\frac{c-di}{c-di}=\frac{ac+bd}{c^{2}+d^{2}}+\frac{bc-ad}{c^{2}+d^{2}}i$. edit close. Modulus - formula If z =a+ib be any complex number then modulus of z is represented as ∣z∣ and is equal to a2 +b2 Conjugate of a complex number - formula Conjugate of a complex number a+ib is obtained by changing the sign of i. The modulus of a complex number, also called the complex norm, is denoted and defined by (1) If is expressed as a complex exponential (i.e., a phasor), then (2) First method Let z 2 = (x + yi) 2 = 8 – 6i \ (x 2 – y 2) + 2xyi = 8 – 6i Compare real parts and imaginary parts, Every real number is a complex number, but every complex number is not necessarily a real number. Argument of a complex number is a many valued function . Finding roots of complex numbers, Ex 3 In this video, … Example – $\large i^{4}=1\:;\:i^{8}=1\:;\:i^{12}=1\:;i^{4a}\:;$, Your email address will not be published. But, we may miss few of them. Your IP: 195.201.114.30 Example – $\large i^{1}=i\:;\:i^{5}=i\:;\:i^{9}=i\:; i^{4a+1}\:;$. Complex Number: Quick Revision of Formulae for IIT JEE, UPSEE & WBJEE Find free revision notes of Complex Numbers in this article. Complex Number Formulas . $$i^{n}$$ = i, if n = 4a+1, i.e. Finding roots of complex numbers This video gives the formula to find the n-th root of a complex number and use it to find the square roots of a number. A common example in engineering that uses complex numbers is an AC circuit. Cloudflare Ray ID: 613b9b7f4e300631 $$i^{n}$$= -i, if n = 4a+3, i.e. #include using namespace std; // driver … The COMPLEX function is a built-in function in Excel that is categorized as an Engineering Function. Completing the CAPTCHA proves you are a human and gives you temporary access to the web property. Finding roots of complex numbers, Ex 2 This video gives the formula to find the n-th root of a complex number and use it to find the square roots of a number. The Formulae list provided for Complex Numbers can be of extreme help during your calculations. 4. This complex exponential function is sometimes denoted cis x ("cosine plus i sine"). Reactance and Angular Velocity: Application … Example – $\large i^{3}=-i\:;\:i^{7}=-i\:;\:i^{11}=-i\:;i^{4a+3}\:;$. then, i 4 = i 3 . Example: The modulus of complex … If you are at an office or shared network, you can ask the network administrator to run a scan across the network looking for misconfigured or infected devices. Performance & security by Cloudflare, Please complete the security check to access. You may need to download version 2.0 now from the Chrome Web Store. To perform those operations with complex numbers, you’ll need to use these special functions: IMDIV, IMPRODUCT, IMSUB and IMSUM. The first, and most fundamental, complex number function in Excel converts two components (one real and one imaginary) into a single complex number represented as a+bi. Exponential Form of Complex Numbers; Euler Formula and Euler Identity interactive graph; 6. The formula is still valid if x is a complex number, and so some authors refer to the more general complex version as Euler's formula. i = -i . All important formulae and terms are included in this revision notes. + x33! + ... And because i2 = −1, it simplifies to:eix = 1 + ix − x22! + ix55! 8 3 Analytic Functions 11 Limits 11 Continuity 12 Derivative 12 Cauchy- Riemann Equations 13. vi Contents … While doing any activity on the arithmetic operations of complex numbers like addition and subtraction, mix similar terms. ), and he took this Taylor Series which was already known:ex = 1 + x + x22! A complex number is a number having both real and imaginary parts that can be expressed in the form of a + bi, where a and b are real numbers and i is the imaginary part, which should satisfy the equation i 2 = −1. To Register Online Maths Tuitions on Vedantu.com to clear your doubts from our expert teachers and solve the problems easily to score more marks in your CBSE Class 11 Maths Exam. • Complex Number Formulas Simplify any complex expression easily by having a glance at the Complex Number Formulas. Definition: i = √-1 and i 2 = -1, i 3 = i 2 .i = -i, Advertisement. Let us see some … See also. 2. A complex number is written as a+biwhere aand bare real numbers an i, called the imaginary unit, has the property that i2= 1. three more than the multiple of 4. In this expression, a is the real part and b is the imaginary part of the complex number. Note that the number must first be in polar form. 1 Complex Numbers 1 De•nitions 1 Algebraic Properties 1 Polar Coordinates and Euler Formula 2 Roots of Complex Numbers 3 Regions in Complex Plane 3 2 Functions of Complex Variables 5 Functions of a Complex Variable 5 Elementary Functions 5 Mappings 7 Mappings by Elementary Functions. Learn How to Modulus of complex number - Definition, Formula and Example. Your help will help others. where e is the base of the natural logarithm, i is the imaginary unit, and cos and sin are the trigonometric functions cosine and sine respectively. Algebra rules and formulas for complex numbers are listed below. Another way to prevent getting this page in the future is to use Privacy Pass. This formula is applicable only if x and y are positive. two more than the multiple of 4. The set of all complex numbers is denoted by Z \in \mathbb C Z ∈ C. The set of all imaginary numbers is denoted as one more than the multiple of 4. The complex numbers z= a+biand z= a biare called complex conjugate of each other. We try our level best to put together all types of shortcut methods here. 2. The division of two complex numbers can be accomplished by multiplying the numerator and denominator by the complex conjugate of the denominator, for example, with and, is given by (1) (2) (3) Result: square the magnitudes, double the angle.In general, a complex number like: r(cos θ + i sin θ)When squared becomes: r2(cos 2θ + i sin 2θ)(the magnitude r gets squared and the angle θ gets doubled. A complex number is a number of the form a + bi, where a and b are real numbers, and i is an indeterminate satisfying i 2 = −1.For example, 2 + 3i is a complex number. Complex Number Formula A complex number is a number that can be expressed in the form a + bi, where a and b are real numbers and i is the imaginary unit, that satisfies the equation i 2 = −1. Complex Number Power Formula Either you are adding, subtracting, multiplying, dividing or taking the root or power of complex numbers then there are always multiple methods to solve the problem using polar or rectangular method. A complex number equation is an algebraic expression represented in the form ‘x + yi’ and the perfect combination of real numbers and imaginary numbers. Complex Numbers (Simple Definition, How to Multiply, Examples) The Microsoft Excel COMPLEX function converts coefficients (real and imaginary) into a complex number. + (ix)44! CBSE Previous Year Question Papers Class 10, CBSE Previous Year Question Papers Class 12, NCERT Solutions Class 11 Business Studies, NCERT Solutions Class 12 Business Studies, NCERT Solutions Class 12 Accountancy Part 1, NCERT Solutions Class 12 Accountancy Part 2, NCERT Solutions For Class 6 Social Science, NCERT Solutions for Class 7 Social Science, NCERT Solutions for Class 8 Social Science, NCERT Solutions For Class 9 Social Science, NCERT Solutions For Class 9 Maths Chapter 1, NCERT Solutions For Class 9 Maths Chapter 2, NCERT Solutions For Class 9 Maths Chapter 3, NCERT Solutions For Class 9 Maths Chapter 4, NCERT Solutions For Class 9 Maths Chapter 5, NCERT Solutions For Class 9 Maths Chapter 6, NCERT Solutions For Class 9 Maths Chapter 7, NCERT Solutions For Class 9 Maths Chapter 8, NCERT Solutions For Class 9 Maths Chapter 9, NCERT Solutions For Class 9 Maths Chapter 10, NCERT Solutions For Class 9 Maths Chapter 11, NCERT Solutions For Class 9 Maths Chapter 12, NCERT Solutions For Class 9 Maths Chapter 13, NCERT Solutions For Class 9 Maths Chapter 14, NCERT Solutions For Class 9 Maths Chapter 15, NCERT Solutions for Class 9 Science Chapter 1, NCERT Solutions for Class 9 Science Chapter 2, NCERT Solutions for Class 9 Science Chapter 3, NCERT Solutions for Class 9 Science Chapter 4, NCERT Solutions for Class 9 Science Chapter 5, NCERT Solutions for Class 9 Science Chapter 6, NCERT Solutions for Class 9 Science Chapter 7, NCERT Solutions for Class 9 Science Chapter 8, NCERT Solutions for Class 9 Science Chapter 9, NCERT Solutions for Class 9 Science Chapter 10, NCERT Solutions for Class 9 Science Chapter 12, NCERT Solutions for Class 9 Science Chapter 11, NCERT Solutions for Class 9 Science Chapter 13, NCERT Solutions for Class 9 Science Chapter 14, NCERT Solutions for Class 9 Science Chapter 15, NCERT Solutions for Class 10 Social Science, NCERT Solutions for Class 10 Maths Chapter 1, NCERT Solutions for Class 10 Maths Chapter 2, NCERT Solutions for Class 10 Maths Chapter 3, NCERT Solutions for Class 10 Maths Chapter 4, NCERT Solutions for Class 10 Maths Chapter 5, NCERT Solutions for Class 10 Maths Chapter 6, NCERT Solutions for Class 10 Maths Chapter 7, NCERT Solutions for Class 10 Maths Chapter 8, NCERT Solutions for Class 10 Maths Chapter 9, NCERT Solutions for Class 10 Maths Chapter 10, NCERT Solutions for Class 10 Maths Chapter 11, NCERT Solutions for Class 10 Maths Chapter 12, NCERT Solutions for Class 10 Maths Chapter 13, NCERT Solutions for Class 10 Maths Chapter 14, NCERT Solutions for Class 10 Maths Chapter 15, NCERT Solutions for Class 10 Science Chapter 1, NCERT Solutions for Class 10 Science Chapter 2, NCERT Solutions for Class 10 Science Chapter 3, NCERT Solutions for Class 10 Science Chapter 4, NCERT Solutions for Class 10 Science Chapter 5, NCERT Solutions for Class 10 Science Chapter 6, NCERT Solutions for Class 10 Science Chapter 7, NCERT Solutions for Class 10 Science Chapter 8, NCERT Solutions for Class 10 Science Chapter 9, NCERT Solutions for Class 10 Science Chapter 10, NCERT Solutions for Class 10 Science Chapter 11, NCERT Solutions for Class 10 Science Chapter 12, NCERT Solutions for Class 10 Science Chapter 13, NCERT Solutions for Class 10 Science Chapter 14, NCERT Solutions for Class 10 Science Chapter 15, NCERT Solutions for Class 10 Science Chapter 16, Convert Degree Celsius To Fahrenheit Formula. Called complex conjugate of each other impedance and Phase Angle: Application of complex ;!, playing with imaginary numbers ( x ; y ) with special rules! < θ ≤ π is called the principal value of θ such that – π < ≤. Θ ≤ π is called the principal value of the complex function is built-in! Can be dened as pairs of real numbers ( or so i imagine & security by,! Terms are included in this expression, a is the imaginary part of the complex equation cosine plus sine... Getting this page in the equation to make the solution easy to understand a mix of the real with. That a mix of the real part and b is the real and... 'S formula is applicable only if x and y are positive Formulas Simplify any number... A is the real part and b is the imaginary part of the real (! ) 22 in it are called as the complex number biare called complex conjugate of other! Temporary access to the polar form multiplying and dividing complex numbers ;.. Imaginary number the basic complex Formulas in the future is to use Pass! Web Store & security by cloudflare, please complete the security check to access used to find modulus. Addition and subtraction, mix similar terms know anything else rather than this please do share with us the.: Application of complex numbers shortcut tricks for those people a glance at the complex numbers can be in form... Be of extreme help during your calculations the actual number and imaginary number – 6i check to access arrive the... Find the modulus and argument for any complex number Formulas Simplify any complex can. The imaginary part of the complex numbers ; 7 multiplying and dividing complex numbers ;.! In Excel that is categorized as an engineering function here we prepared of... Numbers ; Graphical explanation of multiplying and dividing complex numbers ; Graphical explanation multiplying... + ix + ( ix ) 22 i terms at the solutions easily with simple steps of... It simplifies to: eix = ( 1 − x22 number must first be either! The real part and b is the imaginary part of the complex.... Must first be in polar form the Chrome web Store by 2nπ multiplying and dividing numbers... How complex numbers are a human and gives you temporary access to the web property this do. A mix of the complex equation Quotients of complex numbers in it called... Engineering that uses complex numbers shortcut tricks for those people many valued function this example x... The argument of any complex number - definition, formula and example doing any activity on the arithmetic of. I sine '' ) x + yi or x + x22 you temporary access to the web property with. Such that – π < complex number formula ≤ π is called the principal value of the real and! End: eix = 1 + x + yj, a is the real numbers with actual... Ip: 195.201.114.30 • Performance & security by cloudflare, please complete the security check to access solution easy understand. … find the square root of 8 – 6i do share with us as of... Together all types of shortcut methods here Chrome web Store list provided for complex are! To: eix = ( 1 − x22 be used as a worksheet function ( WS ) in Excel eix. Plus i sine '' ) many valued function to prevent getting this page in the future is to Privacy. If n = 4a+1, i.e two arguments of a complex number Formulas Simplify any complex expression by! Than this please do share with us the imaginary number help during your calculations number and imaginary.! The real part and b is the imaginary part of the complex number - definition, formula and example either... The square root of a complex number we have to equate them to the web.. You need to put the basic complex Formulas in the future is to Privacy... Here r stands for modulus and θ stands for modulus and θ stands for modulus and stands! Physics, and he took this Taylor Series which was already known: ex = 1 + x yi! Performance & security by cloudflare, please complete the security check to access numbers in it are called the! Simple steps instead of lengthy calculations Formulae list provided for complex numbers 10... The CAPTCHA proves you are a human and gives you temporary access to the web property AC! Number with the imaginary part of the argument and Phase Angle: Application of complex … find modulus! Prepared Formulas of complex numbers in it are called as the complex number.... Function ( WS ) in Excel that is categorized as an engineering function please do share with us +. For complex numbers like addition and subtraction, mix similar terms... Now group all the terms! Of a complex number formula and example playing with imaginary numbers ( x ; y ) with special rules... Into it: eix = 1 + ix − x22 how to modulus of complex are. = -1, i 3 = i 2 = -1, i 3 = i 2 = -1, n... Getting this page in the future is to use Privacy Pass of shortcut methods here put into. Page in the equation to make the solution easy to understand square root of 8 – 6i by 2nπ i2... Common example in engineering that uses complex numbers like addition and subtraction, mix similar terms Excel that is as... Manipulation rules the modulus of complex numbers like addition and subtraction, mix similar terms argument a... How to modulus of complex number completing the CAPTCHA proves you are a and. Of shortcut methods here ; 10 may need to put the basic complex in... Dened in Fortran or C. complex number first be in polar form and is... Numbers can be dened as pairs of real numbers ( x ; y ) with special manipulation rules can. Check to access of complex numbers like addition and subtraction, mix similar terms: the modulus and argument any. Argument of a complex number, a is the imaginary part of the complex number is a built-in in! −... Now group all the i terms at the end: eix = ( 1 − x22 as! Any complex number is a many valued function i 2 = -1, 3. Only if x and y are positive + x + yj complex expression easily having. Download version 2.0 Now from the Chrome web Store number differ by 2nπ = 4a+1, i.e leonhard was! The solutions easily with simple steps instead of lengthy calculations = i 2.i -i. + ix + ( ix ) 22 only if x and y are positive methods here a mix of real..., playing with imaginary numbers ( x ; y ) with special manipulation rules, i 3 =,! I into it: eix = 1 + x + x22 form, x + yj.i... −... Now group all the i terms at the complex number + ( ix ) 22 dened... ) here r stands for modulus and argument for any complex number -i, Advertisement real (... Expression, a is the imaginary part of the argument of any complex number can of... For modulus and θ stands for argument ) 22 it implies that a mix the... = 4a, i.e and dividing complex numbers shortcut tricks for those people equate! X = ( 1 − x22: the modulus of complex numbers can be dened pairs. At the complex number Formulas Simplify any complex expression easily by having a glance the. Complex function is sometimes denoted cis x ( cosine plus i sine )! Important Formulae and terms are included in this expression, a is the real part and b is real! Provided for complex numbers shortcut tricks for those people s complex number formula complex numbers can dened!, physics, and he took this Taylor Series which was already known: ex = +! Biare called complex conjugate of each other 2.0 Now from the Chrome web Store π called...: x = ( 1 − x22 = i, if n = 4a+3,.... And imaginary number so i imagine + ( ix ) 22 1, if n =,. +... and because i2 = −1, it simplifies to: eix = ( 1 x22... Is sometimes denoted cis x ( cosine plus i sine ''.! Your calculations complex exponential function is sometimes denoted cis x ( plus... 4A+3, i.e worksheet function ( WS ) in Excel that is categorized an! Chrome web Store are positive in polar form it implies that a of! ( cos θ + i sin θ ) here r stands for modulus and θ stands for argument revision! Definition, formula and example = i, if n = 4a+1, i.e, mix similar terms mathematics! With special manipulation rules ) = -i, if n = 4a+3, i.e together all types shortcut. Formulas of complex numbers in it are called as the complex function sometimes. That a mix of the complex function is a many valued function 3 i! Θ stands for modulus and argument for any complex number can be in either form, x a! Basic complex Formulas in the equation to make the solution easy to.... … find the square root of 8 – 6i with us the modulus of complex numbers like addition and,! May need to put together all types of shortcut methods here: 613b9b7f4e300631 your... complex number formula 2021
2022-06-29T03:55:10
{ "domain": "goluxury.travel", "url": "https://goluxury.travel/dushyant-wagh-gtkz/2addff-complex-number-formula", "openwebmath_score": 0.6936937570571899, "openwebmath_perplexity": 1170.345115510804, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.977022625406662, "lm_q2_score": 0.8596637469145054, "lm_q1q2_score": 0.8399109309773383 }
https://math.stackexchange.com/questions/2458236/given-u-w-are-vector-spaces-whats-the-difference-between-u-union-w-and-u-w
# Given U, W are vector spaces, what's the difference between U union W and U + W? My prof made an offhand remark about this in class and didn't go into detail. I've took a bit of stats before and to me these two statements seem identical, I don't see how they're different. I also found this question; is this what my prof is referring to: If it is, I'm not sure how does Minkowski addition fits into linear algebra. • $U\cup W$ is not a vector space, in general. – Thomas Andrews Oct 5 '17 at 1:12 • Consider $U$ the $x$-axis in $\Bbb R^2$ and $W$ the $y$-axis in $\Bbb R^2$. Then $U\cup W$ are the axes and only the axes, i.e. have at least one coordinate zero. $U+W$ however is the entirety of $\Bbb R^2$. – JMoravitz Oct 5 '17 at 1:15 The definitions couldn't be more different : Let $U,W$ be vector spaces. $U \cup W = \{x \in U \textrm{ or } x \in W\}$. $U + W = \{x + y : x \in U, y \in W\}$. An vector is in $U \cup W$ if and only if it is either in $U$ or in $W$ or in both. A vector is in $U + W$ if and only if it is the sum of two (not necessarily distinct or unique) vectors from $U$ and $W$ respectively. To give you an example, let's consider the vector subspaces of $\mathbb R^2$, given by $U = \{(x,y) : x = 2y\}$, and $W = \{(x,y) : x = 3y\}$. You can clearly see that these are vector spaces : they are closed under addition and scalar multiplication. What is an element of $U \cup W$? As sets in $\mathbb R^2$, $U$ and $W$ are just lines passing through the origin. So as a set, $U \cup W$ is just two lines passing through the origin. From this image, we conclude that it cannot be a subspace either. But what is $U + W$? This is the set of all possible sums of elements from $U$ and $W$. That is, if $(2a,a) \in U$ and $(3b,b) \in W$, then an element of $U+W$ is $(2a+3b,a+b)$. We claim that $U+W = \mathbb R^2$. To see this, let $(x,y) \in \mathbb R^2$. We want $(x,y) = (2a+3b,a+b)$ for some $a,b$. It's easy to see that if we choose $a = 3y-x, b = x-2y$, then infact this holds true. In other words, if we take the point $(2a,a) \in U$ and $(3b,b) \in V$, then their sum is $(x,y)$. Since $x,y$ were arbitrary, we conclude that $U + W = \mathbb R^2$. Hence, clearly $U \cup W$ and $U + W$ are different sets. In fact, more often than not they will be very different from each other. For one, $U \cup W$ is not a subspace most of the time,while $U + W$ is always a subspace. • It's worth noting that they are not completely unrelated sets: certainly $U \cup W \subseteq U + W$, and in fact $U+W$ is the subspace generated by $U \cup W$. – Bungo Oct 5 '17 at 1:19 • Yes, that is correct. Thank you for the comment. – астон вілла олоф мэллбэрг Oct 5 '17 at 1:20 • @Bungo: I'm not seeing how U + W can be generate from U∪W – L to the V Oct 5 '17 at 1:27 • @LtotheV Every element of $U+W$ is of the form $u + w$ where $u \in U$ and $w \in W$. As $U \subseteq U \cup W$ and $W \subseteq U \cup W$, this means that an arbitrary element of $U+W$ is the sum of two elements contained in $U\cup W$. – Bungo Oct 5 '17 at 1:31 For example, let $$U=\{(x,0): \ x\in\mathbb{R}\}, W=\{(0,y): \ y\in\mathbb{R}\}.$$ Then $$U\cup W=\{(x,y): \ x=0\text{ or }y=0\}, U+W=\{(x,y): \ x,y\in\mathbb{R}\}=\mathbb{R}^2.$$ You see the difference.
2019-07-22T04:27:11
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2458236/given-u-w-are-vector-spaces-whats-the-difference-between-u-union-w-and-u-w", "openwebmath_score": 0.9283282160758972, "openwebmath_perplexity": 117.62792755045977, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9835969703688159, "lm_q2_score": 0.8539127585282744, "lm_q1q2_score": 0.839906002247689 }
https://math.stackexchange.com/questions/2021561/how-many-permutations-of-a-1-a-2-a-3-a-4-b-1-b-2-b-3-have-the-as-and
How many permutations of $A_1, A_2, A_3, A_4, B_1, B_2, B_3$ have the $A$'s and $B$'s in ascending order. How many permutations of $A_1, A_2, A_3, A_4, B_1, B_2, B_3$ have the $A$'s in ascending order and $B$'s in ascending order. (i.e, $A_1, A_2, B_1, A_3, B_2, B_3, A_4$). Can the solution be extended?($A_1,\dots,A_n,B_1,\dots,B_m,C_1,\dots, C_s$) See all the elements as if all were dots $\bullet$. Then , you select $3$ of them, and they will be the $A$'s of your arrangement. Since your $A$'s must be in ascending order, you must put them in order. The rest dots willbe the $B$'s in ascending order. Example: $$\bullet\bullet\bullet\bullet\bullet\bullet\bullet$$ I select the ones with stars $$\bullet\star\star\bullet\star\star\bullet$$ Then the arrangement is $$B_1,A_1,A_2,B_2,A_3,A_4,B_3$$ The number of arrangements will be $$\binom{7}{4}=\binom{7}{3}=\frac{7\cdot 6\cdot 5}{3\cdot 2\cdot 1}= 7\cdot 5= 35$$ For the case of $A_1,\dots,A_n,B_1,\dots B_s$, you can do the same: Consider all elements as points, and then select $n$ elements, that will be your $A$'s. Then order them is ascending order, and put the $A$'s. The rest of elements are $B$'s so put them in ascending order too and you will have all the arrangements in this way. The number of arrangements will be $$\binom{n+s}{n}=\binom{n+s}{s}$$ • @ MonsieurGalois, Can the solution be extended?($A_1,\dots,A_n,B_1,\dots,B_m,C_1,\dots, C_s$) – Angel Nov 19 '16 at 18:40 • @Angel Of course, you can do it like $\binom{n+s}{n}$. Is the same method. – iam_agf Nov 19 '16 at 18:41 Order the As first: $A_1,A_2,A_3,A_4$. Now, $B_2$ can be placed at any one of $5$ slots. When $B_2$ is placed at slot #$n$: • $B_1$ can be placed at any one of $n$ slots • $B_3$ can be placed at any one of $6-n$ slots Hence the total number of ways to order the Bs is $\sum\limits_{n=1}^{5}n(6-n)=35$. • @ barak, Can the solution be extended?($A_1,\dots,A_n,B_1,\dots,B_m,C_1,\dots, C_s$) – Angel Nov 19 '16 at 18:39
2020-08-14T03:17:46
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2021561/how-many-permutations-of-a-1-a-2-a-3-a-4-b-1-b-2-b-3-have-the-as-and", "openwebmath_score": 0.9555800557136536, "openwebmath_perplexity": 293.7191551242476, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9835969713304754, "lm_q2_score": 0.8539127548105611, "lm_q1q2_score": 0.8399059994121307 }
http://math.stackexchange.com/questions/124038/show-by-substitution-that-int-0-pi-fracx-sin-x1-cos2-x-mathrm-dx/124040
# Show by substitution that $\int_0^{\pi} \frac{x\sin x}{1+\cos^2 x} \,\mathrm dx = \frac{\pi}{2}\int_0^{\pi} \frac{\sin x}{1+\cos^2 x} \,\mathrm dx$ How do you show $$\int_0^{\pi} \frac{x\sin x}{1+\cos^2 x} \,\mathrm{d}x = \frac{\pi}{2}\int_0^{\pi} \frac{\sin x}{1+\cos^2 x} \,\mathrm{d}x$$ without integrating by parts, but only using substitution? - Why do you want to know, and why do you impose that restriction? –  GEdgar Mar 24 '12 at 20:22 For any integral of the form $$I = \int_0^{\pi} x f(\sin x) \mathrm{d}x$$ since $\sin(\pi-x) = \sin(x)$, using substitution $x = \pi-u$, or $u=\pi- x$, one may reduce this integral to the following using when $x=0, u=\pi$, and when $x=\pi, u=0$, and also $\mathrm{d}x = \mathrm{-d}u$ \begin{align*} I = \int_0^{\pi} (\pi - u) f(\sin u) \mathrm{d}u &= \pi \int_0^{\pi} f(\sin u) \mathrm{d}u - \int_{\pi}^{0} u f(\sin u) \mathrm{(-d}u) \\ &= \pi \int_0^{\pi} f(\sin u) \mathrm{d}u - \int_0^{\pi} u f(\sin u) \mathrm{d}u \\ &= \pi \int_0^{\pi} f(\sin u) \mathrm{d}u - I\\ 2I &= \pi \int_0^{\pi} f(\sin u) \mathrm{d}u\\ I & = \frac{\pi}{2}\int_0^{\pi} f(\sin u) \mathrm{d}u = \frac{\pi}{2}\int_0^{\pi} f(\sin x) \mathrm{d}x \tag{A} \end{align*} Apply $(A)$ for $\displaystyle{f(\sin x) = \frac{\sin x}{2-\sin^2 x} = \frac{\sin x}{1+\cos^2 x}}$ Although it was not asked, to further notice what is the value of the integral by substituting further $\cos x = t, -\sin x \mathrm{d}x = \mathrm{d}t \hspace{5pt} cos(\pi) = -1, cos(0) = 1$ \begin{align*} \frac{\pi}{2}\int_0^{\pi} \frac{\sin x}{1+\cos^2 x} \,\mathrm{d}x &= \frac{\pi}{2} \int_{1}^{-1} \frac{\mathrm{-d}t}{1+t^2}\\ &= \frac{\pi}{2} \int_{-1}^{1} \frac{\mathrm{d}t}{1+t^2}\\ &= \frac{\pi}{2} \left( \tan^{-1}(1) - \tan^{-1}(-1) \right) \\ &= \frac{\pi}{2} \left( \frac{\pi}{4} - \frac{-\pi}{4} \right) = \frac{\pi}{2} \left(\frac{\pi}{2}\right) = \frac{{\pi}^2}{4}\\ \end{align*} - +1. Nice and elegant. –  user17762 Mar 24 '12 at 21:41 When making a substitution, don't forget to change the bounds of integration. –  chharvey Mar 25 '12 at 7:24
2014-03-08T11:50:36
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/124038/show-by-substitution-that-int-0-pi-fracx-sin-x1-cos2-x-mathrm-dx/124040", "openwebmath_score": 1.0000100135803223, "openwebmath_perplexity": 5463.416600324484, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9835969708496457, "lm_q2_score": 0.8539127529517043, "lm_q1q2_score": 0.8399059971731783 }
https://math.stackexchange.com/questions/571971/asymptotic-approximation-when-a-to-0-of-ia-int-0-infty-int-0a-xe
# asymptotic approximation when $a\to 0^+$ of $I(a):=\int_0^\infty \int_0^{a/x}e^{-x-y}\ dy\ dx.$ I want to find an asymptotic approximation when $a\to 0^+$ for the integral $$I(a):=\int_0^\infty \int_0^{a/x}e^{-x-y}\ dy\ dx.$$ I found the following approximation: $$C_1\, a\, \mathrm{ln}(1/a) < I(a)< C_2 \sqrt{a},$$ where $C_1$ and $C_2$ are constant terms. I would like to have a better approximation, something of the type $I(a)=\Theta(\sqrt{a})$ or $I(a)=\Theta(a\, \mathrm{ln}(1/a))$ when $a\to 0^+$. In the folowing I explain how I found those bounds. First we split our integral: $$I(a):=\int_0^\sqrt{a} \int_0^\sqrt{a} e^{-x-y}\ dy\ dx + \int_0^\sqrt{a} \int_\sqrt{a}^{a/x}e^{-x-y}\ dy\ dx +\int_\sqrt{a}^\infty \int_0^{a/x}e^{-x-y}\ dy\ dx.$$ But the two last integral are equal (clear if you draw the picture of the domain of integration and observe the symmetry), so we have: $I(a)=I_1(a)+2\, I_2(a)$ with $$I_1(a):=\int_0^\sqrt{a} \int_0^\sqrt{a} e^{-x-y}\ dy\ dx\quad \text{ and }\quad I_2(a):=\int_\sqrt{a}^\infty \int_0^{a/x}e^{-x-y}\ dy\ dx.$$ We consider that $a$ is small, so we have $0<a<1$ and in the domain of integration of $I_1(a)$, we have $e^{-2}<e^{-x-y}<1$. Hence $e^{-2} a <I_1(a)< a$. That is $$I_1(a)=\Theta(a).$$ This first integral will not play any role for our bounds, because the second integral will be much bigger (for small values of $a$). Now we observe that if $x>\sqrt(a)$, then $a/x<a/\sqrt{a}=\sqrt{a}$. Hence $$I_2(a)<\int_\sqrt{a}^\infty \int_0^\sqrt{a}e^{-x-y}\ dy\ dx <\int_\sqrt{a}^\infty e^{-x} \int_0^\sqrt{a}1\ dy\ dx =\sqrt{a}\,e^{-\sqrt{a}}<\sqrt{a}.$$ So we have proved the upper bound, and will show the above bound now. We have for $x>\sqrt{a}>a$ and $a<1$, $$\int_0^{a/x}e^{-y}\ dy> \frac{a}{x} e^{-a/x} >\frac{a}{x} e^{-1}.$$ So $$I_2(a)> a\,e^{-1} \int_\sqrt{a}^\infty \frac{e^{-x}}{x}\ dx >a\,e^{-1} \int_\sqrt{a}^1 \frac{e^{-x}}{x}\ dx >a\,e^{-2} \int_\sqrt{a}^1 \frac{1}{x}\ dx =\frac{e^{-2}}{2}\,a\,\textrm{ln}(1/a).$$ This gives us the lower bound. • It should be noted that your integral is $1-2\sqrt{a}K_1\left(2\sqrt{a}\right)$, where $K_\nu(z)$ is the modified Bessel function of the second kind of order $\nu$. The asymptotics can then be obtained from known series for $K_\nu$, for instance formula (4) in this MathWorld article. – Antonio Vargas Nov 18 '13 at 18:32 Your method will definitely work, we just need to keep track of the errors along the way. You showed that \begin{align} I(a) &= 2I_2(a) + \Theta(a) \\ &= 2\int_{\sqrt{a}}^\infty e^{-x} - e^{-a/x-x}\,dx + \Theta(a). \tag{1} \end{align} As you observed, the tail of the integral is insignificant. In fact we have \begin{align} 0 &\leq \int_{1}^\infty e^{-x} - e^{-a/x-x}\,dx \\ &\leq \int_{1}^\infty e^{-x} - e^{-a/1-x}\,dx \\ &= (1-e^{-a}) \int_1^\infty e^{-x}\,dx, \end{align} so that $$\int_{1}^\infty e^{-x} - e^{-a/x-x}\,dx = O(a). \tag{2}$$ In the remaining interval $x \in [\sqrt{a},1]$ we have $e^{-a/x} = 1 - a/x + O(a/x)^2$. Substituting this into the integral yields \begin{align} \int_\sqrt{a}^1 e^{-x} - e^{-a/x-x}\,dx &= \int_{\sqrt{a}}^1 e^{-x} - e^{-x}\Bigl[1 - a/x + O(a/x)^2\Bigr]\,dx \\ &= a \int_\sqrt{a}^1 \frac{e^{-x}}{x}\,dx + O\left(a^2\int_\sqrt{a}^1 \frac{e^{-x}}{x^2}\,dx\right). \tag{3} \end{align} In the integrals we substitute $e^{-x} = 1 + O(x)$ to get $$\int_\sqrt{a}^1 \frac{e^{-x}}{x}\,dx = \int_\sqrt{a}^1 \frac{dx}{x} + O(1) = \frac{\log(1/a)}{2} + O(1)$$ and $$\int_\sqrt{a}^1 \frac{e^{-x}}{x^2}\,dx = \frac{1}{\sqrt{a}} + O(\log a).$$ Thus $(3)$ becomes $$\int_\sqrt{a}^1 e^{-x} - e^{-a/x-x}\,dx = \frac{a\log(1/a)}{2} + O(a).$$ Combining this with $(1)$ and $(2)$, we conclude that $$I(a) = a\log\left(\frac{1}{a}\right) + O(a)$$ as $a \to 0^+$.
2021-06-24T00:34:11
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/571971/asymptotic-approximation-when-a-to-0-of-ia-int-0-infty-int-0a-xe", "openwebmath_score": 0.9999220371246338, "openwebmath_perplexity": 285.2626545985626, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9835969655605175, "lm_q2_score": 0.8539127566694178, "lm_q1q2_score": 0.8399059963134559 }
https://math.stackexchange.com/questions/3739413/prove-that-if-p-1-p-k-are-distinct-prime-numbers-then-sqrtp-1p-2-p-k
# Prove that if $p_1,…,p_k$ are distinct prime numbers, then $\sqrt{p_1p_2…p_k}$ is irrational Prove that if $$p_1,...,p_k$$ are distinct prime numbers, then $$\sqrt{p_1p_2...p_k}$$ is irrational. I do not usually prove theorems, so any hint is appreciated. I have taken a look at this and tried to repeat that argument over and over, but I messed up. Perhaps there is an easier to do it. Thanks in advance. Edit: For the case $$k=1$$, suppose that $$\sqrt{p}=\frac{m}{n}, n\neq0$$ and $$gcd(m,n)=1$$. It follows that $$m^2=pn^2$$, so $$p\mid m$$. Also, $$p\mid n$$. Therefore, $$m$$ and $$n$$ are not relatively prime. Contradiction. • Can you write up what you have done? Esp for the $\sqrt{p_1}$ case. The general case is very similar. – Calvin Lin Jun 29 '20 at 22:22 • it's exactly the same as in the case of two prime numbers that you mention. – alphaomega Jun 29 '20 at 22:24 • Just edited to show what I did so far. I'm not so sure that's correct. – Mauricio Mendes Jun 29 '20 at 22:38 Assume $${p_1,...,p_k}$$ are distinct primes, and assume (aiming for a contradiction) that $${\sqrt{p_1p_2...p_k}=\frac{a}{b}}$$ for coprime positive integers $${a,b}$$ (alternatively, you can write $${(a,b)=1}$$). As before, squaring both sides and rearranging for $${a^2}$$ yields $${\Rightarrow a^2 = p_1...p_kb^2}$$ In other words,$${a^2}$$ contains $${p_1,...,p_k}$$ as factors, and thus $${a}$$ must contain $${p_1,...,p_k}$$ as factors (since $${a^2}$$ contains these primes as factors, this has to be the case because they are prime. This wouldn't be true for some random composite number). Anyways, we rewrite $${a=p_1...p_ka^*}$$. Plugging back in gives $${\Rightarrow \frac{p_1...p_ka^*}{b}=\sqrt{p_1...p_k}}$$ And this implies $${\Rightarrow \frac{p_1^2...p_k^2\left(a^*\right)^2}{b^2}=p_1...p_k}$$ You can rearrange this and get $${b^2 = p_1...p_k\left(a^*\right)^2}$$ And we have got our desired contradiction. By the same argument as before, this would tell us $${b^2}$$ has factors $${p_1...p_k}$$, and because again these are primes that means $${b}$$ contains factors $${p_1...p_k}$$. This is a contradiction since we assumed that $${(a,b)=1}$$ (that $${a,b}$$ were coprime, hence could not share any common factors), and yet from assuming the rationality of our expression we have shown that $${a,b}$$ both contained $${p_1,...,p_k}$$ as factors! QED. Or Quantum Electrodynamics if you are a Physicist :P First, I will prove that if $$\sqrt{p_1p_2...p_k}$$ is a rational, then it must be an integer. Suppose there are $$p, q\in\mathbb{N}$$ with $$\text{gcd}(p,q)=1$$ such that $$\dfrac{p}{q}=\sqrt{p_1p_2...p_k}.$$ Using the Euclid algorithm, we can find two (relatively prime) integers $$a, b$$ such that $$ap+bq=1.$$ Now consider $$0=(p-q\sqrt{p_1p_2...p_k})(b-a\sqrt{p_1p_2...p_k})=bp-(ap+bq)\sqrt{p_1p_2...p_k}+aq(p_1p_2...p_k).$$ Hence $$\sqrt{p_1p_2...p_k}=bp+aq(p_1p_2...p_k)\in\mathbb{Z}.$$ Hence $$p^2=p_1p_2...p_k.$$ Now from elementary number theory, you can argue that $$p_1$$ s a prime factor of $$p$$ and, it implies that $$p_1$$ is also a prime factor of $$p_2p_3...p_k,$$ which is a contradiction. • Note that, this proof does not use any restriction on $k.$ In particular it can be used to derive $\sqrt{p}$ is irrational for any prime $p.$ – Bumblebee Jun 29 '20 at 23:27 "and tried to repeat that argument over and over" that's all you have to do but you only have to do the argument once. Let $$a,b$$ be integers where $$(\frac ab)^2 = p_1.....p_n$$ so $$a^2 = bp_1......p_n$$. So for any of those prime $$p_i$$ (it doesn't matter which one) then $$p_i|a^2$$ and by Euclid's Lemma[*] the $$p_i|a$$ so $$p_i^2|a^2$$ and so $$a*\frac {a}{p_i} = b\frac {p_1..... p_n}{p_i}$$ For notation let $$\frac a{p_i} = a'$$ and let $$\frac {p_1.....p_n}{p_i} = P= p_1p_2...p_{i-1}p_{i+1}....p_n = \prod_{j=1;j\ne i}^n p_i$$. so $$aa' = p_ia'^2 = bP$$. So $$p_i|bP$$. So by Euclid's Lemma either $$p_i|b$$ or $$p_i|P$$. But $$P = \prod_{j=1;j\ne i}^n p_i$$ is not divisible by $$p_i$$. So $$p_i|b$$. $$p_i|a$$ and $$p_i|b$$ so $$\frac ab$$ where not in lowest terms. Now we could argue that we only claimed $$a,b$$ where integer, we never said they had to be in lowest terms. But we can argue if $$a,b$$ exist then we can repeat this infinitely (as $$p_i|b$$ then if $$\frac b{p_i} = b'$$ then we have $$(\frac {a'}{b'})^2 = p_1..... p_n$$ so we can repeat over and over.) This means we have an infinite series of $$a = p_ia'=p_i^2a_2=p_i^2a_3 =..... =p_k^2a_k=...$$. But as $$p_i > 1$$ this mean $$a > a' >a_2>a_3>.....$$. That's clearly impossible as there are only a finite number of natural numbers less than $$a$$[**]. So we have proven the result. [*] Euclid's lemma: If $$p$$ is prime and $$p|ab$$ for integers $$a,b$$ then either $$p|a$$ or $$p|b$$ (or both). Everything hinges on that. (Which presumably you have proven one way or another already. [**] This is the well-ordered principal. Every set of natural numbers must have a minimal element. Sa $$a> a'> a_2 > a_3.....$$ then the set $$\{a,a', a_i\}$$ must have a smallest $$a_k$$ which means it only has $$k$$ elements and eventually we must get $$\frac ab$$ in lowest terms.
2021-05-13T09:19:56
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3739413/prove-that-if-p-1-p-k-are-distinct-prime-numbers-then-sqrtp-1p-2-p-k", "openwebmath_score": 0.9582037925720215, "openwebmath_perplexity": 90.87259225159214, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9835969638776125, "lm_q2_score": 0.8539127548105611, "lm_q1q2_score": 0.839905993048036 }
https://www.physicsforums.com/threads/can-i-integrate-to-find-resistance-of-an-object-of-increasing-radius.725780/
# Can I integrate to find resistance of an object of increasing radius? 1. Nov 30, 2013 ### LiamG_G 1. The problem statement, all variables and given/known data I have to find the ratio of RB/RA where R is electrical resistance. Both objects A and B have circular cross section and length L, and are made of the same material. A has radius r0. B has radius r0/2 at the bottom and increases linearly to 2r0. 2. Relevant equations R=pl/A 3. The attempt at a solution RA is simple enough to determine, but I'm stuck with RB I have 2 potential theories as how to tackle this. One is that the thin end and the thick ends will cancel, due to symmetry, leaving me with a ratio of 1. The other involves R=pl/A becoming R=p∫0L1/A dx and somehow changing this to involve r0/2 and 2r0 2. Nov 30, 2013 ### tiny-tim Hi LiamG_G! B is a lot of discs in series. 3. Dec 1, 2013 ### rude man Pick that one! Your integral is OK, so what is A(x)? 4. Dec 1, 2013 ### LiamG_G So A=∏r2 and r ranges from r0/2 to 2r0 But with my integral, which I thought would be R=ρ∫0L (1/A)dx relates to the length of the cylinder, not it's radius. I think I need to find an equation for r at a specific point in the bar in terms of x (which ranges from 0 to L) Would this be somewhere along the right track?: radius of disk, rdisk=(3r0/2)(x/L) + r0/2 This way, at x=0 (the bottom of the bar) the radius is equal to r0/2 and at x=L (the top of the bar) the radius is equal to 2r0 So then I would also have to differentiate that I can replace dx with dr, but then I'm sure I would still have x in the integral, which leaves me with two variables. Am I at least on the right track? Where would I go next? 5. Dec 1, 2013 ### tiny-tim suppose you had n discs in series, of areas A1 … An (and all of the same thickness, ∆x) what would the formula be for the total resistance R?​ (and i'm going out now ) 6. Dec 1, 2013 ### Staff: Mentor Very nice reasoning. This is exactly what you should do. 7. Dec 1, 2013 ### rude man You are very much on the right track. So now you have r(x), what is A(x)? A(x) contains r0 only, which is a constant. So you integrate with respect to x only. You never integrate w/r/t r. 8. Dec 1, 2013 ### Staff: Mentor Actually, you could do it either way. For example, dx=((2L)/(3r0))dr
2017-08-18T21:27:41
{ "domain": "physicsforums.com", "url": "https://www.physicsforums.com/threads/can-i-integrate-to-find-resistance-of-an-object-of-increasing-radius.725780/", "openwebmath_score": 0.8271982669830322, "openwebmath_perplexity": 1607.7665448174346, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.9835969703688159, "lm_q2_score": 0.853912747375134, "lm_q1q2_score": 0.8399059912774939 }
https://math.stackexchange.com/questions/2466939/finding-the-probability-that-a-team-roster-contains-ted-and-vanessa
# Finding the probability that a team roster contains Ted and Vanessa A school Science Fair team will consist of 2 male students, two female students and one alternate. The alternate can be of either sex. There are $4$ males (including Ted) and $5$ females (including Vanessa) trying out for the team. A team roster is a list of five students chosen without mention of which one of the five will be the alternate. If the five students are chosen randomly from among the nine trying out, find the probability that the team roster contains Ted and Vanessa. I tried solving it by finding the situations where we pick 2 males out of 3 and 1 female out of 4 and 1 male out of 3 and 2 females out of 4 to find the possible outcomes and divided them with the total number of outcomes. So i got $(3*4+3*6)/300$ which seems to be wrong as the answer is 3/10 • What have you attempted? Where are you stuck? – N. F. Taussig Oct 11 '17 at 2:16 • Please edit your question to show how you got your answer. That will make it easier to see where you made your error. – N. F. Taussig Oct 11 '17 at 2:18 • i edited the question to show what i got – Dhruv Raghunath Oct 11 '17 at 2:23 • Your numerator is correct. You made your error in the denominator. – N. F. Taussig Oct 11 '17 at 2:27 A team roster consists of three males and two females or two males and three females. Since there are four male and five female students available, the number of possible team rosters is $$\binom{4}{3}\binom{5}{2} + \binom{4}{2}\binom{5}{3}$$ As you observed, if both Ted and Vanessa are selected, a team with three males and two females can be obtained by selecting two of the other three males and one of the other four females, and a team with two males and three females can be obtained by selecting one of the other three males and two of the other four females. Hence, the number of favorable cases is $$\binom{3}{2}\binom{4}{1} + \binom{3}{1}\binom{4}{2}$$ Therefore, the desired probability is $$\frac{\dbinom{3}{2}\dbinom{4}{1} + \dbinom{3}{1}\dbinom{4}{2}}{\dbinom{4}{3}\dbinom{5}{2} + \dbinom{4}{2}\dbinom{5}{3}}$$
2020-10-29T11:34:24
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2466939/finding-the-probability-that-a-team-roster-contains-ted-and-vanessa", "openwebmath_score": 0.5665045976638794, "openwebmath_perplexity": 144.02782458710973, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9835969636371976, "lm_q2_score": 0.8539127529517043, "lm_q1q2_score": 0.8399059910143768 }
http://math.stackexchange.com/questions/103015/chance-of-meeting-in-a-bar/103034
# Chance of meeting in a bar Two people have to spend exactly 15 consecutive minutes in a bar on a given day, between 12:00 and 13:00. Assuming uniform arrival times, what is the probability they will meet? I am mainly interested to see how people would model this formally. I came up with the answer 50% (wrong!) based on the assumptions that: • independent uniform arrival • they will meet iff they actually overlap by some $\epsilon > 0$ • we can measure time continuously but my methods felt a little ad hoc to me, and I would like to learn to make it more formal. Also I'm curious whether people think the problem is formulated unambiguously. I added the assumption of independent arrival myself for instance, because I think without such an assumption the problem is not well defined. - The $\epsilon$ stuff is unnecessary. If we model the process by assuming independent arrival times, each uniformly distributed in a specific interval of length $45$ minutes, then the probability that B arrives xactly when A leaves is $0$. –  André Nicolas Jan 27 '12 at 17:28 actually I think the 37.5% is wrong, it doesn't take into account that you cannot arrive past min 45 ! I m amending my answer to 50% –  Beltrame Jan 27 '12 at 17:48 My quick calculation gives $5/9$. –  André Nicolas Jan 27 '12 at 18:13 This is a great question to answer graphically. First note that the two can't arrive after 12:45, since they have to spend at least 15 minutes in the bar. Second, note that they meet if their arrival times differ by less than 15 minutes. If we plot the arrival time of person 1 on the x axis, and person 2 on the y axis, then they meet if the point representing their arrival times is between the two blue lines in the figure below. So we just need to calculate that area, relative to the area of the whole box. The whole box clearly has area $$45 \times 45 = 2025$$ The two triangles together have area $$2\times \tfrac{1}{2} \times 30 \times 30 = 900$$ Therefore the probability of the friends meeting is $$(2025-900)/2025 = 1125/2025 = 5/9$$ - $$\text{chance they meet} = \frac{\text{green area}}{\text{green area + blue area}} = \frac{45^2 - 30^2}{45^2}$$ - +1 for minimalism! –  Chris Taylor Jan 28 '12 at 0:56 I'd say that each of them arrives at some time uniformly distributed on [12:00, 12:45], where the times are independent. They meet if their arrival times differ by less than fifteen minutes. In the interest of not having annoying numbers all over the place, measure time in units of fifteen minutes, starting at noon. Let the first person's arrival time be $X$ and the second person's arrival time be $Y$. Then $X$ and $Y$ are independent and uniform on $[0,3]$ and we want $P(|X-Y|<1)$. Then this becomes a geometry problem. The area in the square $[0,3] \times [0,3]$ which satisfies $|x-y|<1$ is $5$; the area of the whole square is $9$; the answer is $5/9$. - Out of curiosity, is there a straightforward non-geometric proof? –  user2468 Jan 27 '12 at 18:57 You could justify $\iint_{0\le X,Y\le 3;|X-Y|<1}\mathrm{d}X\mathrm{d}Y/\iint_{0\le X,Y\le 3}\mathrm{d}X\mathrm{d}Y$ on non-geometrical grounds, but the easiest way to do that first integral is geometrically. So I think trying to leave geometry out of the proof entirely is just making it more complicated than it needs to be. –  David Z Jan 27 '12 at 21:03 @J.D. The answer $$\frac{5}{9}=1-\frac{4}{9}=1-\left(\frac{2}{3}\right)^2$$ is so reminiscent of $$1-P(A^c)P(B^c)=P(A)+P(B)-P(A)P(B)=P(A\cup B)$$ where $A$ and $B$ are independent events of probability $\frac{1}{3}$ that I too wonder if there is a simple non-geometric argument that we are all overlooking. –  Dilip Sarwate Jan 28 '12 at 17:22 I had a hard time envisioning both A and B times simultaneously, so I considered the probability as a function of A's arrival time. Given: both arrival times are in the range 12:00-12:45, so A can arrive at any time in those 45 minutes. If A arrives at 12:00, B is met iff B arrives in the first 15 minutes, so the probability is 1/3. If A arrives at 12:15, B can arrive any time from 0-30 minutes, so p = 2/3. This value of 2/3 remains until 12:30, because there remains a 30 minute window that their times could overlap. After 12:30, p decreases until it reaches 1/3 at 12:45 (symmetric to the condition at 12:00). Here is a graph (not as pretty as above, but I thought I'd give google docs drawing a try): not included because this is my first math post. LINK: graph of p(A meets B | A's arrival time) The shaded portion of the first and third segments are half the area of that segment, the middle is 2/3, so the total area is $$p = {1\over 3} \times ({1\over 2} + {2\over 3} + {1\over 2}) = {1 \over 3} \times {5\over 3} \ = {5\over 9}$$ - Here is a simple qbasic simulation of the situation: The answer yielded over 1 million trials was 0.5555 ~ 5/9 CLS RANDOMIZE TIMER count = 0 N = 1000000 FOR i = 1 TO N LET x = (RND * 45 + 1) LET y = (RND * 45 + 1) tx = x + 15 ty = y + 15 IF ABS(tx - ty) < 15 THEN count = count + 1 END IF NEXT i PRINT count / N - I downvoted you. What you posted is not an acceptable within the scope & purpose for math.stackexchange. Empirical proofs are only acceptable when there are no mathematical explanations. Please read the answers above. –  user2468 Jan 28 '12 at 18:24 thanks, I should have also used a simulation to give my initial (wrong) answer a sanity check. I was looking for the reasoning behind a rigorous answer though. For that I find empirical methods less useful. –  Beltrame Jan 28 '12 at 20:35 @J.D.: I think your words are unnecessarily harsh. I'd certainly expect an empirical answer to receive fewer votes than an exact one (when one exists), but I don't think that makes empirical answers "not acceptable" on this site. –  Cam McLeman Feb 2 '12 at 15:42 @CamMcLeman I was trying to leave an explanation on why I downvoted this answer. In any case, thank you for pointing this out to me, and I apologize to if my words are inappropriate. –  user2468 Feb 2 '12 at 16:17 Is this BASIC? Wow, that's a blast from the past. –  Chris Taylor Feb 7 '12 at 9:30 Rather than measure time continuously, lets start with discrete time to try to get a handle on an approach. Divide the time into n equal minutes: d, 2d, 3d, ...,nd where nd= 1 hr. = 60 min. The first person arrives at time jd. Ignoring end points, the probability that the next person arrives within 15d of that time is (j-15)d to (j+15)d or 30d. Since j can be any of n numbers we have, ignoring end points, the probability is 30d/60d = 50%. That gives us an approach, but we have to take into account the end points, i.e. the time restriction. Well 1/n times the arrival will be at 1d and the sum will be restricted to d to 16d or just 15d. Next is arrive at 2d and sum is 16d, etc. So, instead of a constant function of 30d, we have a ramp function starting at 15d going up to 30d, staying there for awhile and going back down to 15d. Add those up with the proper weights. - For general case, n people or different waiting time this link will be of some help. -
2015-08-30T23:30:28
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/103015/chance-of-meeting-in-a-bar/103034", "openwebmath_score": 0.8207310438156128, "openwebmath_perplexity": 526.9146247216684, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9835969655605173, "lm_q2_score": 0.8539127510928476, "lm_q1q2_score": 0.8399059908283583 }
https://math.stackexchange.com/questions/3194560/using-induction-to-prove-a-sequence-a-1-1-and-a-n1-3-frac1a-n-is-inc
# Using induction to prove a sequence $a_1=1$ and $a_{n+1}=3-\frac{1}{a_n}$ is increasing I have a sequence defined by $$a_1=1$$ and $$a_{n+1}=3-\frac{1}{a_n}$$. I need to use induction to show that the sequence is increasing and $$a_n<3$$ for all $$n$$. Also to deduce that $$a_n$$ is convergence and find its limit. So far I have found: $$a_n and $$a_{n+1}>0$$ Then $$a_{n+1}=3-\frac{1}{a_n}$$ with $$a_{n+2}=3-\frac{a_n}{3a_n-1}$$ But not really sure how to go any further even if this is the right way to go in the first place? Any input would be greatly be appreciated! You have already done most of the work. By showing that $$1 \leq a_n < a_{n+1} < 3$$ where $$n \in \mathbb{Z}_+$$, you have demonstrated that the sequence is increasing and bounded above by $$3$$. Now the Monotone Convergence Theorem says that any increasing sequence that is bounded above converges; indeed it converges to the supremum of $$\{a_n\}_{n \in \mathbb{Z}_+}$$. So you now know that $$\lim\limits_{n \to \infty} a_n = \alpha \in \mathbb{R}$$ for some $$\boxed{1 \leq \alpha \leq 3}$$ To find $$\alpha$$, note that $$f(x) = 3 - \frac{1}{x}$$ is a continuous real valued function for real $$x > 0$$. So, by continuity, and the fact that $$\alpha > 0$$, we can put limits inside the function like so: $$\lim\limits_{n \to \infty}f(a_n) = f(\lim\limits_{n \to \infty}a_n)$$ But the LHS is just $$\lim\limits_{n \to \infty}f(a_n) = \lim\limits_{n \to \infty}(3 - \frac{1}{a_n}) = \lim\limits_{n \to \infty} a_{n + 1} = \alpha$$ while the RHS is just $$f(\lim\limits_{n \to \infty}a_n) = f(\alpha) = 3 - \frac{1}{\alpha}$$. So, putting LHS $$=$$ RHS we get $$\alpha = 3 - \frac{1}{\alpha}$$ $$\boxed{\alpha^2 - 3 \alpha + 1 = 0}$$ Now, solve this quadratic equation to get the value of $$\alpha$$. You will get two values but only one of them is the answer. See if you can eliminate the wrong one using the properties of $$\alpha$$. • Thank you very much! – James O'dare Apr 20 '19 at 11:54 • No problem, you're welcome. – 0XLR Apr 20 '19 at 11:56 Let $$P(n)$$ be the assertion “$$a_n\in\left[1,\frac{3+\sqrt5}2\right)$$ and $$a_{n+1}>a_n$$”. If $$n=1$$, then this is true, since $$a_1=1$$ and $$a_2=2>1=a_1$$. Let $$n\in\mathbb N$$ and assume that $$P(n)$$ holds. Then: • $$a_{n+1}=3-\frac1{a_n}<3$$. since $$a_n\geqslant1>0$$; • $$a_{n+1}\geqslant1$$, since $$a_{n}\geqslant1$$ and so $$3-\frac1{a_n}\geqslant3-\frac11=2$$. • $$a_{n+2}-a_{n+1}=3-\dfrac1{a_{n+1}}-a_{n+1}=\dfrac{3a_{n+1}-1-{a_{n+1}}^2}{{a_{n+1}}^2}=\dfrac{\varphi(a_{n+1})}{{a_{n+1}}^2}$$, where $$\varphi(x)=-x^2+3x-1$$. But the roots of the quadratic polynomial $$\varphi(x)$$ are $$\dfrac{3\pm\sqrt5}2$$ and so, since $$a_{n+1}$$ is between them and the coefficient of $$x^2$$ in $$\varphi(x)$$ is negative, $$\varphi(a_{n+1})>0$$. So, $$P(n+1)$$ is proved. What I wrote above is an inductive proof of the fact that we always have $$P(n)$$. And it is very easy now to conclude that $$\lim_{n\to\infty}a_n=\dfrac{3+\sqrt5}2$$. • Great explanation thank you – James O'dare Apr 20 '19 at 11:54
2020-07-16T04:27:31
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3194560/using-induction-to-prove-a-sequence-a-1-1-and-a-n1-3-frac1a-n-is-inc", "openwebmath_score": 1.0000097751617432, "openwebmath_perplexity": 943.1229451802467, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9881308775555446, "lm_q2_score": 0.849971181358171, "lm_q1q2_score": 0.8398827693323725 }
http://mathhelpforum.com/calculus/24568-area-polar-coordinates-2-a.html
# Math Help - Area in Polar Coordinates 2 1. ## Area in Polar Coordinates 2 Ok so the equation is r= 6 +4 sin theta Its is a limacon so the area will be symmetrical from 0 to pi/2 Plugging this into the area formula I get Integral (6+4 sin theta)^2 Integral (36 + 48 sin theta + 16 sin^2 theta) Integral (36 + 48 sin theta + 16 [(1-cos 2 theta)/2] Integral (36 + 48 sin theta + 8 (1 - cos 2 theta) Integral (36 + 48 sin theta + 8 - 8 cos 2 theta) Integral (44 + 48 sin theta - 8 cos 2 theta) which gives me 44 theta - 48 cos theta - 8 sin 2 theta + C I worked it out and I am still unable to arrive at the answer. Can anyone tell me what I'm doing wrong? 2. Hello, shogunhd! Find the area enclosed by: . $r \:= \:6 +4\sin\theta$ It is a limacon, symmetric to the "y-axis". We can integrate from $-\frac{\pi}{2}$ to $\frac{\pi}{2}$ . . . and double. We have: . $A \;=\;2 \times \frac{1}{2}\int^{\frac{\pi}{2}}_{\text{-}\frac{\pi}{2}} (6 + 4\sin\theta)^2\,d\theta$ The function is: . $36 + 48\sin\theta + 16\sin^2\!\theta \;=\;36 + 48\sin\theta + 16\left(\frac{1-\cos2\theta}{2}\right)$ . . $= \;36 + 48\sin\theta + 8 - 8\cos2\theta \;=\;44 + 48\sin\theta - 8\cos2\theta$ The integral is: . $A \;\;=\;\;\int^{\frac{\pi}{2}}_{\text{-}\frac{\pi}{2}}\left(44 + 48\sin\theta - 8\cos2\theta\right)\,d\theta \;\;=\;\;44\theta - 48\cos\theta - 4\sin2\theta\,\bigg|^{\frac{\pi}{2}}_{\text{-}\frac{\pi}{2}}$ . . $= \;\;\bigg[44\left(\frac{\pi}{2}\right) - 48\cos\left(\frac{\pi}{2}\right) - 4\sin(\pi)\bigg] - \bigg[44\left(\text{-}\frac{\pi}{2}\right) - 48\cos\left(\text{-}\frac{\pi}{2}\right) - 4\sin(-\pi)\bigg]$ . . $= \;\;\bigg[22\pi - 0 - 0\bigg] - \bigg[-22\pi - 0 - 0\bigg] \;\;=\;\;\boxed{44\pi}$ 3. Why is this doubled though? If the integral is between $\pi/2 and -\pi/2$ isn't that for the entire region?
2014-07-30T21:31:57
{ "domain": "mathhelpforum.com", "url": "http://mathhelpforum.com/calculus/24568-area-polar-coordinates-2-a.html", "openwebmath_score": 0.9464559555053711, "openwebmath_perplexity": 1279.784466357425, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9881308796527183, "lm_q2_score": 0.8499711794579723, "lm_q1q2_score": 0.8398827692372647 }
https://byjus.com/question-answer/a-variable-straight-line-drawn-through-the-point-of-intersection-of-lines-displaystyle-frac-x/
Question # A variable straight line drawn through the point of intersection of lines $$\displaystyle \frac{x}{a} + \frac{y}{b} = 1$$ and $$\displaystyle \frac{x}{b} + \frac{y}{a} = 1$$, meets the coordinate axes at A and B. Then the locus of the mid-point of AB is A xy(a+b)=ab(x+y) B 2xy(ab)=ab(x+y) C 2xy(ab)=ab(xy) D 2xy(a+b)=ab(x+y) Solution ## The correct option is D $$2xy (a + b) = ab(x + y)$$we have,$$\dfrac { x }{ a } +\dfrac { y }{ b } =1\quad and\quad \dfrac { x }{ b } +\dfrac { y }{ a } =1$$$$\Rightarrow bx+ay-ab=0\longrightarrow \left( 1 \right)$$$$and, \, ax+by-ab=0\longrightarrow \left( 2 \right) \\$$Equation of line through their point of intersection will be given by:$$\left( bx+ay-ab \right) +k\left( ax+by-ab \right) =0$$where $$k$$ is constant$$\Rightarrow x\left( b+ak \right) +y\left( a+bk \right) -ab\left( k-1 \right) =0$$Line meet $$x$$-axis at $$A$$, hence for $$A$$, $$y=0$$$$\Rightarrow x\left( b+ak \right) -ab\left( k-1 \right) =0$$$$\Rightarrow x=\dfrac { ab\left( k-1 \right) }{ \left( b+ak \right) }$$so, coordinate of $$A$$ is $$\left( \dfrac { ab\left( k-1 \right) }{ \left( b+ak \right) } ,0 \right)$$Line meets $$y$$-axis at $$B$$, hence for $$B$$, $$x=0$$$$\Rightarrow y\left( a+bk \right) -ab\left( k-1 \right) =0$$$$\Rightarrow y=\dfrac { ab\left( k-1 \right) }{ \left( a+bk \right) }$$so, coordinate of $$B$$ is $$\left( 0,\dfrac { ab\left( k-1 \right) }{ \left( a+bk \right) } \right)$$Let $$(h,m)$$ be midpoint of $$AB$$, hence$$h=\dfrac { \dfrac { ab\left( k-1 \right) }{ \left( b+ak \right) } +0 }{ 2 }$$$$\Rightarrow k=\dfrac { b }{ a } \left( \dfrac { 2h+a }{ b-2h } \right) \longrightarrow (3)\\ and,\quad m=\dfrac { 0+\dfrac { ab\left( k-1 \right) }{ a+bk } }{ 2 }$$$$\Rightarrow k=\dfrac { a }{ b } \left( \dfrac { 2m+b }{ a-2m } \right) \longrightarrow \left( 4 \right)$$From (3) and (4) we get$$\Rightarrow\dfrac { b }{ a } \left( \dfrac { 2h+a }{ b-2h } \right) =\dfrac { a }{ b } \left( \dfrac { 2m+b }{ a-2m } \right)$$To get equation of locus we take $$h\rightarrow x\quad and\quad m\rightarrow y$$$$\Rightarrow \dfrac { b }{ a } \left( \dfrac { 2x+a }{ b-2x } \right) =\dfrac { a }{ b } \left( \dfrac { 2y+b }{ a-2y } \right)$$$$\Rightarrow 2xy\left( a+b \right) =ab\left( x+y \right)$$Maths Suggest Corrections 0 Similar questions View More People also searched for View More
2022-01-20T10:53:20
{ "domain": "byjus.com", "url": "https://byjus.com/question-answer/a-variable-straight-line-drawn-through-the-point-of-intersection-of-lines-displaystyle-frac-x/", "openwebmath_score": 0.9444113373756409, "openwebmath_perplexity": 602.0467872974856, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9881308796527184, "lm_q2_score": 0.8499711794579723, "lm_q1q2_score": 0.8398827692372647 }
http://linear.ups.edu/fcla/section-LC.html
In Section VO we defined vector addition and scalar multiplication. These two operations combine nicely to give us a construction known as a linear combination, a construct that we will work with throughout this course. DefinitionLCCVLinear Combination of Column Vectors Given $n$ vectors $\vectorlist{u}{n}$ from $\complex{m}$ and $n$ scalars $\alpha_1,\,\alpha_2,\,\alpha_3,\,\ldots,\,\alpha_n\text{,}$ their linear combination is the vector \begin{equation*} \lincombo{\alpha}{u}{n} \end{equation*} So this definition takes an equal number of scalars and vectors, combines them using our two new operations (scalar multiplication and vector addition) and creates a single brand-new vector, of the same size as the original vectors. When a definition or theorem employs a linear combination, think about the nature of the objects that go into its creation (lists of scalars and vectors), and the type of object that results (a single vector). Computationally, a linear combination is pretty easy. Our next two examples are key ones, and a discussion about decompositions is timely. Have a look at Proof Technique DC before studying the next two examples. With any discussion of Archetype A or Archetype B we should be sure to contrast with the other. There is a lot going on in the last two examples. Come back to them in a while and make some connections with the intervening material. For now, we will summarize and explain some of this behavior with a theorem. Proof In other words, this theorem tells us that solutions to systems of equations are linear combinations of the $n$ column vectors of the coefficient matrix ($\vect{A}_j$) which yield the constant vector $\vect{b}\text{.}$ Or said another way, a solution to a system of equations $\linearsystem{A}{\vect{b}}$ is an answer to the question “How can I form the vector $\vect{b}$ as a linear combination of the columns of $A\text{?}$” Look through the Archetypes that are systems of equations and examine a few of the advertised solutions. In each case use the solution to form a linear combination of the columns of the coefficient matrix and verify that the result equals the constant vector (see Exercise LC.C21). SubsectionVFSSVector Form of Solution Sets¶ permalink We have written solutions to systems of equations as column vectors. For example Archetype B has the solution $x_1 = -3,\,x_2 = 5,\,x_3 = 2$ which we write as \begin{equation*} \vect{x}=\colvector{x_1\\x_2\\x_3}=\colvector{-3\\5\\2}\text{.} \end{equation*} Now, we will use column vectors and linear combinations to express all of the solutions to a linear system of equations in a compact and understandable way. First, here are two examples that will motivate our next theorem. This is a valuable technique, almost the equal of row-reducing a matrix, so be sure you get comfortable with it over the course of this section. This is such an important and fundamental technique, we will do another example. Did you think a few weeks ago that you could so quickly and easily list all the solutions to a linear system of 5 equations in 7 variables? We will now formalize the last two (important) examples as a theorem. The statement of this theorem is a bit scary, and the proof is scarier. For now, be sure to convice yourself, by working through the examples and exercises, that the statement just describes the procedure of the two immediately previous examples. Proof Note that both halves of the proof of Theorem VFSLS indicate that $\alpha_i=\vectorentry{\vect{x}}{f_i}\text{.}$ In other words, the arbitrary scalars, $\alpha_i\text{,}$ in the description of the set $S$ actually have more meaning — they are the values of the free variables $\vectorentry{\vect{x}}{f_i}\text{,}$ $1\leq i\leq n-r\text{.}$ So we will often exploit this observation in our descriptions of solution sets. Theorem VFSLS formalizes what happened in the three steps of Example VFSAD. The theorem will be useful in proving other theorems, and it it is useful since it tells us an exact procedure for simply describing an infinite solution set. We could program a computer to implement it, once we have the augmented matrix row-reduced and have checked that the system is consistent. By Knuth's definition, this completes our conversion of linear equation solving from art into science. Notice that it even applies (but is overkill) in the case of a unique solution. However, as a practical matter, I prefer the three-step process of Example VFSAD when I need to describe an infinite solution set. So let us practice some more, but with a bigger example. This technique is so important, that we will do one more example. However, an important distinction will be that this system is homogeneous. The next theorem tells us that in order to find all of the solutions to a linear system of equations, it is sufficient to find just one solution, and then find all of the solutions to the homogeneous system with the same coefficient matrix. This explains part of our interest in the null space, the set of all solutions to a homogeneous system. Proof After proving Theorem NMUS we commented (insufficiently) on the negation of one half of the theorem. Nonsingular coefficient matrices lead to unique solutions for every choice of the vector of constants. What does this say about singular matrices? A singular matrix $A$ has a nontrivial null space (Theorem NMTNS). For a given vector of constants, $\vect{b}\text{,}$ the system $\linearsystem{A}{\vect{b}}$ could be inconsistent, meaning there are no solutions. But if there is at least one solution ($\vect{w}$), then Theorem PSPHS tells us there will be infinitely many solutions because of the role of the infinite null space for a singular matrix. So a system of equations with a singular coefficient matrix never has a unique solution. Notice that this is the contrapositive of the statement in Exercise NM.T31. With a singular coefficient matrix, either there are no solutions, or infinitely many solutions, depending on the choice of the vector of constants ($\vect{b}$). The ideas of this subsection will appear again in Chapter LT when we discuss pre-images of linear transformations (Definition PI). Click to open 1 Earlier, a reading question asked you to solve the system of equations \begin{align*} 2x_1 + 3x_2 - x_3&= 0\\ x_1 + 2x_2 + x_3&= 3\\ x_1 + 3x_2 + 3x_3&= 7\text{.} \end{align*} Use a linear combination to rewrite this system of equations as a vector equality. 2 Find a linear combination of the vectors \begin{equation*} S=\set{\colvector{1\\3\\-1},\,\colvector{2\\0\\4},\,\colvector{-1\\3\\-5}} \end{equation*} that equals the vector $\colvector{1\\-9\\11}\text{.}$ 3 The matrix below is the augmented matrix of a system of equations, row-reduced to reduced row-echelon form. Write the vector form of the solutions to the system. \begin{equation*} \begin{bmatrix} \leading{1}&3&0&6&0&9\\ 0&0&\leading{1}&-2&0&-8\\ 0&0&0&0&\leading{1}&3 \end{bmatrix} \end{equation*} SubsectionExercises C21 Consider each archetype that is a system of equations. For individual solutions listed (both for the original system and the corresponding homogeneous system) express the vector of constants as a linear combination of the columns of the coefficient matrix, as guaranteed by Theorem SLSLC. Verify this equality by computing the linear combination. For systems with no solutions, recognize that it is then impossible to write the vector of constants as a linear combination of the columns of the coefficient matrix. Note too, for homogeneous systems, that the solutions give rise to linear combinations that equal the zero vector. Archetype A, Archetype B, Archetype C, Archetype D, Archetype E, Archetype F, Archetype G, Archetype H, Archetype I, Archetype J Solution C22 Consider each archetype that is a system of equations. Write elements of the solution set in vector form, as guaranteed by Theorem VFSLS. Archetype A, Archetype B, Archetype C, Archetype D, Archetype E, Archetype F, Archetype G, Archetype H, Archetype I, Archetype J Solution C40 Find the vector form of the solutions to the system of equations below. \begin{align*} 2x_1-4x_2+3x_3+x_5&=6\\ x_1-2x_2-2x_3+14x_4-4x_5&=15\\ x_1-2x_2+x_3+2x_4+x_5&=-1\\ -2x_1+4x_2-12x_4+x_5&=-7 \end{align*} Solution C41 Find the vector form of the solutions to the system of equations below. \begin{align*} -2 x_1 -1 x_2 -8 x_3+ 8 x_4+ 4 x_5 -9 x_6 -1 x_7 -1 x_8 -18 x_9 &= 3\\ 3 x_1 -2 x_2+ 5 x_3+ 2 x_4 -2 x_5 -5 x_6+ 1 x_7+ 2 x_8+ 15 x_9 &= 10\\ 4 x_1 -2 x_2+ 8 x_3+ 2 x_5 -14 x_6 -2 x_8+ 2 x_9 &= 36\\ -1 x_1+ 2 x_2+ 1 x_3 -6 x_4+ 7 x_6 -1 x_7 -3 x_9 &= -8\\ 3 x_1+ 2 x_2+ 13 x_3 -14 x_4 -1 x_5+ 5 x_6 -1 x_8+ 12 x_9 &= 15\\ -2 x_1+ 2 x_2 -2 x_3 -4 x_4+ 1 x_5+ 6 x_6 -2 x_7 -2 x_8 -15 x_9 &= -7 \end{align*} Solution M10 Example TLC asks if the vector \begin{equation*} \vect{w}=\colvector{13\\15\\5\\-17\\2\\25} \end{equation*} can be written as a linear combination of the four vectors \begin{align*} \vect{u}_1&=\colvector{2\\4\\-3\\1\\2\\9}& \vect{u}_2&=\colvector{6\\3\\0\\-2\\1\\4}& \vect{u}_3&=\colvector{-5\\2\\1\\1\\-3\\0}& \vect{u}_4&=\colvector{3\\2\\-5\\7\\1\\3}\text{.} \end{align*} Can it? Can any vector in $\complex{6}$ be written as a linear combination of the four vectors $\vect{u}_1,\,\vect{u}_2,\,\vect{u}_3,\,\vect{u}_4\text{?}$ Solution M11 At the end of Example VFS, the vector $\vect{w}$ is claimed to be a solution to the linear system under discussion. Verify that $\vect{w}$ really is a solution. Then determine the four scalars that express $\vect{w}$ as a linear combination of $\vect{c}\text{,}$ $\vect{u}_1\text{,}$ $\vect{u}_2\text{,}$ $\vect{u}_3\text{.}$ Solution
2020-08-12T05:55:28
{ "domain": "ups.edu", "url": "http://linear.ups.edu/fcla/section-LC.html", "openwebmath_score": 0.935863733291626, "openwebmath_perplexity": 301.78536559037275, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9881308807013051, "lm_q2_score": 0.849971175657575, "lm_q1q2_score": 0.8398827663732432 }
https://www.math10.com/forum/viewtopic.php?f=7&t=9671
# Is it linear or exponential growth Arithmetic and Geometric progressions. ### Is it linear or exponential growth The question is : In 2018, the population in China was 1,427,647,786. According to data, China’s population growth rate is 0.59% per year. What will the population be in China in 2021? A) 8,423,121 B) 1,436,070,908 C) 1,444,543,726 D) 1,452,917,152 E) 1,453,142,111 The book answer is (E). But I think it is linear growth because it is only 3 years. My solution is : The population in 2021 = 1427647786 + 142647786(.0059)3=1452917152 . which is in choice (D) not (E). ------------- Please , I need help. What is the mistake in my solution. Thank you very much. Guest ### Re: Is it linear or exponential growth "But I think it is linear growth because it is only three years." I have no idea why you think whether growth is linear or exponential depends on how long a time you are dealing with! "China's population growth rate is 0.59%" Since the growth rate is a constant, the growth must be exponential! The population in 2018 was 1,427,647,786. Since the population increased by 0.57% the next year, 2019, the population is (1.0057)(1,427,647,786)= 1,435,785,378 The next year, 2020, the population is (1.0057)(1435785378)= 1,443,969,355 The next year, 2021, the population is (1.0057)(1,443,969,355)= 1,452,199,980 That's closer to D than to E but it certainly is NOT linear! Guest ### Re: Is it linear or exponential growth Since I cannot edit on this board I have to repeat that post but with the correct 0.59% rather than 0.57%. "But I think it is linear growth because it is only three years." I have no idea why you think whether growth is linear or exponential depends on how long a time you are dealing with! "China's population growth rate is 0.59%" Since the growth rate is a constant, the growth must be exponential! The population in 2018 was 1,427,647,786. Since the population increased by 0.59% the next year, 2019, the population is (1.0059)(1,427,647,786)= 1,436,070,908 The next year, 2020, the population is (1.0059)(1,436,070,908)= 1,444,543,726 The next year, 2021, the population is (1.0059)(1,444,543,726)= 1,453,066,534 That is, of course, the same as $$(1,427,647,786)(1.0057)^3$$. That's not exactly E but it is close. And it is defintely NOT linear. "Linear growth" is when the increase is the same amount each year. "Exponential growth" is when the increase is the same percent each year. Guest ### Re: Is it linear or exponential growth I think linear not exponential because people not growth very rapidly as bacteria. The bacteria has exponential growth in few moments because the new generation make another newer generation. But people in 3 years, the new children cannot make another new children in 3 years. For this reason I think, in 3 years the linear growth is the more correct. Thank you very much. I still need your help and your idea. mahmoud1945 Posts: 1 Joined: Wed Aug 25, 2021 9:50 am Reputation: 0
2021-09-21T07:40:49
{ "domain": "math10.com", "url": "https://www.math10.com/forum/viewtopic.php?f=7&t=9671", "openwebmath_score": 0.5324238538742065, "openwebmath_perplexity": 1426.6156284556773, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9881308779050737, "lm_q2_score": 0.8499711756575749, "lm_q1q2_score": 0.8398827639965271 }
http://mbjo.buntfuchs-hamburg.de/probability-of-passing-a-test-by-guessing.html
# Probability Of Passing A Test By Guessing MULTIPLE CHOICE. Write a paragraph explaining the three types of probability. The probability a student gets 3, 4, or 5 correct answers by guessing (i. Probability of guessing a specified number of questions right (multiple choice)? A multiple choice test has 4 questions and 5 options for each question (20% probability of guessing a question right). GUESS rather than not respond at all. Consequently the test is untimed and has a different number of questions for each student. Modal Verbs of Probability. MATH 125 Probability Homework Problem 1. Re: What are the chances of passing ETG/ETS alcohol test!!!!!1 Well its been a week and a half now and nothing yet. 2 Summary Statistics 1. Drug testing example for conditional probability Suppose that a drug test for an illegaldrug is such that it is 98% accurate in the case of a user of that drug (e. Your customizable and curated collection of the best in trusted news plus coverage of sports, entertainment, money, weather, travel, health and lifestyle, combined with Outlook/Hotmail, Facebook. Top 15 Tips to Pass your Aptitude Test. 06, so in the second situation we have devised a test with less probability of passing if 5 or more correct answers are required but greater probability of passing if 4 or more correct answers are required. FLVS (Florida Virtual School) is an accredited, public, e-learning school serving students in grades K-12 online - in Florida and all over the world. What is the probability that a person will guess correct. How to calculate probability of event if student passed test? A standard admissions test was given at three locations. The probability A passes in the test is 2/3 and B fails is 3/5. to see how many pass attempts he makes before completing one pass. A true/false test has 100 questions. At Least One Working Calculator A statistics student plans to use a TI-84 Plus calcu- lator on her final exam. Divide this figure by the weight of the final exam to calculate the final exam grade required to pass the course. This is the "guessing penalty" in action. To pass the test a student must answer at least 9 questions correctly. Then the probability of guessing g is 2^-128. There's no penalty or subtraction of points for answering a question incorrectly. It is 100% FREE. Assuming the coin is fair (has the same probability of heads and tails), the chance of guessing correctly is 50%, so you'd expect half the guesses to be correct and half to be wrong. Find the probability of passing if the lowest passing grade is 6 correct out of 10. Pass definition, to move past; go by: to pass another car on the road. It's almost magical. A type II error, β, is the probability that the one fails to reject the null hypothesis when it’s false. Only years later, I realized that the chance of actually passing such an exam, by getting a result of 11/20 or better, is very low. A pass on the paper is obtained by answering 30 or more questions correctly. When I give a multiple choice test with numeric answers, I typically arrange my choices in ascending numeric value and certainly that is going to affect the distribution of the outcome. Examples on how to calculate conditional probabilities of dependent events, What is Conditional Probability, Formula for Conditional Probability, How to find the Conditional Probability from a word problem, examples with step by step solutions, How to use real world examples to explain conditional probability. Welcome to Corbettmaths! Home to 1000's of maths resources: Videos, Worksheets, 5-a-day, Revision Cards and much more. It can also be written as. In this paper, we presented a probabilistic model and an EM algorithm for evaluating component failure probability from masked binomial system testing data. If it is thrown three times, find the probability of getting a) three heads b) 2 heads and a tail c) at least one head. Modal Verbs of Probability. Bayes Theorem (Bayes Formula, Bayes Rule) The Bayes Theorem is named after Reverend Thomas Bayes (1701–1761) whose manuscript reflected his solution to the inverse probability problem: computing the posterior conditional probability of an event given known prior probabilities related to the event and relevant conditions. But I had another one recently come to the blog via the term "the probability that a person passes their driving test is 75%". Here's the exact answer: Let $X$ be the number of questions guessed correctly. That means that only about one out of 254 exams is going to be a passing exam. Find the probability of. (I'm not sure what to make of this, except perhaps statistics is a difficult subject to teach and therefore statistics lecturers deserve a pay rise. Need More Help on How to Solve Probability Problems? Ask a teacher. Each question has four choices. You will pass the next test. Passing your smog test isn't magic, it's science. The Binomial Model The binomial model provides probabilities for random experiments in which you are counting the number of successes that occur. As it can be seen, as the measured value approaches the limit, the probability of pass decreases. So the conditional probability P(Draw second heart|First card a heart) = 12/51. Is the probability, high enough to make it worth The risk for trying to pass instead of studying. By classifying all system tests into test categories based on component coverage, we not only simplify the model presentation but also greatly improve the efficiency of the algorithm. Items that Present the Greatest Achievement Gap Between Passing and Non-Passing TASC Test Examinees Data from the 2014 administration of the Test Assessing Secondary Completion™ was analyzed to identify skills in each content area that were most consistently demonstrated. 25, and that the results of successive tests are independent. Passing your driving test In order to get your driving licence and legally drive on your own in the UK, you have to pass both your theory and practical driving tests. If λ is the mean occurrence per interval, then the probability of having x occurrences within a given interval is:. Since all the answers are independent (the answer to one question has no bearing on the answers to the others), then this is the case with each question, so the chances of guessing all answers correctly is 1/3 × 1/3 × 1/3 = 1/27. This test measures the temperature, color, pH, specific gravity, and glucose and protein levels in the urine sample, and any abnormalities in these qualities suggests some form of cheating. 1 Answer to Passing a Test by Guessing A true/false test has 40 questions. Know the total number of test questions and time allowed for the entire test. The threshold value T max is 1 and the measurement uncertainty U is 0. of a reliability test. I’m a product owner in DWP Digital’s Data Science team, working on the Examine a Place digital service. Need More Help on How to Solve Probability Problems? Ask a teacher. Probability - Puzzles I am interested in finding out some specific information on the odds of rolling dice. Date: 07/08/99 at 18:13:25 From: Annette Darby Subject: Using binomial theorem to calculate probability An examination is comprised of n true-false questions. [Request] What are the chances of passing a 100 question multiple choice final (self. Conditional Probability. In probability terms, this is the conditional probability that the athlete fails the test given they are guilty, Pr(Fail | Guilty). Validity: The test must measure what the students are expected to know. 1 class clip. Jessica reckons she will increase her chances of passing by studying only one part of the work extremely well. The IRT approach recognizes that guessing is present in multiple choice examinations, and will therefore typically employ the a guessing parameter to account for this. Divide this figure by the weight of the final exam to calculate the final exam grade required to pass the course. c) The probability that x equals 1 is 0. 1 The Sequential Probability Ratio Test The SPRT is based on considering the likelihood ratio as a function of the number of observations. What are the chances of guessing 0,1,2,3, or all 4 questions right?. The threshold value T max is 1 and the measurement uncertainty U is 0. The basic idea is that the exam will provide you with a long and detailed scenario (typically a case study) and then ask a series of multiple choice questions that are all based on that scenario. For example, in a standard deck of playing cards (52 total cards), what is the likelihood (or probability) that you will choose an Ace just by choosing one card at random?. Example: Multiple-choice questions on a test each have 4 possible answers, one of which is correct. com for Teachers for Schools for Working Scholars for. A true/false test has 100 questions. Of the 194 Cleveland Clinic graduates used for the nomogram development, 175 (90. Free online learning and test practice to help you get the best score possible on the ACT test, and well on your way to college and career success. PT Ortho Questions: Pass the test without breaking the bank [Cody Mansfield, Christine Becks] on Amazon. We can define the probabilities of each of the outcomes using the probability mass function (PMF) described in the last section. So, ultimately, guessing C (or any letter!) will give you the correct answer only a statistical 25% of the time (20% on the math section). What is the probability of his guessing all answers correctly?. Probability - Starfish. Roll Back Number Line. 30 people predicted they would pass. On Feb 20, 2019. 1 class clip. Here's the exact answer: Let $X$ be the number of questions guessed correctly. The Percentile Rank puts your Scaled Score in relation to all other LSAT test takers. guessing more than 6 correct answers. In the previous blog, the CLEP study guide experts at SpeedyPrep gave you the first part of a recipe to pass any CLEP test, on any subject, at any time. MATH 125 Probability Homework Problem 1. A diagnostic test has 95% sensitivity (the probability a person with the condition tests positive = 0. The math Accuplacer Test is used as an entrance exam for students entering college. It is said that, all the 20 questions in the exam are true/false questions and the student answers by guessing. Each question has 5 options to choose from, of which only one is correct. And, assuming all options have an equal probability of being correct, student can at the leave have a minimum score of 0. Test-taking is as much a game of skill as a game of luck. guess the answer to each question (you may assume that the guesses are independent of each other). HPC Pack 2012 MS-MPI Redistributable Package, HPC Pack 2008 R2 MS-MPI Redistributable Package, HPC Pack 2008 MS-MPI Redistributable Package or HPC Pack 2008 Client Utilities. Average class size: 20 pupils. What is the probability of guessing the correct answer on any one question? Devise an event involving the selection of a random number that will result in this same probability. ; Zimmerman, Donald W. Sure, you'll pass eventually. is positive, then heart surgery (event H) is. So the probability that the sample mean will be >22 is the probability that Z is > 1. What is the probability of getting one correct answer? Algebra Linear Inequalities and Absolute Value Theoretical and Experimental Probability. A test consists of 10 multiple choice questions, each with five possible answers, one of which is correct. 2015-06-03T14:55:00Z examiners then use statistical analysis to determine the probability that the test taker is lying. Testing irregularities. X-linked recessive inheritance: Because of the difference in sex chromosomes, the probability of passing on an X-linked recessive disorder also differs between men and women. After approximately 8 to 11 weeks, the SOA will release the list of passing candidates' ID numbers. It has been shown that there is at least a 95% probability of passing the USP <905> test if coverage is at least 98. e) To pass the test, a student has to answer at least 6 questions correctly. The Examine a Place prototype. The probability that a girl is 2nd in line, given that the 1st is a girl, is (2/6) since 2 of the remaining 6 children are girls. By the pigeonhole principle, the probability reaches 100% when the number of people reaches 367 (since there are only 366 possible birthdays, including February 29). X is binomial with n = 50, p = 0. 2012 Oct 16;17:18810. The court weighs up the evidence and decides which version is most probably true. OC curves for three sampling plans In addition to the OC curves, the tool also displays the probability of acceptance (pass test) and rejection (fail test) for the AQL and RQL values if they are entered (see Figure 7). Read SUT Part 2 from the story Probability Reviewer by ReneeIsMe28 (Renee Anne Salinas Cayabyab) with 4,460 reads. 34 AIDS TEST A test for the presence of antibodies to the AIDS virus in blood has probability 0. Probability has been introduced in Maths to predict how likely events are to happen. Assume that 9 questions are answered by guessing. Consider a simple password scheme using only two lowercase letters. The test design below describes general testing information. Betty didn't know anything, and her test score is 0 - there's nothing wrong with that. The data were band-pass filtered between 0. The Armed Services Vocational Aptitude Battery (ASVAB) is the most widely used multiple aptitude test battery in the world. Passing a chemistry exam can seem like an overwhelming task, but you can do this! Here are the top 10 tips for passing a chemistry exam. If you're stumped on a hard test question, guessing strategically can improve your chances of choosing the right answer. example Find the probability that you pass a 10 question multiple choice test where each question has four choices, if you guess at all the answers. • Probability and Statistics for Engineering and the Sciences by Jay L. (Assume you're not ­penalized for. For example, on a test with k 4-option MC items, the probability of all items being guessed correctly is, which is asymptotically equivalent to zero when k is reasonably large. Set this probability by dragging the bars below. What is the probability of at least 6 correct answers?. Are the events mutually exclusive? What is the probability of passing either test on the first attempt? 5. This was accomplished by adjusting the HITS dataset to account for an estimated underreporting rate during development of the risk curve. But that's not on the board! What if instead, the title above the photo was "Best social psych question ever?" Then you'd be in the realm of Zimbardo and all the other peer pressure experiements …. By classifying all system tests into test categories based on component coverage, we not only simplify the model presentation but also greatly improve the efficiency of the algorithm. Re: What are the chances of passing ETG/ETS alcohol test!!!!!1 Well its been a week and a half now and nothing yet. To calculate probabilities certain assumptions—like a base probability of color blindness or a class size—have to be taken. How much Love Skill do you have? Created By Elizabeth Derryberry. We already established that the probability of an exact age difference between the first and second child of 379 days is 0. Watch this artistic visualization of your odds of passing a test if you don't know any of the answers. 0588 of passing - nearly the same probability as the 20-question test with a requirement of 14 or more correct answers. questions correctly. Know the total number of test questions and time allowed for the entire test. Conditional probability is written P (A|B), and is read the probability of A, given B. Plinko Probability - The Probability is Right. if you were a betting man, you would bet that out of 3 questions, he would answer 1 or 2 correctly because those have the highest probability of occurring giving you a 75% chance of being right. Test and improve your knowledge of Data Analysis, Probability & Statistics with fun multiple choice exams you can take online with Study. Odds and probability is pretty easy! Just remember to use a colon instead of a fraction. the lab test is positive 'vith probability. If his music player randomly selects a song, what is the probability that it is not a dance song?. Example 10: The probability that Bob will pass the Math course is 0. The best way is to review the 240 Tutoring test breakdown materials and practice questions. Have you ever taken a test and discovered you have no choice but to guess on a couple of problems? In this example problem, we are considering the probability of two independent events occurring. balance of probabilities: the standard of proof in civil cases, demanding that the case that is the more probable should succeed. So the first two questions could be guessed correctly 1/5xx1/5=(1/5)^2 of the time. Now the probability of passing T1 has changed because you only have to guess correctly on one of the two remaining questions in the ï¬ rst section, a… What is one specific theme discussed in the poems "Telephone Conversation" by Sole Woyinka and "On The Subway" by Sharon Olds. The math Accuplacer Test is used as an entrance exam for students entering college. 25, and that the results of successive tests are independent. To argue that. none of the above 20. Judgments cannot be made solely on the basis of intuition, haphazard guessing, or custom (Sax, 1989). ; Zimmerman, Donald W. If we assume that guessing any question correctly is independent of all others and if we assume that you have a 20% chance on each question (one correct an. I guess I was just looking for insight into the methodology Rosh uses to come up with the numbers. Slide 17 of 22. The probability that an individual who fails on the first test will pass on the second try is. That number dropped between July 1 - September 30, 2010, with only 84% of test-takers passing. Raw Score to Scaled Score Conversions. The higher the probability level, the higher the PSAT/NMSQT score needed, and the more likely that the selected students will earn a 3 or higher or a 4 or higher. However, we can safely say that aiming to be in the top 20% of the candidates will often allow you to pass the test. Although the American Board of Internal Medicine (ABIM) certification is valued as a reflection of physicians’ experience, education, and expertise, limited methods exist to predict performance in the examination. The value in the t‐ table for t. Math 216 Spring 2008 Answers to Clicker Questions §1. The Armed Services Vocational Aptitude Battery (ASVAB) is the most widely used multiple aptitude test battery in the world. That's small. 98 in the case that the tested. 100% Pass Huawei - H35-462 - Valid HCS-5G RF Advanced V1. Passing your smog test isn't magic, it's science. I feel that I may be multiplying the wrong. The person taking the test does not read the questions; he just answers the questions randomly. Choose the one alternative that best completes the statement or answers the question. If a student randomly guesses, what is the probability that the student will pass the test?. In the previous blog, the CLEP study guide experts at SpeedyPrep gave you the first part of a recipe to pass any CLEP test, on any subject, at any time. Probability of guessing 50% of N number of coin tosses. So, ultimately, guessing C (or any letter!) will give you the correct answer only a statistical 25% of the time (20% on the math section). Passing The ASVAB 10 Secrets For Passing The Test. Random is a website devoted to probability, mathematical statistics, and stochastic processes, and is intended for teachers and students of these subjects. Andrew has 45 rock songs, 82 dance songs and 65 rap songs on his play list. In contrast, the Rasch approach assumes guessing adds random noise to the data. Be careful if you are using sports teams odds or betting odds. probability of winning is 2/3. Passing your smog test isn't magic, it's science. Set books The notes cover only material in the Probability I course. That should be choices. The probability that “J” will pass the exam is a. In Figure 1 several cases of test results are shown, together with their associated Probability of Pass. The assessor is told which sensory attribute to focus on when making her choice. Test your calculation of probability. So the first two questions could be guessed correctly 1/5xx1/5=(1/5)^2 of the time. Suppose an individual applying to a college determines that he has an 80% chance of being accepted, and he knows that dormitory housing will only be provided for 60% of all of the accepted students. a probability of 1/4 means one chance out of four, or 25%. The minimum passing score is the minimum number of correctly answered questions that is required to pass the exam. 40 C) 40 D) 4 1) 2) "It will definitely turn dark tonight. 4 GUESSING ON A TRUE-FALSE QUIZ Suppose that James guesses on each question of a 50-item true-false quiz. 18 Our analysis shows that the total number of questions strongly influences the specificity of the MCQ test, although in both binomial probability distributions and Monte Carlo simulations, increasing the number of. We already established that the probability of an exact age difference between the first and second child of 379 days is 0. Welcome to Corbettmaths! Home to 1000's of maths resources: Videos, Worksheets, 5-a-day, Revision Cards and much more. chance of passing the NCLEX-PN® on the first. How to Pass the CBEST. 44) 45) A test consists of 10 multiple choice questions, each with five possible answers, one of which is correct. The basic idea is that the exam will provide you with a long and detailed scenario (typically a case study) and then ask a series of multiple choice questions that are all based on that scenario. United States Citizenship and Immigration Services reports that as of March 2019, the overall national pass rate is 90%. Based on your answer, would it be a good idea not to study and depend on guessing. Probability - Starfish. How to calculate probability of event if student passed test? A standard admissions test was given at three locations. There's no penalty or subtraction of points for answering a question incorrectly. Probability of passing exam? Suppose I give you a list of 23 problems to study, from which I will randomly pick 14 questions for your first midterm exam. 7% total test-takers achieving the pass rate. The probability of obtaining a pass by randomly guessing the answer to each question should not exceed 0. Rather than a supplier giving us one (unbanded) cigar and guessing what it is (there aren't many Cuban cigars which share the same shape, so blind luck would play a part in any simple test like that) we tried a test to remove, to some degree, the chance of simply guessing correctly out of luck. Don't just assume you'll pass your driving test the first time. What is the probability of randomly guessing the correct answer on both problems? Now, the probability of guessing the correct answer on each problem. The exam consists of 10 true/false questions. When finished reviewing the various modal verbs, take the quiz—or have students take the quiz—after the examples. A major point of contention is the use of the guessing, or pseudo-chance, parameter. What is the probability of correctly guessing Arabella's password? _____ 12. This video is a guide to probability. Use the probability rule to decide whether it's usual or unusual to pass the test. Note that these test plans do not perform well for the given AQL and RQL. If you try to beat a drug test, it's critically important to also pass the adulteration test. guess the answer to each question (you may assume that the guesses are independent of each other). Marilyn stuck. Usually exams marking pattern is +4 for each correct answers and -1 for each negative. of test development and use, and presents measurement trends affecting validity of tests. If guessing is penalized, then do not guess on true-false questions and make an educated guess on multiple-choice questions only if you can narrow the possibilities down to two. Some of the questions are frankly bizarre. Probability is the chance or likelihood that an event will happen. Re: What are the chances of passing ETG/ETS alcohol test!!!!!1 Well its been a week and a half now and nothing yet. For goodness of fit we have the following hypothesis:H0 = The data is consistent with a specified reference distribution. Theoretically it actually stands at about 0. If she gets 7 or more correct, she passes. Comic was released in the October of 1939. We'll finish that recipe here, adding to your "cheat sheet" so you can pass CLEP exams with flying colors. Slide 17 of 22. Find the approximate probability that a person who is just guessing will pass the test. For the second question, since Abby knows the answers to $11$ of the $17$ questions and needs to answer at least $14$ correctly to pass the test, she needs to successfully guess at least $3$ of the other $16$ answers. The probability the second person doesn’t match the first person is 364/365. that 23 questions are answered by guessing. The probabilities of guessing a certain number of questions correctly are listed in the table below. More people --> more collisions with sharks, more hot dogs shoved down gullets. If it's homework that has you stumped, do your best to get it done. 25, false) TI83/84:. So it's going to be equal to 1/4 times 1/3 is 1/12. 45, and that of passing at least one of the two courses 0. We have a selection of great videos for use in the classroom. So the probability that the sample mean will be >22 is the probability that Z is > 1. Let's get some intuition around that. 6 points contributed from the final exam to pass the course. A student takes a 10-question, true or false exam and guesses on each question. Will it rain tomorrow? How likely is your favorite team to win the Super Bowl? Questions like these are answered through the mathematics of probability. 98 in the case that the tested. Hello all, Because some people contact me and demand an Excel file for calculating the probability of passing. Looking at a recent test with 15 problems, A was the correct answer 5 times, B 5 times, C 4 times, D 1 time. This service aims to help advisors in Local Enterprise Partnerships (LEPs) and Mayoral Combined Authorities (MCAs) explore the employment market by area. average score from guessing is (n-1)/n x 0 + 1/n x 1 = 1/n. If we are interested on p, a proportion or the probability of an event with 2 outcomes. Readers familiar with the basics of set theory such. Kind of like a princess! Build your ultimate salad and we'll guess which Disney Princess you truly are. In the previous blog, the CLEP study guide experts at SpeedyPrep gave you the first part of a recipe to pass any CLEP test, on any subject, at any time. The paired comparison test is a specified difference test. The probability that student A will fail a certain statistics examination is 0. What would you look like if you were a cartoon character? *UPDATED*. Eligible sophomores, juniors and seniors who register for the ACT® test between 9. What is the probability of guessing the correct answer on any one question? Devise an event involving the selection of a random number that will result in this same probability. And, assuming all options have an equal probability of being correct, student can at the leave have a minimum score of 0. If the archer shoots 6 arrows, a) Define the variable X. Jessica reckons she will increase her chances of passing by studying only one part of the work extremely well. You should use the CDF of the binomial distribution as you alluded to in the question description, but you can start in the middle of the distribution at the 50% point (rather than the beginning) since the distribution is symmetric. Suppose we flip a coin two times and count the number of heads (successes). AP STATS - Chapter 8 Binomial vs. Probability is the chance or likelihood that an event will happen. 28 Chickenpox, Part I. Probability phrases used in business English exercise There are two things that are very common in the business world, problems and change. To those looking to take the Fundamentals of Engineering (FE) Exam, here is an article I put together with exam prep and test taking strategies. Each question has 3 possible answers. probability that a person will guess correctly on one true/false question? b. Kate is a research enthusiast with a Bachelor of Science degree from Sonoma State University. A binomial distribution is one of the probability distribution methods. What is the probability of getting one correct answer? Algebra Linear Inequalities and Absolute Value Theoretical and Experimental Probability. Test it out with a few different people to get a better consensus. Using the normal approximation to the binomial distribution, what is the probability of getting more than 55 correct by just guessing? Applying the idea of real-limits, more than 55 correct means that the probability is at and above the upper limit of 55. Any comments would be greatly appreciated. Suppose the test only had two questions. The site consists of an integrated set of components that includes expository text, interactive web apps, data sets, biographical sketches, and an object library. Intuitively, test length should be sufficient to ensure that students are not simply guessing their way to a passing grade. Try Passing NASA's Project Mercury Intelligence Test. If you are one of those who missed out on this skill test, here are the questions and solutions. Match the following probability with one of the statements. To pass the test a student must answer at least eight questions correctly. Probability of guessing correct on number 1 is 1/4. Hello all, Because some people contact me and demand an Excel file for calculating the probability of passing. Each problem has only one correct answer. , the probability a student's number of correct answers is within one standard deviation of the mean) is computed by selecting a <= x <= b from the. The probability a student gets 3, 4, or 5 correct answers by guessing (i. e) To pass the test, a student has to answer at least 6 questions correctly. Find the probability that James passes if Let X = the number of correct answers. 1 class clip. The empirical probability is 4/100=0. The questions are tricky, but can all be solved by logical thinking and a little bit of mathematics. - batch should always pass. Each Scaled Score is assigned a Percentile Rank. For someone who makes random guesses for all of the answers, find the probability of passing if the minimum passing. Find the probability of each of the following. What is the probability that at least one of these two students will fail the examination?. Christina Sterbenz. By classifying all system tests into test categories based on component coverage, we not only simplify the model presentation but also greatly improve the efficiency of the algorithm. The probability density function looks like a bell-shaped curve. i know royle flush aint the best but i am going out to grab a bottle now. Four characteristics must be present: 1) Fixed number of trials: n 2) The only two outcomes are success and failure 3) The probability of success, p, is the same at each trial 4) The trials are. I feel that I may be multiplying the wrong. Here, you're using $$p$$ to stand for the probability that the student passes a test. Rmd in OSF Storage in Epistemic inferences in passing conversation: Pragmatics as a test of Theory of Mind accounts. XP Math Games Arcade Data Analysis & Probability Math Games. Q: What country is home to the tallest mountain in the world, Mount Everest? Tatiana Ayazo/Rd. Use the probability distribution function normcdf as a function handle in the chi-square goodness-of-fit test (chi2gof). How many times should Jo expec take his quiz before passing it?. Central to. Four characteristics must be present: 1) Fixed number of trials: n 2) The only two outcomes are success and failure 3) The probability of success, p, is the same at each trial 4) The trials are. In case, there is no negative marking, you can score 1*n. Probability is the measure of the likelihood of an event occurring. For example, in a standard deck of playing cards (52 total cards), what is the likelihood (or probability) that you will choose an Ace just by choosing one card at random?. Find the probability of passing if the minimum passing grade is 60%. 2) (180)=36 [/math] and standard deviation of [math]\sqrt {180 (0. 7500 f) None of the above Question 3 In testing a new drug, researchers found that 3% of all patients using it will have a mild side effect. To pass, you must answer at least 1/2 correctly. At least one will pass in the test. A passing grade is 61%or more correct answers. To pass the test a student must answer at least eight questions correctly. We compared the pass/fail rates derived from the norm reference and the Angoff methods and also assessed the test-retest and inter-rater reliability of the modified Angoff method. Probability & Statistics Activities For Kids. Find the area between 0 and 8 in a uniform distribution that goes from 0 to 20. The data were band-pass filtered between 0. 2 The base case T P NOTATION. The chances of selection in probability sampling,.
2019-11-19T23:43:00
{ "domain": "buntfuchs-hamburg.de", "url": "http://mbjo.buntfuchs-hamburg.de/probability-of-passing-a-test-by-guessing.html", "openwebmath_score": 0.5254579186439514, "openwebmath_perplexity": 689.6900901720214, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.9881308786041315, "lm_q2_score": 0.8499711737573762, "lm_q1q2_score": 0.8398827627130611 }
https://math.stackexchange.com/questions/3584589/what-is-the-sum-of-the-following-infinite-series
# What is the sum of the following infinite series? $$\frac{1}{3} + \frac{2}{9} + \frac{1}{27} + \frac{2}{81} + \frac{1}{243} + \frac{2}{729} + \cdots$$ So basically I separated it into two series where: one of them is $$\left(\frac{1}{3}\right)^n$$ And I use geometric series formula to find that this series equals $$\frac{1}{2}$$. But I can't figure out the series of the other one. Apparently the answer for the series combined is: $$\frac{5}{8}$$ What is the other series? It seems you have \begin{aligned} & \frac{1}{3} + \frac{2}{9} + \frac{1}{27} + \frac{2}{81} + \frac{1}{243} + \frac{2}{729} + \ldots \\ & = \left(\frac{1}{3} + \frac{1}{9} + \frac{1}{27} + \frac{1}{81} + \frac{1}{243} + \frac{1}{729} + \ldots\right) + \left(\frac{1}{9} + \frac{1}{81} + \frac{1}{729} + \ldots\right) \\ & = \sum_{i=1}^{\infty}\left(\frac{1}{3}\right)^i + \sum_{i=1}^{\infty}\left(\frac{1}{9}\right)^i \\ & = \frac{\frac{1}{3}}{1 - \frac{1}{3}} + \frac{\frac{1}{9}}{1 - \frac{1}{9}} \\ & = \frac{\frac{1}{3}}{\frac{2}{3}} + \frac{\frac{1}{9}}{\frac{8}{9}} \\ & = \frac{1}{2} + \frac{1}{8} \\ & = \frac{5}{8} \end{aligned}\tag{1}\label{eq1A} Note I was able to split the sum into $$2$$ parts in the second line due to the series being absolutely convergent, with details about this in the Rearrangements and unconditional convergence section. Also note I used, such as described in Geometric series, that for $$|r| \lt 1$$, you have $$\sum_{i=0}^{\infty}ar^i = \frac{a}{1 - r} \tag{2}\label{eq2A}$$ $$9\left(\frac{1}{3} + \frac{2}{9} + \frac{1}{27} + \frac{2}{81} + \frac{1}{243} + \frac{2}{729}+\cdots\right)=3+2+\frac{1}{3} + \frac{2}{9} + \frac{1}{27} + \frac{2}{81} + \cdots$$ so that $$9S=5+S.$$ Denote by $$S$$ the value of the infinite sum: $$S=\frac13+\frac29+\frac1{27}+\frac2{81}+\frac1{243}+\frac2{729}+\cdots$$ Some rearranging of terms lets us write $$S=\frac23-\frac19+\frac2{27}-\frac1{81}+\frac2{243}-\frac1{729}+\cdots$$ That is, $$\frac29=\frac39-\frac19=\frac13-\frac19$$, and so on. \begin{align*} 2S&=1+\frac29+\frac2{81}+\frac2{729}+\cdots\\[1ex] S&=\frac12+\sum_{n\ge1}\frac1{9^n}\\[1ex] &=\frac58 \end{align*} • what a beasttt and different way of doing it, any benefits in the long ruun? or is splitting better Mar 17 '20 at 19:49 • My first instinct would have been the same as yours/John's. I just happened to notice that parts of this sum could be condensed using a Gauss-like argument Mar 17 '20 at 19:52 • Also $= \frac{5}{9} + \frac{5}{81} + \frac{5}{729} ...$ Mar 17 '20 at 19:54 Here is a trick that I like to use: Recall that if you wanted to find the value of the infinite repeating decimal $$0.\overline{12}$$, you would get $$\frac{12}{99}$$. The $$99$$ in the denominator comes from the fact that we use a base $$10$$ number system, and $$10^2-1=99$$. Create the decimal in base $$3$$, and you get $$\frac{12_3}{3^2-1}=\frac{5}{8}$$. • wow thats amazing never THOT of t liek that Mar 20 '20 at 0:51 Note that when you group adjacent terms, $$\frac{1}{3} + \frac{2}{9} = \frac{5}{9}$$. Therefore, the sum of the series becomes: $$\frac{5}{9} + \frac{1}{9} \cdot \frac{5}{9} + \left(\frac{1}{9} \right)^2 \cdot \frac{5}{9} + \cdots$$ $$= \frac{\frac{5}{9}}{1 - \frac{1}{9}}$$ $$= \frac{5/9}{8/9} = \frac{5}{8}$$
2021-09-18T19:24:07
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3584589/what-is-the-sum-of-the-following-infinite-series", "openwebmath_score": 0.9990373849868774, "openwebmath_perplexity": 342.3093342648832, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9881308772060157, "lm_q2_score": 0.8499711737573762, "lm_q1q2_score": 0.8398827615247029 }
https://coursera.cs.princeton.edu/algs4/assignments/collinear/faq.php
Can the same point appear more than once as input to methods in Point? Yes. For the slopeTo() method, this requirement is explicitly stated in the API; for the comparison methods, this requirement is implicit in the contracts for Comparable and Comparator. The reference solution outputs a line segment in the order pq but my solution outputs it in the reverse order qp. Is that ok? Yes, there are two valid ways to output a line segment. The reference solution outputs the line segments in a different order than my solution. Is that OK? Yes, if there are k line segments, then there are k! different possible ways to output them. How do I sort a subarray in Java? Arrays.sort(a, lo, hi) sorts the subarray from a[lo] to a[hi-1] according to the natural order of a[]. You can use a Comparator as the fourth argument to sort according to an alternate order. Where can I see examples of Comparable and Comparator? See the lecture slides. My program fails only on (some) vertical line segments. What could be going wrong? Are you dividing by zero? With integers, this produces a run-time exception. With floating-point numbers, 1.0/0.0 is positive infinity and -1.0/0.0 is negative infinity. You may also use the constants Double.POSITIVE_INFINITY and Double.NEGATIVE_INFINITY. What does it mean for slopeTo() to return positive zero? Java (and the IEEE 754 floating-point standard) define two representations of zero: negative zero and positive zero. double a = 1.0; double x = (a - a) / a; // positive zero ( 0.0) double y = (a - a) / -a; // negative zero (-0.0) Note that while (x == y) is guaranteed to be true, Arrays.sort() treats negative zero as strictly less than positive zero. Thus, to make the specification precise, we require you to return positive zero for horizontal line segments. Unless your program casts to the wrapper type Double (either explicitly or via autoboxing), you probably will not notice any difference in behavior; but, if your program does cast to the wrapper type and fails only on (some) horizontal line segments, this may be the cause. Is it OK to compare two floating-point numbers a and b for exactly equality? In general, it is hazardous to compare a and b for equality if either is susceptible to floating-point roundoff error. However, in this case, you are computing b/a, where a and b are integers between -32,767 and 32,767. In Java (and the IEEE 754 floating-point standard), the result of a floating-point operation (such as division) is the nearest representable value. Thus, for example, it is guaranteed that (9.0/7.0 == 45.0/35.0). In other words, it's sometimes OK to compare floating-point numbers for exact equality (but only when you know exactly what you are doing!) Note also that it is possible to implement compare() and FastCollinearPoints using only integer arithmetic (but you are not required to do so). I'm having trouble avoiding subsegments Fast.java when there are 5 or more points on a line segment. Any advice? Not handling the 5-or-more case is a bit tricky, so don't kill yourself over it. I created a nested Comparator class within Point. Within the nested Comparator class, the keyword this refers to the Comparator object. How do I refer to the Point instance of the outer class? Use Point.this instead of this. Note that you can refer directly to instance methods of the outer class (such as slopeTo()); with proper design, you shouldn't need this awkward notation. Testing Sample data files. The zip file collinear.zip contains some sample input files in the specified format. Associated with some of the input .txt files are output .png files that contains the desired graphical output. Thanks to Jesse Levinson '05 for the remarkable input file rs1423.txt; feel free to create your own and share with us in the Discussion Forums. Possible Progress Steps These are purely suggestions for how you might make progress. You do not have to follow these steps. 2. Slope. To begin, implement the slopeTo() method. Be sure to consider a variety of corner cases, including horizontal, vertical, and degenerate line segments. 3. Brute force algorithm. Write code to iterate through all 4-tuples and check if the 4 points are collinear. To form a line segment, you need to know its endpoints. One approach is to form a line segment only if the 4 points are in ascending order (say, relative to the natural order), in which case, the endpoints are the first and last points. Hint: don't waste time micro-optimizing the brute-force solution. Though, there are two easy opportunities. First, you can iterate through all combinations of 4 points (N choose 4) instead of all 4 tuples (N^4), saving a factor of 4! = 24. Second, you don't need to consider whether 4 points are collinear if you already know that the first 3 are not collinear; this can save you a factor of N on typical inputs. 4. Fast algorithm. • Implement the slopeOrder() method in Point. The complicating issue is that the comparator needed to compare the slopes that two points q and r make with a third point p, which changes from sort to sort. To do this, create a private nested (non-static) class SlopeOrder that implements the Comparator<Point> interface. This class has a single method compare(q1, q2) that compares the slopes that q1 and q2 make with the invoking object p. the slopeOrder() method should create an instance of this nested class and return it. • Implement the sorting solution. Watch out for corner cases. Don't worry about 5 or more points on a line segment yet. Enrichment Can the problem be solved in quadratic time and linear space? Yes, but the only compare-based algorithm I know of that guarantees quadratic time in the worst case is quite sophisticated. It involves converting the points to their dual line segments and topologically sweeping the arrangement of lines by Edelsbrunner and Guibas. Can the decision version of the problem be solved in subquadratic time? The original version of the problem cannot be solved in subquadratic time because there might be a quadratic number of line segments to output. (See next question.) The decision version asks whether there exists a set of 4 collinear points. This version of the problem belongs to a group of problems that are known as 3SUM-hard. A famous unresolved conjecture is that such problems have no subquadratic algorithms. Thus, the sorting algorithm presented above is about the best we can hope for (unless the conjecture is wrong). Under a restricted decision tree model of computation, Erickson proved that the conjecture is true. What's the maximum number of (maximal) collinear sets of points in a set of n points in the plane? It can grow quadratically as a function of N. Consider the n points of the form: (x, y) for x = 0, 1, 2, and 3 and y = 0, 1, 2, ..., n / 4. This means that if you store all of the (maximal) collinear sets of points, you will need quadratic space in the worst case.
2021-10-20T07:32:13
{ "domain": "princeton.edu", "url": "https://coursera.cs.princeton.edu/algs4/assignments/collinear/faq.php", "openwebmath_score": 0.464359849691391, "openwebmath_perplexity": 669.1917830883792, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9099070133672955, "lm_q2_score": 0.9230391595405136, "lm_q1q2_score": 0.8398798048785674 }
https://mathematica.stackexchange.com/questions/86087/use-different-markers-colors-in-logarithmic-plot-depending-on-sign
# Use different markers/colors in logarithmic plot depending on sign Suppose you have the dataset xData = Table[i, {i, 1, 30}]; yData = RandomReal[{0.995, 1.005}, 30]; and want to plot the difference of yData-1 on a ListLogPlot. ListLogPlot[Transpose[{xData, yData - 1}], Joined -> True, Mesh -> All] Of course, there will be negative differences, hence not being plotted. If the differences' signs were unimportant one could just plot Abs[yData-1]. However, if the sign is important: What is a (I am sure there must be something) nice way to e.g. plot the Abs but use different markers for different signs. The only way I can come up with is pre-processing the data into two sets corresponding to the signs and then plot both seperately into the same graph. Edit: I decided to accept MichaelE2's answer because I did not know anything about VertexColor and it could be very useful for future plotting issues. However, also all other answers are great solutions and I don't mean to depreciate their value by not accepting them - I just think that one answer should be accepted to "close" the question. • There are several very good answers so far. I would like to accept multiple ones, however not possible. So, I will just wait a few days to (i) wait for others answers (ii) think about which I will finally accept. Thanks to everyone so far! – Lukas Jun 17 '15 at 7:07 You can use VertexColors to color the individual points, since the points are all in a single Point in order. ListLogPlot[Transpose[{xData, Abs[yData - 1]}], Joined -> True, Mesh -> All] /. Point[p_] :> Point[p, VertexColors -> (Sign[yData - 1] /. {1 -> Black, -1 -> Red, 0 -> Blue})] Threw in the 0 case even though 0 won't be plotted by ListLogPlot. One could have it print a warning, too. • Nice solution. I did not know that VertexColors exists. Could be helpful in future – Lukas Jun 17 '15 at 6:58 • @Lukas Thanks, and VertexColors is a more efficient way to color points, esp. when you have Point[<long list of points>, VertexColors -> colors]. – Michael E2 Jun 17 '15 at 12:24 The colors can be determined by the sign separately like this: colors = Sign[yData - 1] /. {1 -> Blue, -1 -> Red}; In order to change the color of the individual markers we have to change the Graphics object that ListLogPlot generates. We can view that expression using plot = ListLogPlot[ Transpose[{xData, Abs[yData - 1]}], Joined -> True, Mesh -> All ]; plot // FullForm We notice that the points are drawn by using the Point graphics primitive, like this: Point[{{x1,y1},{x2,y2},...}] In order to define the colors of the markers separately we have to create one Point primitive for each marker. We can do that using Thread: Thread@Point[{{x1,y1},{x2,y2},...}] (* Out: {Point[{x1,y1}],Point[{x2,y2}],...} *) Now we can use Riffle to insert the colors. plot /. p : Point[_] :> Riffle[colors, Thread[p]] • Thanks for this answer, especially for your explanation. – Lukas Jun 17 '15 at 6:53 Fundamentally this isn't much different than what you're suggesting, as far as splitting the data into positive and negative parts, xData = Table[i, {i, 1, 30}]; yData = RandomReal[{0.995, 1.005}, 30]; ListLogPlot[ {{#1, Abs@#2}} & @@@ Transpose@{xData, yData - 1}, PlotStyle -> (yData - 1) /. {x_Real /; Sign[x] == -1 :> Red, x_Real :> Black} ] • thanks for your answer, as well. That is indeed quite similar to what I thought about. However, I did not know that it's possible to use conditionals for PlotStyle. – Lukas Jun 17 '15 at 7:02 • It's not actually using conditionals for the plot style, it's just replacing the elements of yData with the appropriate color. What is actually fed to PlotStyle is a list of RGBColors. – N.J.Evans Jun 17 '15 at 15:06 I propose the Epilog option xData = Table[i, {i, 1, 30}]; yData = RandomReal[{0.995, 1.005}, 30]; (*Construct the colors and the point objects*) pts = Point /@ Transpose[{xData, Log@Abs[yData - 1]}]; colors = Sign[yData - 1] /. {1 -> Blue, -1 -> Red}; (*visulization*) ListLogPlot[ Transpose[{xData, Abs[yData - 1]}], Joined -> True, Epilog -> Prepend[Riffle[colors, pts], PointSize[Medium]] ] • @Lukas, My pleasure:-) Glad to know you like it. – xyz Jun 17 '15 at 7:38 Style can be used directly on elements of several different plot types. ListPlot[ Transpose[{xData, yData - 1}] /. {x_, y_?Negative} :> Style[{x, -y}, Red], Joined -> True, Mesh -> All, ImageSize -> 500 ]
2021-05-11T17:12:05
{ "domain": "stackexchange.com", "url": "https://mathematica.stackexchange.com/questions/86087/use-different-markers-colors-in-logarithmic-plot-depending-on-sign", "openwebmath_score": 0.18957947194576263, "openwebmath_perplexity": 2928.4823200445685, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9230391558355999, "lm_q2_score": 0.90990700787036, "lm_q1q2_score": 0.8398797964335537 }
https://mathematica.stackexchange.com/questions/22705/simplify-expressions-with-log?noredirect=1
# Simplify expressions with Log How can I get Mathematica to simplify the following expression n Log[a] + m Log[b] - m Log[a + b] - n Log[a + b] into Log[ a^n b^m (a + b)^(-m - n)] ? I've tried various methods without any luck including: - FullSimplify[ n Log[a] + m Log[b] - m Log[a + b] - n Log[a + b], { a + b > 0 } ] Perhaps I'm not including enough assumptions or Mathematica doesn't consider this to be a simplification ? It would be nice to have a solution that doesn't require pattern matching. • In general Log[a^n] does not equal n*Log[a]. Take for instance Log[(-1)^2]. However, MMA knows that Assuming[{n > 0, m > 0, a > 0, b > 0}, FullSimplify[n Log[a] + m Log[b] == Log[a^n b^m]]] is True. So, these assumptions should be sufficient, but I cannot let it make the simplification itself. – Sjoerd C. de Vries Apr 4 '13 at 22:23 • This Q&A seems to be a bit overlooked. The OP there wants to do things the other way around, i.e. go from a Log of a product to the sum of Logs. It is a subjective matter what a simplification is, so I like Artes answer here below. The OP in the link uses something similar. The answer in the link by wolfies just points to proprietary software, but can possibly provide some (professional) context. The answer in the link by Andre also seems great. – Jacob Akkerboom Apr 5 '13 at 9:39 • Only for completeness: You can perform the reverse operation (expanding the Log[] function) via PowerExpand[]. – loki Dec 14 '17 at 13:40 Let us introduce the function to transform the logarithm: collectLog[expr_] := Module[{rule1, rule2, a, b, x}, rule1 = Log[a_] + Log[b_] -> Log[a*b]; rule2 = x_*Log[a_] -> Log[a^x]; (expr /. rule1) /. rule2 /. rule1 /. rule2 ]; expr = (n Log[a] + m Log[b] - m Log[a + b] - n Log[a + b]); Let us first simplify it, and then apply to it the collectLog function: expr2 = Simplify[expr, {a > 0, b > 0}, TransformationFunctions -> {Automatic, ComplexExpand}] // collectLog The result is Log[a^n b^m] + Log[(a + b)^(-m - n)] Let us apply the collectLog once more: expr2 // collectLog The result is: Log[a^n b^m (a + b)^(-m - n)] Done. To answer the recent question of bszd: if a function with multiple Logs may be designed. It can be done in a more simple way. If one has a lengthily expression with logarithms of the sort that might be simplified by collection, the function Nest may do the job: Nest[collectLog, expr, Length[expr]] Log[a^n b^m (a + b)^(-m - n)] If it is only a part of expression that, however, contains multiple logarithms to be collected, the function collectAllLog[expr_] := Nest[collectLog, expr, Length[expr]]; may be mapped onto this part. Finally, to complete this one may need to do the opposite operation: to expand the logarithmic expression. One way to do this would be to use the following function: expandLog[expr_] := Module[{rule1, rule2, a, b, x}, rule1 = Log[a_*b_] -> Log[a] + Log[b]; rule2 = Log[a_^x_] -> x*Log[a]; (expr /. rule1) /. rule2 ]; and expandAllLog[expr_] := Nest[expandLog, expr, Depth[expr]] For example, expandAllLog[Log[a^n b^m (a + b)^(-m - n)]] yields n Log[a] + m Log[b] + (-m - n) Log[a + b] as expected. • This looks very good. Is there any easy way I can allow multiple arguments for rule1, i.e. rule1 = Log[a_] + Log[b_] + Log[]... -> Log[a*b*...]? – Blair Azzopardi Apr 6 '13 at 14:27 • @bsdz, Please have a look at the part I added to the answer. – Alexei Boulbitch Apr 8 '13 at 7:38 • Perfect - that's exactly what I was looking for with the added benefit it can be applied in other situations too. Thanks! – Blair Azzopardi Apr 8 '13 at 21:42 • I am wondering how can I do the same replacement rules with functions sitting in front ? $e^{-i x}\log(a) + e^{ -i x} \log(b) \rightarrow e^{-i x}\log(a*b)$ – Jaswin May 6 at 13:56 • @ Jaswin There are several ways. 1) You may introduce a rule: rule = u_*Log[v_] + u_*Log[w_] :> u*Log[v*w] and apply it to your expression; expr = E^(-I*x)*Log[a] + E^(-I*x)*Log[b] as follows: expr /. rule. 2) Otherwise, you may first factor the expression and then apply to its part the collectLog function: MapAt[collectLog, expr // Factor, 2]. – Alexei Boulbitch May 6 at 14:31 I know, I know: Now someone will ask why. Anyway: FullSimplify@Log@Exp[n Log[a] + m Log[b] - m Log[a + b] - n Log[a + b]] (* Log[a^n b^m (a + b)^(-m - n)] *) • Short and sweet. I mean that. Not like when my HS track coach would say it (which roughly translated to "I'm trying to make you puke this afternoon"). – Daniel Lichtblau Apr 4 '13 at 23:01 • That's great. Shall test it tomorrow. Thank you – Blair Azzopardi Apr 4 '13 at 23:04 • Simplify works, too (in place of FullSimplify). – Michael E2 Apr 5 '13 at 0:19 • Why does this work? :^) – Mr.Wizard Apr 5 '13 at 8:08 • @bsdz It was a joke ... – Dr. belisarius Apr 6 '13 at 11:41 Well, although late, here's an answer using ReplaceRepeated (//.). Let's define two replacement rules to take us back and forth. logrule = {Log[x_] + Log[y_] :> Log[x y], n_ Log[x_] :> Log[x^n]} revlogrule = {Log[x_ y_] :> Log[x] + Log[y], Log[x_^n_] :> n Log[x]} expr = n Log[a] + m Log[b] - m Log[a + b] - n Log[a + b] using the logrule we can simplify your expression: expr //. logrule Which gives: Log[a^n b^m (a + b)^(-m - n)] Now let's go back to the original expression using revlogrule Log[a^n b^m (a + b)^(-m - n)] //. revlogrule // Expand n Log[a] + m Log[b] - m Log[a + b] - n Log[a + b] EDIT You can also use FullSimplify with TransformationFunctions as follows. First define the transformation you desire to be applied: tfunc[x_] := x /. logrule Then: FullSimplify[expr, TransformationFunctions -> {Automatic, tfunc}] Which gives as before: Log[a^n b^m (a + b)^(-m - n)] • I don't believe you need the rule Log[x_] - Log[y_] :> Log[x/y] as I think this should be handled by Log[x_] + Log[y_] :> Log[x y]. Likewise Log[x_/y_] :> Log[x] - Log[y]. There can be surprises but I don't think that particular case applies here. (+1) – Mr.Wizard Sep 23 '13 at 11:30 • @Mr.Wizard, Ah yes, fixed. Thanks. – RunnyKine Sep 23 '13 at 11:51 • By the way, if this account is yours you might request a merge. – Mr.Wizard Sep 24 '13 at 14:57 • @Mr.Wizard. Thanks a lot!. I've been looking for a way to do that. – RunnyKine Sep 24 '13 at 18:24 logList = n Log[a] + m Log[b] - m Log[a + b] - n m Log[a + b] - n Log[a + b] - Log[ArcSin[a + b n]] + z Log[z]; mahmoh = Log[Times @@ (logList /. Times[x___, Log[y___]] :> Power[y,Times[x]] /. Log[x__] :> Power[x, 1])] Out[376]=Log[(a^n b^m (a + b)^(-m - n - m n) z^z)/ArcSin[a + b n]] All is fine as long as you dont use products of Log and here is a little Test logList /. {a -> 2.3, b -> 4.3, n -> .4, m -> .7, z -> 3} Out[377]= 1.09137 + 0.921334 I mahmoh /. {a -> 2.3, b -> 4.3, n -> .4, m -> .7, z -> 3} Out[378]= 1.09137 + 0.921334 I And using the nice package MaTeX you get this little nice picture. MaTeX[mahmoh, Magnification -> GoldenRatio] I did not give it a very carefull thought so maybe you can find situation when it will not work. any suggestion would be more than welcome. As for the original question the answer is Log[a^n b^m (a + b)^(-m - n)]
2019-12-10T11:36:14
{ "domain": "stackexchange.com", "url": "https://mathematica.stackexchange.com/questions/22705/simplify-expressions-with-log?noredirect=1", "openwebmath_score": 0.24410103261470795, "openwebmath_perplexity": 4995.157632160014, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9553191335436404, "lm_q2_score": 0.8791467722591728, "lm_q1q2_score": 0.8398657327323211 }
https://www.beatricecarafa.com/q8hsly0u/89ec68-how-to-find-end-behavior-of-a-function
End behavior of polynomial functions helps you to find how the graph of a polynomial function f(x) behaves (i.e) whether function approaches a positive infinity or a negative infinity. Identify the degree of the function. Use the above graphs to identify the end behavior. The function has a horizontal asymptote y = 2 as x approaches negative infinity. y =0 is the end behavior; it is a horizontal asymptote. Use arrow notation to describe the end behavior and local behavior of the function below. Horizontal asymptotes (if they exist) are the end behavior. However horizontal asymptotes are really just a special case of slant asymptotes (slope$\;=0$). There are three cases for a rational function depends on the degrees of the numerator and denominator. 1. Since both ±∞ are in the domain, consider the limit as y goes to +∞ and −∞. ... Use the degree of the function, as well as the sign of the leading coefficient to determine the behavior. These turning points are places where the function values switch directions. The end behavior is when the x value approaches $\infty$ or -$\infty$. In this section we will be concerned with the behavior of f(x)as x increases or decreases without bound. Even and Positive: Rises to the left and rises to the right. The domain of this function is x ∈ ⇔ x ∈(−∞, ∞). Find the End Behavior f(x)=-(x-1)(x+2)(x+1)^2. Even and Negative: Falls to the left and falls to the right. End Behavior Calculator. 2. We'll look at some graphs, to find similarities and differences. 3.If n > m, then the end behavior is an oblique asymptoteand is found using long/synthetic division. The point is to find locations where the behavior of a graph changes. 2. One of the aspects of this is "end behavior", and it's pretty easy. In addition to end behavior, where we are interested in what happens at the tail end of function, we are also interested in local behavior, or what occurs in the middle of a function.. EX 2 Find the end behavior of y = 1−3x2 x2 +4. Show Solution Notice that the graph is showing a vertical asymptote at $x=2$, which tells us that the function is undefined at $x=2$. To find the asymptotes and end behavior of the function below, examine what happens to x and y as they each increase or decrease. This end behavior of graph is determined by the degree and the leading co-efficient of the polynomial function. There is a vertical asymptote at x = 0. The slant asymptote is found by using polynomial division to write a rational function $\frac{F(x)}{G(x)}$ in the form First, let's look at some polynomials of even degree (specifically, quadratics in the first row of pictures, and quartics in the second row) with positive and negative leading coefficients: 1.If n < m, then the end behavior is a horizontal asymptote y = 0. 2.If n = m, then the end behavior is a horizontal asymptote!=#$%&. The right hand side seems to decrease forever and has no asymptote. As we pointed out when discussing quadratic equations, when the leading term of a polynomial function, ${a}_{n}{x}^{n}$, is an even power function, as x increases or decreases without … 1.3 Limits at Infinity; End Behavior of a Function 89 1.3 LIMITS AT INFINITY; END BEHAVIOR OF A FUNCTION Up to now we have been concerned with limits that describe the behavior of a function f(x)as x approaches some real number a. Recall that we call this behavior the end behavior of a function. Local Behavior. Determine whether the constant is positive or negative. 4.After you simplify the rational function, set the numerator equal to 0and solve. How To: Given a power function f(x)=axn f ( x ) = a x n where n is a non-negative integer, identify the end behavior.Determine whether the power is even or odd. Asymptotes are really just a special case of slant asymptotes ( if exist! Aspects of this function is x ∈ ( −∞, ∞ ) and local behavior of graph. Well as the sign of the numerator equal to 0and solve and −∞ x... For a rational function depends on the degrees of the numerator and.. Forever and has no asymptote horizontal asymptotes are really just a special case of asymptotes... X2 +4 behavior the end behavior is an oblique asymptoteand is found using long/synthetic division set... Rises to the right hand side seems to decrease forever and has no asymptote ( they! M, then the end behavior ; it is a vertical asymptote at x = 0 2.if n =,. Leading coefficient to determine the behavior of the leading co-efficient of the leading co-efficient of the leading coefficient to the... Notation to describe the end behavior of y = 0 will be with! With the behavior of graph is determined how to find end behavior of a function the degree and the leading coefficient determine. Forever and has no asymptote the domain, consider the limit as y to! At some graphs, to find locations where the behavior of a graph changes, ∞ ) case slant! As y goes to +∞ and −∞ to decrease how to find end behavior of a function and has no asymptote both ±∞ are the.... use the degree of the leading co-efficient of the aspects of this is end behavior and −∞ of... We 'll look at some graphs, to find similarities and differences ex 2 find end. Domain of this is end behavior '', and it 's pretty easy sign. N > m, then the end behavior is a horizontal asymptote! = #$ %.. Graph changes and the leading coefficient to determine the behavior of y = 2 as x increases or decreases bound. Asymptote y = 2 as x increases or decreases without bound coefficient to determine the behavior )... ∈ ⇔ x ∈ ⇔ x ∈ ⇔ x ∈ ⇔ x ∈ ( −∞, ∞.. Asymptote y = 0 one of the polynomial function ; it is a asymptote! Y = 1−3x2 x2 +4 f ( x ) as x approaches negative infinity < m, the...! = # $% & special case of slant asymptotes ( if they ). The domain of this function is x ∈ ⇔ x ∈ ⇔ x ∈ ⇔ x ∈ (,. Long/Synthetic division has a horizontal asymptote at x = 0 this is end behavior a. Degrees of the polynomial function asymptote at x = 0 by the degree of the leading co-efficient of the,. To the left and Falls to the right in this section we be! Will be concerned with the behavior limit as y goes to +∞ −∞! Asymptote at x = 0 numerator and denominator we call this behavior the end behavior local... Decrease forever and has no asymptote to decrease forever and has no asymptote at x 0! This function is x ∈ ⇔ x ∈ ( −∞, ∞ ) are places where function... 2 as x increases or decreases without bound right hand side seems decrease... 'S pretty easy ( if they exist ) are the end behavior '', and it 's pretty easy as. It 's pretty easy hand side seems to decrease forever and has no asymptote −∞, ∞.. Forever and has no asymptote asymptotes ( slope$ \ ; =0 $) x! Well as the sign of the leading coefficient to determine the behavior this behavior the end of. end behavior and local behavior of y = 2 as x approaches infinity! Really just a special case of slant asymptotes ( if they exist ) are end. Of f ( x ) as x increases or decreases without bound and:. Identify the end behavior and local behavior of graph is determined by the and! Graph changes domain of this is end behavior is an oblique asymptoteand is found long/synthetic! Behavior ; it is a vertical asymptote at x = 0 the coefficient! To find similarities and differences as x increases or decreases without bound numerator and denominator leading coefficient determine... ) as x increases or decreases without bound$ ) x = 0 we! Local behavior of a function an oblique asymptoteand is found using long/synthetic.! ( if they exist ) are the end how to find end behavior of a function end behavior of y = 0 determine behavior... Are in the domain, consider the limit as y goes to +∞ and −∞ really a. Has no asymptote or decreases without bound $) 'll look at some graphs, to similarities. Describe the end behavior of graph is determined by the degree of the of! Pretty easy three cases for a rational function depends on the degrees of the numerator equal to solve... = 2 as x approaches negative infinity with the behavior of a.. Of the function values switch directions where the function, set the numerator equal to 0and solve co-efficient the. 2.If n = m, then the end behavior > m, then end! ∈ ⇔ x ∈ ( −∞, ∞ ) set the numerator to. Coefficient to determine the behavior of the function has a horizontal asymptote! = # %... X increases or decreases without bound rational function depends on the degrees of the leading co-efficient of polynomial. Of y = 0 slope$ \ ; =0 $) horizontal are! Behavior is a horizontal asymptote! = #$ % & to find locations where the function below is find... Y =0 is the end behavior of graph is determined by the degree of polynomial... = m, then the end behavior is a horizontal asymptote! = # $%.! Goes to +∞ and −∞ this behavior the end behavior is a asymptote. Function, set the numerator and denominator this end behavior of a function the and! Determine the behavior to describe the end behavior is an oblique asymptoteand is found using division... Switch directions the behavior of y = 0 y goes to +∞ −∞! Point is to find locations where the behavior coefficient to determine the behavior of graph! Call this behavior the end behavior '', and it 's pretty easy, well! Graphs to identify the end behavior is an oblique asymptoteand is found using long/synthetic how to find end behavior of a function... Function has a horizontal asymptote! = #$ % & to determine the behavior the! Is an oblique asymptoteand is found using long/synthetic division as x approaches infinity. This behavior the end behavior is a vertical asymptote at x = 0 simplify the function. Use arrow notation to describe the end behavior is a horizontal asymptote y 0... Is determined by the degree of the function below of f ( x ) as x increases or without! Pretty easy negative infinity asymptote at x = 0 2 as x or. −∞, ∞ ) how to find end behavior of a function local behavior of a function sign of the function a. Use the above graphs to identify the end behavior of graph is determined by the of... Has a horizontal asymptote! = # $% & are three cases a... Is an oblique asymptoteand is found using long/synthetic division, consider the limit as y goes to and...$ ) however horizontal asymptotes are really just a how to find end behavior of a function case of slant asymptotes slope. Y =0 is the end behavior of f ( x ) as approaches. Points are places where the behavior cases for a rational function, set the numerator and denominator rational. Is x ∈ ⇔ x ∈ ⇔ x ∈ ⇔ x ∈ ( −∞, ∞ ) three for. Of a graph changes both ±∞ are in the domain of this is end behavior of a graph.! Coefficient to determine the behavior of graph is determined by the degree of the below! Positive: Rises to the left and Rises to the right hand side seems to forever. X approaches negative infinity this behavior the end behavior of y = 2 as x approaches infinity... Vertical asymptote at x = 0 is x ∈ ⇔ x ∈ ⇔ x ∈ ( −∞, )! = m, then the end behavior and local behavior of f ( x ) as x approaches infinity! Decrease forever and has no asymptote and −∞ function depends on the of. Y = 1−3x2 x2 +4 negative: Falls to the left and Falls to the right to... Find similarities and differences there are three cases for a rational function depends on the of. For a rational function, as well as the sign of the below! Of this function is x ∈ ⇔ x ∈ ( −∞, ∞ ) one of the function values directions. > m, then the end behavior of f ( x ) as x approaches negative infinity long/synthetic.. Really just a special case of slant asymptotes ( slope $\ ; =0$ ) x ) x.: Falls to the left and Rises to the right hand side seems to decrease forever and has asymptote! ; =0 $) ∞ ) equal to 0and solve = 1−3x2 x2 +4 <,... Behavior '', and it 's pretty easy horizontal asymptote! = #$ %.... Without bound seems to decrease forever how to find end behavior of a function has no asymptote then the end behavior a! 0And solve find locations where the behavior 2.if n = m, then the end behavior ; is...
2021-04-11T04:55:03
{ "domain": "beatricecarafa.com", "url": "https://www.beatricecarafa.com/q8hsly0u/89ec68-how-to-find-end-behavior-of-a-function", "openwebmath_score": 0.7762136459350586, "openwebmath_perplexity": 421.82506601181535, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.9706877722165252, "lm_q2_score": 0.8652240895276223, "lm_q1q2_score": 0.8398624439316391 }
https://math.stackexchange.com/questions/2871002/does-this-series-converge-absolutely-sum-n-1-infty-fracbn-n-cosn-p
# Does this series converge absolutely $\sum_{n=1}^{\infty}\frac{b^{n}_{n}\cos(n\pi)}{n}$ Let $\{b_n\}$ be a sequence of positive numbers that converges to $\frac{1}{2}.$ Determine whether the given series is absolutely convergent. $$\sum_{n=1}^{\infty}\frac{b^{n}_{n}\cos(n\pi)}{n}$$ Notice for integer $n$, $\cos(n\pi)$ alternates infinitely often between $-1$ and $1$. Thus we replace $\cos(n\pi)$ by $(-1)^n$. Our new formula becomes: $$\sum_{n=1}^{\infty}\frac{b^{n}_{n}(-1)^n}{n}$$ To test for absolute convergence, test $$\sum_{n=1}^{\infty}\left|\frac{b^{n}_{n}(-1)^n}{n}\right|=\sum_{n=1}^{\infty}\frac{b^{n}_{n}}{n}$$ for convergence. Utilizing the Limit Comparison Test with $a_n=\frac{b^n_n}{n}$ and $b_n=\frac{1}{n}$, $$\lim_{n\to\infty}\frac{a_n}{b_n}=\lim_{n\to\infty}\frac{(b_n^n)(n)}{(n)(1)}=\frac{1}{2}>0\neq\infty$$ Since this limit exists as a positive finite value and $\sum b_n$ diverges, $\sum a_n=\sum^{\infty}_{n=1}\frac{b^n_n}{n}$ diverges. Thus we can conclude by the definition of absolute convergence, namely a series $\sum a_n$ converges absolutely if the series $\sum\left|a_n\right|$ converges, that the series $$\sum_{n=1}^{\infty}\frac{b^{n}_{n}\cos(n\pi)}{n}\space\text{does not absolutely converge}$$ However, multiple online sources suggest this series does converge absolutely and the answer key in my textbook suggests the same. If I am wrong, where is my error? Thanks in advance! The error lies in the fact that you assumed that $\lim_{n\to\infty}{b_n}^n=\frac12$. But the hypothesis is that $\lim_{n\to\infty}b_n=\frac12$. And, yes, the series converges absolutely. • Oh, so the notation $b_n^n=(b_n)^n$? – coreyman317 Aug 3 '18 at 12:12 • @coreyman317 Yes. – José Carlos Santos Aug 3 '18 at 12:13 • $b_n^n$ is standard notation... – JavaMan Aug 3 '18 at 14:04 You follow from $\lim\limits_{n\rightarrow\infty} b_n = \frac{1}{2}$ that $\lim\limits_{n\rightarrow\infty} b_n^n = \frac{1}{2}$, which is wrong. But when $\lim\limits_{n\rightarrow\infty} b_n = \frac{1}{2}$, then after a certain point $N$, for all $n>N$ we have that $b_n$ is positive and $b_n < \frac{2}{3} =: \frac{1}{2}+\varepsilon$. So your series in absolute value is at most: $$\text{A finite sum} + \sum\limits_{n = 1}^{\infty}\frac{1}{(\frac{3}{2})^n\cdot n}$$ This series can be checked directly via standard methods such as the quotient test or the root test. We have that $$b_n^{n}\sim \frac1{2^n}$$ therefore $$0\le \left|\frac{b^{n}_{n}\cos(n\pi)}{n}\right|\le \frac{b^{n}_{n}}{n}\sim \frac1{n2^n}$$ and since $\sum \frac1{n2^n}$ converges also $\sum \left|\frac{b^{n}_{n}\cos(n\pi)}{n}\right|$ converges by squeeze theorem.
2019-05-20T22:39:21
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2871002/does-this-series-converge-absolutely-sum-n-1-infty-fracbn-n-cosn-p", "openwebmath_score": 0.9867451190948486, "openwebmath_perplexity": 147.49126213885168, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9706877675527112, "lm_q2_score": 0.8652240877899776, "lm_q1q2_score": 0.8398624382096844 }
http://math.stackexchange.com/questions/438118/prove-that-limsup-n-to-infty-x-n-n-le1-almost-surely
Prove that $\limsup_{n\to\infty} |X_n|/n \le1$ almost surely Suppose $\{X_n\}$ a sequence of random variables. If $\sum_{n=1}^\infty P(|X_n|>n)< \infty$ Prove that $$\limsup_{n\to\infty}\frac{ |X_n|}{n} \le1$$ almost surely What i have done so far: I thought using the Borel-Cantelli lemma could lead me somewhere, but i didn't have any luck. From Borel-Cantelli lemma we know that if $\sum_{n=1}^\infty P(|X_n|>n)< \infty$ then $P(|X_n|>n)=0$ How could I proceed? I would appreciate any help, advice. Thank you all very much in advance for your time and concern. - Hint: Borel-Cantelli lemma shows that $\Bbb{P}(|X_{n}| > n \text{ i.o.}) = 0$. – Sangchul Lee Jul 7 '13 at 13:14 Crossposted: stats.stackexchange.com/q/63561/2970 – cardinal Jul 7 '13 at 15:24 @cardinal so what? i can not post my question in two different sections? – johan paul Jul 7 '13 at 15:33 @johan: See this meta.SO answer. This is the quasi official policy on this topic. Cheers. – cardinal Jul 7 '13 at 15:36 @johan: It's ok. I just wanted you to be aware of the prevailing "policy". I generally believe it's good to have the content in one location since one objective is the site is to provide a long-term repository of questions and answers. (+1 to your question, in particular for supplying your initial thoughts on the problem. Cheers.) – cardinal Jul 7 '13 at 15:43 The first Borel-Cantelli lemma yields $$\mathbb P\left(\limsup_{n\to\infty}|X_n|>n\right)=0.$$ As for each $n$ $$\{|X_n|>n\}\subset \bigcup_{k=n}^\infty \{|X_k|>k\},$$ it follows that \begin{align} 0&=\mathbb P\left(\bigcap_{n=1}^\infty\bigcup_{k=n}^\infty \{|X_k|>k\}\right) \\&=\mathbb P\left(\lim_{n\to\infty}\bigcup_{k=n}^\infty \{|X_k|>k\} \right)\\ &=\lim_{n\to\infty}\mathbb P\left(\bigcup_{k=n}^\infty \{|X_k|>k\} \right)\\ &\geqslant\lim_{n\to\infty}\mathbb P(|X_n|>n) \end{align} and hence $\lim_{n\to\infty}\mathbb P(|X_n|>n)=0$. Further, $$\bigcap_{k=n}^\infty \{|X_k|>k\}\subset\{|X_n|>n\}$$ so that \begin{align} \mathbb P\left(\limsup_{n\to\infty} |X_n|\leqslant n\right) &= \mathbb P\left(\bigcap_{n=1}^\infty\bigcup_{k=n}^\infty\{|X_k|\leqslant k\}\right)\\ &=1 - \mathbb P\left(\bigcup_{n=1}^\infty\bigcap_{k=n}^\infty \{|X_k|>k\} \right)\\ &=1 - \mathbb P\left(\lim_{n\to\infty} \bigcap_{k=n}^\infty\{|X_k|>k\} \right)\\ &=1 - \lim_{n\to\infty}\mathbb P\left(\bigcap_{k=n}^\infty\{|X_k|>k\}\right)\\ &\geqslant1 - \lim_{n\to\infty}\mathbb P(|X_n|>n)\\ &= 1, \end{align} which implies that $$\mathbb P\left(\limsup_{n\to\infty} \frac{|X_n|}n\leqslant 1 \right)=1.$$ - How do you know the first equation? From the contrapositive of the direct result of BCL1? Anyway answer looks good \m/ – BCLC Nov 26 '15 at 4:43 By Borel Cantelli lemma we have that $$P( \liminf_{n \to \infty} \{ |X_n| \leq n \}) = P( \{|X_n| \leq n \text{ eventually } \} )= 1$$ In words this means than almost surely, the sequence $|X_n|$ is below $n$ for all $n$ sufficently large. I think you can take it from here. - Thank you very much. May I ask you something more? How can we pass from the probability to the limit suprermum of the inequality? – johan paul Jul 7 '13 at 13:29 If $|X_n|$ can't surpass $n$ for $n$, then what happens to $\frac{|X_n|}{n}$?. Also remember that the limsup of a sequence is its largest acummulation point. – Bunder Jul 7 '13 at 13:42 but this equality is true only if the events are independent, which in my case are not. Am I right? – johan paul Jul 7 '13 at 14:50 We used the "original" Borel Cantelli which does not need independence of the events. The converse (i.e $\sum P(\ldots) = \infty \Rightarrow P( \ldots i.o) = 1$) requires independence. Check en.wikipedia.org/wiki/Borel%E2%80%93Cantelli_lemma – Bunder Jul 7 '13 at 15:01 Important inequalities (Probability w/ Martingales): 1, 2 1. $$\liminf x_n > z \to \liminf(x_n > z)$$ 2. $$\liminf x_n < z \to \limsup(x_n < z)$$ By BCL1, we have $P(\limsup (|X_n| > n)) = 0$ $$\to P(\liminf (|X_n| \le n)) = 1$$ $$\to P(\liminf (|X_n|/n \le 1)) = 1$$ $$\to P([\limsup |X_n|/n] \le 1)) = 1$$ The last step follows by the contrapositive of 2 (see above) -
2016-06-27T22:41:03
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/438118/prove-that-limsup-n-to-infty-x-n-n-le1-almost-surely", "openwebmath_score": 0.9833565950393677, "openwebmath_perplexity": 1239.2350335219935, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9706877726405083, "lm_q2_score": 0.8652240825770432, "lm_q1q2_score": 0.8398624375516373 }
https://icelf.com.br/naval-meteorology-hqrt/d78540-frequency-polygon-pdf
Frequency table. Menu Skip to content. What are frequency polygons? Frequency polygons give an idea about the shape of the data and the trends that a particular data set follows. When working with data, these can be 2 of the more difficult graphical representations to understand. (a) (b) (c) Question 3: For each frequency polygon, complete the frequency table. RS Aggarwal Class-9 Mean Median of Ungroup Data And Frequency Polygon ICSE Maths Goyal Brothers Prakashan Chapter-16. The Corbettmaths Practice Questions on Frequency polygons. This frequency diagram shows the heights of $${200}$$ people: You can construct a frequency polygon by joining the midpoints of the tops of the bars. On the graph paper below, draw a frequency polygon to show this data_ Frequency 100 200 300 Height, h 500 . Secure learners will be draw a frequency polygon from a grouped frequency table. Frequency polygons are a very simple way of showing frequencies for continuous, grouped data and give a quick guide to how frequencies change from one class to the next; What do I need to know? One way to form a frequency polygon is to connect the midpoints at the top of the bars of a histogram with line segments (or a smooth curve). We have created Math worksheets to help your child understand histograms and frequency polygons. This is achieved by overlaying the frequency polygons drawn for different data sets. Frequency Polygons. For the first group, halfway between 0 and 16 is 8 – this is the midpoint. endobj 9.4.1 Frequency Polygons Download PDF. The adjacent dots are then joined by straight lines. The frequency polygon can serve as an alternative to a histogram Histogram A histogram is used to summarize discrete or continuous data. The corresponding frequencies are then considered to create the frequency polygon. Ø The Frequency Polygon is a curve representing a frequency distribution. x���]o�0��#�?�K�ĉ��KU�R�F]RMUՋ���c�b�~��E�;��$��s��{bGg��졜���$:[�����n�b����o�*��Y]�g�:�?����Uy_�NO��K!��1L����0���G Interval $$(\text{130};\text{140}]$$ (a) (b) (c) Question 2: Draw a frequency polygon for each table of information below. Videos, worksheets, 5-a-day and much more The shape of the distribution can be determined from the created frequency polygon. The Corbettmaths video on Frequency Polygons. ... Download as PDF; Printable version; In other languages. We first create the table of counts for the new data set. Ø In a graph paper, the frequency of each class is plotted against the mid-value of class (on the … (3) (b) Write down the modal class interval. 1 0 obj midpoints of the tops of the bars. Figure 3 provides an example. What are frequency polygons? The frequency polygon is drawn on axes the same as the histogram – the scores on the horizontal axis and the frequency on the vertical axis. Printable PDF Histograms and Frequency Polygon Worksheet with Answers. Ready-to-use mathematics resources for Key Stage 3, Key Stage 4 and GCSE maths classes. Create and interpret frequency polygons; Create and interpret cumulative frequency polygons; Create and interpret overlaid frequency polygons; Frequency polygons are a graphical … The graph is the same as before except that the $$Y$$ value for each point is the number of students in the corresponding class interval plus all numbers in lower intervals. For the first group, halfway between 0 and 16 is 8 – this is the midpoint. Time (t minutes) 40 40 50 Frequency 14 16 (a) Draw a frequency polygon for this information. There are three scores in this interval. The data come from a task in which the goal is to move a computer cursor to a target on the screen as fast as possible. 5-a-day GCSE 9-1; 5-a-day Primary; 5-a-day Further Maths; 5-a-day GCSE A*-G; 5-a-day Core 1; More. Practice. Create Assignment. Frequency Polygons: Theory and Application DAVID W. SCOTT* In this article I investigate the theoretical properties and appli- cations of the frequency polygon, which is constructed by con- necting with straight lines the mid-bin values of a histogram. Frequency polygon: a line graph with the x-axis representing values (or midpoints of intervals) and the y-axis representing frequencies; a dot is placed at the frequency for each value (or midpoint), and the dots are connected. Main: Walkthrough examples followed by practice questions on worksheets. A frequency polygon is a line graph created by joining all of the top points of a histogram. Corbettmaths Videos, worksheets, 5-a-day and much more. Show page numbers . Example 2–5 shows the procedure for constructing a frequency polygon. Words: 358; Pages: 2; Preview; Full text; Frequency histogram and polygon The frequency histogram is like a column graph without the spaces between columns. A plot of the cumulative frequency against the upper class boundary with the points joined by line segments. Showing top 8 worksheets in the category - Frequency Polygons. The resulting graph is known as frequency polygon. A frequency polygon for 642 psychology test scores is shown in Figure 1. Abstract. "(a) Draw a frequency polygon to show this information on the diagram above. The frequency polygon can serve as an alternative to a histogram Histogram A histogram is used to summarize discrete or continuous data. A cumulative frequency polygon for the same test scores is shown in Figure $$\PageIndex{2}$$. Please update your bookmarks accordingly. A frequency diagram, often called a line chart or a frequency polygon, shows the frequencies for different groups. Plotting the x-intercepts and y-values of the interval midpoints. Frequency polygons are analogous to line graphs, and just as line graphs make continuous data visually easy to interpret, so too do frequency polygons. On the other hand, I hope this reviews about it Essential Of Understanding Psychology 12th Edition Pdf And Frequency Polygon Definition Psychology will be usefu The table shows a grouped frequency distribution of the results. We have created Math worksheets to help your child understand histograms and frequency polygons. Histograms can often confuse students because although they look similar to a bar chart, they are used for different purposes. endobj An example … The frequencies are represented by the heights of the points. �P(g Cumulative Frequency Polygon. Download PDF . (b) Compare the distributions. This document was uploaded by user and they confirmed that they have the permission to share Any continuous cumulative frequency curve, including a cumulative frequency polygon, is called an ogive. This indicates how strong in your memory this concept is. of Plants 2.5-3.5 4 3.5-4.5 6 4.5-5.5 10 5.5-6.5 26 Next Medians and Quartiles from Grouped Frequency Tables and Histograms Video (2) "(b) Compare the times taken by the 100 girls and 100 boys. Main: Walkthrough examples followed by practice questions on worksheets. % Progress . SHOPPING Frequency Polygon Psychology And Health Psychology Taylor 7th Edition Pdf Frequency Polygon Psychology And Health Psychology Taylor 7th Edition Pdf Rev Time (t minutes) Frequency 0 < t 10 4 10 < t 20 8 20 < t 30 14 30 < t 40 16 40 < t 50 6 50 < t 60 2 (a) Draw a frequency polygon for this information. The Corbettmaths Practice Questions on Frequency polygons. 4 The frequency table shows the heights, in cm, of some tomato plants. The frequency table gives information about the times it took some office workers to get to the office one day. Secure learners will be draw a frequency polygon from a grouped frequency table. The number of words in each of 100 sentences in a book was counted. The table below shows how many clubs they attend. The frequency chart below shows the results of the table. 0 140 5 10 15 20 Frequency Height (cm) 190 Height (cm) Frequency 140 < h 150 7 150 < h 160 10 160 < h 170 15 170 < h 180 19 180 < h 190 9. Tes Global Ltd is registered in England (Company No 02017289) with its registered office … Developing learners will be able to complete a grouped frequency table for a set of data. 3 0 obj Using knowledge on shapes, students answer frequency polygon questions in this worksheet and interactive quiz. In other words, a histogram provides a visual interpretation of numerical data by showing the number of data points that fall within a specified range of values (called “bins”). It is used to depict the shape of the data and to depict trends. The frequency table gives information about the times it took some office workers to get to the office one day. 1. �˲nj�E:���e=�VUw������['(��w�!���.�h��7��e�w�)d� ��T���^��]i�� <>/Metadata 140 0 R/ViewerPreferences 141 0 R>> The relevance of presentation of data in the pictorial or graphical form is immense. Ø In a graph paper, the frequency of each class is plotted against the mid-value of class (on the … (1) Frequency diagrams. The frequency polygon is a special line graph used in statistics. More details. The point labeled 45 represents the interval from 39.5 to 49.5. The steps are as follows: 1. 9.1.2 Frequency Polygons Download PDF. Developing learners will be able to complete a grouped frequency table for a set of data. 20 40 60 80 120 5 The frequency table shows the speeds of 100 cars. Example Draw frequency polygon for the following data Seed Yield (gms) No. 2.5: Frequency Polygons Last updated; Save as PDF Page ID 2086; Contributed by David Lane; Associate Professor (Psychology, Statistics, and Management) at Rice University; Contributor ; Learning Objectives. <> The result is not actually a polygon but more of an open one that ‘floats’ in mid-air! Sam says his students are the best archery students. If you are author or own the copyright of this book, please report to us by using this DMCA A frequency polygon is sometimes used to represent the same information as in a histogram.A frequency polygon is drawn by using line segments to connect the middle of the top of each bar in the histogram.This means that the frequency polygon connects the coordinates at the centre of each interval and the count in each interval. �Q(8\$��pXUa�� �a��@���0h����e2�h0/������17Y��d���-��sJ�x�D'�1a�!��pj;�sbf�0�mA��wa��(����e�&����dڎ��Xɴid=R2)QMF2Ȏ%cc�/c?�3(ڢ5�vG��;�;��~�������byf�[7���~�F���D����y�I� �E Similarly, the bar for a time of 3 will begin at 2.5 and end at 3.5. 15 10 O IOO 200 300 400 Reaction time (ms) frequency polygon If you draw a histogram on the same graph shows the reaction times the frequency polygon JOIns together the of a class of students. This is usually done to compare one variable with two or more categories or to compare two variables for one given category. 10 20 30 40 Time (t minutes) Start by working out the midpoints of the class Intervals. Creating a Frequency Histogram and Cumulative Frequency Polygon in Excel GEOG 326 Winter 2011 Section Handout . Sam and Jessica can use a frequency polygon to compare their data and see, once and for all, who has the best archery students. The rst label on the X-axis is 35. Solution A time of 5 hours actually means a time that is greater than or equal to 4 1 2 hours but is less than 5 1 2 hours, so the bar representing this time on the bar chart will begin at 4.5 and end at 5.5. The frequency table gives information about the times it took some office workers to get to the office one day. A frequency polygon is a graphical form of representation of data. Printable PDF Histograms and Frequency Polygon Worksheet with Answers. Whether you want a homework, some cover work, or a lovely bit of extra practise, this is the place for you. A piecewise linear competitor to the frequency polygon, the edge frequency polygon, is proposed: instead of joining histogram ordinates at midpoints of bins by straight lines, one connects values at bin edges by straight lines, those values being averages of contiguous histogram ordinates. Fig 1: Frequency polygon of the distribution of the marks obtained by 50 students in the pre-test examination. (a) On the same grid, draw a frequency polygon for the boys and a frequency polygon for the girls. When working with data, these can be 2 of the more difficult graphical representations to understand. "The frequency polygon shows the time taken for 100 boys to solve a maths "question. Assign to Class. In other words, a histogram provides a visual interpretation of numerical data by showing the number of data points that fall within a … Report DMCA, Frequency histogram and polygon The frequency histogram is like a column graph without the spaces between columns. Frequency Polygon. arrow_back Back to Frequency Diagrams and Frequency Polygons Frequency Diagrams and Frequency Polygons: Worksheets with Answers. Further Maths; Practice Papers; Conundrums; Class Quizzes; Blog; About ; Revision Cards; Books; August 23, 2012 … Progress % Practice Now. Ø In frequency polygon, the mid values of each class are first obtained. %PDF-1.7 Of course the midpoints themselves could easily be plotted without the histogram and be joined by line segments. Let us discuss how to represent a frequency polygon. Frequency polygons are a very simple way of showing frequencies for continuous, grouped data and give a quick guide to how frequencies change from one class to the next; What do I need to know? Maths Worksheets / Statistics Worksheets / Histograms and Frequency Polygon Worksheets in PDF. (3). MEMORY METER. The midpoint of any group is the number that lies halfway between the two boundaries. Frequency Polygon. The first step towards constructing a frequency polygon is to add another column to this table: MIDPOINTS. 20 15 Frequency 10 0 30 40 50 60 70 0 10 2 'lime. It is usually drawn with the help of a histogram but can be drawn without it as well. It is primarily an office suite that comes with multiple office software like LibreOffice Calc, LibreOffice Writer, LibreOffice Impression, LibreOffice Draw, etc. 12 13 17 Number of words (w) 3 w 7 Frequency On the graph paper below, draw a frequency polygon to show this data_ 9. Histograms can be useful in displaying data for more than one variable as well. Jessica and Sam are archery coaches at rival high schools. Similarly, the last class interval is extended to the right by the same amount as the end point of the frequency polygon. Unless one of the frequencies is 0 do not join the frequency polygon to the x-axis; and do not join the first point to the last one. It takes the form of a segmented line that joins the midpoint of the top of each rectangle in a histogram. However, a histogram, . Frequency Polygons Videos 155 and 156 on www.corbettmaths.com *There are templates for Questions 1 and 2 at the end of this exercise Question 1: Draw a frequency polygon for each table of information below. This website and its content is subject to our Terms and Conditions. (Total for Question 5 is 2 marks) Draw a frequency polygon to show this information. 6. "The table shows the times taken by 100 girls to answer the same question. LibreOffice is a free open source frequency polygon maker software for Windows, Linux, and macOS. In situations where the midpoint is unclear, simply add up the two values and divide by 2. Draw the frequency polygon for this data set using the same interval length as in the previous example.Then compare the two frequency polygons on one graph to see the differences between the distributions. it. This represents an interval extending from 29.5 to 39.5. Download & View Frequency Polygon.pdf as PDF for free. In frequency polygons we plot the midpoints We then connect our points with straight lines Time Frequency . The area under a histogram and under a frequency polygon is the same because of the fact that we extend the first class interval to the left by half the size of class interval as the starting point of the frequency polygon. Excelling learners will be able to solve unfamiliar problems involving frequency polygons. You may be asked to draw a frequency polygon and/or use it to make comments and compare data. endobj Frequency polygons are a visually substantial method of representing quantitative data and its frequencies. <> 2 0 obj To create a frequency polygon, follow these steps: Create a histogram ; (Total for Question 4 is 2 marks) Draw a frequency polygon to show this information. Differentiate between a frequency polygon and frequency curve. %���� Let us learn the step by step process of drawing a frequency polygon, with or without a histogram. Maths Worksheets / Statistics Worksheets / Histograms and Frequency Polygon Worksheets in PDF. report form. Add links. <>/ExtGState<>/Font<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 595.32 841.92] /Contents 4 0 R/Group<>/Tabs/S/StructParents 0>> The information in a frequency distribution table can be used to draw these graphs. Videos, worksheets, 5-a-day and much more These graphs can be drawn separately or combined. We have moved all content for this concept to for better organization. And best of all they all … Histograms can often confuse students because although they look similar to a bar chart, they are used for different purposes. Histograms and Frequency Polygon Worksheets in PDF. In this lesson, learn how freque… The graph is the same as before except that the Y value for each point is the number of students in the corresponding class interval plus all numbers in lower intervals. The Corbettmaths video on Frequency Polygons. To construct a frequency polygon, first examine the data and decide on the number of intervals, or class intervals, to use on the x -axis and y … stream Score 11 12 13 14 15 16. Draw a frequency polygon to show this information. Worksheets suited for students in KS 4. 3 Worksheets consisting over 40 Questions related to interpreting frequency polygon graphs, constructing cumulative frequency tables, constructing ogive graphs, interpreting and extracting data from ogive graphs, calculating first quartile, 3rd quartile and interquartile range. A histogram is similar to a vertical bar graph. Frequency Polygon The steps for creating a frequency polygon are very similar to those used to create a histogram. 0 140 5 10 15 20 Frequency Height (cm) 190 Height (cm) Frequency 140 < h 150 7 150 < h 160 10 160 < h 170 15 170 < h 180 19 180 < h 190 9 So, who's right? Frequency polygons are useful for comparing distributions. Illustrate the data using a bar chart and a frequency polygon. Histograms and Frequency Polygon Worksheets in PDF. The frequency polygon is a special line graph used in statistics. A cumulative frequency polygon for the same test scores is shown in Figure 2. The midpoint of any group is the number that lies halfway between the two boundaries. Steps to Draw Frequency Polygon. Jessica says her students are the best archery students. (3). Ø The Frequency Polygon is a curve representing a frequency distribution. Jessica claims that her students can shoot more bull's-eyes overall than Sam's students. Time (t minutes) Frequency 0 < t 10 4 10 < t 20 8 20 < t 30 14 30 < t 40 16 40 < t 50 6 50 < t 60 2 (a) Draw a frequency polygon for this information. Since the lowest test score is 46, this interval has a frequency of 0. A frequency polygon is a graphical representation of a frequency distribution, which fits to the histogram of the frequency distribution. Construct frequency polygons. FREQUENCY on the vertical axjs. Preview ; Assign Practice; Preview. The frequency polygon is a graph that displays the data by using lines that connect points plotted for the frequencies at the midpoints of the classes. Using knowledge on shapes, students answer frequency polygon questions in this worksheet and interactive quiz. It is a type of frequency plot. Frequency Polygons Videos 155 and 156 on www.corbettmaths.com Question 5: 50 boys and 50 girls attend a primary school. A frequency polygon is one of several types of graphs used to describe a relatively large set of quantitativedata. These graphs can be drawn separately or combined. Ø In frequency polygon, the mid values of each class are first obtained. The first step towards constructing a frequency polygon is to add another column to this table: MIDPOINTS. Enter original data for case study (hint: use Data>Text to Columns after a copy and paste) Number of Working Hours for 50 People in a Week �ºL�3��K!��q���)�j�J�. The frequency polygon is shown in the following figure. Showing top 8 worksheets in the category - Frequency Polygons. We provide step by step Solutions of Exercise / lesson-16 Mean Median of Ungroup Data And Frequency Polygon ( Statistics ) for ICSE Class-9 RS Aggarwal Mathematics .. Our Solutions contain all type Questions with Exe-16 (A), Exe-16 (B), Exe-16 (C), with Notes to … For example, there are no scores in the interval labeled "35," three in the interval "45," and 10 in the interval "55." Histograms and Frequency Polygons for Two Variables. 4 0 obj Frequency Polygon The frequencies of the classes are plotted by dots against the mid-points of each class. Goyal Brothers Prakashan Exe-16 (A), RS Aggarwal Class-9 Mean Median of Ungroup Data And Frequency Polygon … (minutes) (3) (b) Write down the modal class interval. Excelling learners will be able to solve unfamiliar problems involving frequency polygons. Frequency Polygon. Frequency Polygon. The major difference between a frequency polygon and frequency curve is that the drawing of a frequency polygon by joining points by a straight line while the drawing of a frequency curve takes place by a smooth hand. Welcome; Videos and Worksheets; Primary; 5-a-day. (3) (b) Write down the modal class interval. Bar chart and a frequency polygon for this information plot the midpoints could. Freque… Differentiate between a frequency polygon is a special line graph used statistics!: Worksheets with Answers ( Company No 02017289 ) with its registered office … Corbettmaths! For more than one variable with two or more categories or to two! With its registered office … the first step towards constructing a frequency polygon is a curve representing a polygon! \Pageindex { 2 } \ ) bull's-eyes overall than Sam 's students connect points. With the points to a vertical bar graph polygon from a grouped frequency table be... This data_ frequency 100 200 300 Height, h 500 when working with data, these frequency polygon pdf used. Concept is 8 – this is the midpoint is unclear, simply add up the two boundaries 50 boys a. Relevance of presentation of data how strong in your memory this concept to for better organization represents an extending... Data in the following data Seed Yield ( gms ) No the time for! But can be useful in displaying data for more than one variable with two or more categories or to two! Many clubs they attend and divide by 2 the data using a bar chart, are... Gms ) No be 2 of the distribution of the classes are plotted by dots the... In the pictorial or graphical form of representation of data they attend the same grid Draw... The bar for a time of 3 will begin at 2.5 and end at 3.5 copyright of book! Overlaying the frequency polygon to frequency polygon pdf this data_ frequency 100 200 300 Height, h 500 variable. Pdf histograms and frequency polygons drawn for different data sets frequency diagram, often called a line or. Midpoint of frequency polygon pdf group is the number that lies halfway between 0 16! Variables for one given category says her students are the best archery students ( 2 ) (... Report DMCA, frequency histogram and polygon the frequency histogram and be joined by line segments of some tomato.! Printable PDF histograms and frequency polygons we plot the midpoints we then connect our points with straight lines time.... The marks obtained by 50 students in the pictorial or graphical form of a histogram, learn how Differentiate. 3, Key Stage 4 and GCSE maths classes with two or more categories or to compare one as! More of an open one that ‘ floats ’ in mid-air Seed Yield ( gms No. Continuous data these can be determined from the created frequency polygon for the new data set that have. Or more categories or to compare one variable as well more Developing learners will be Draw a frequency polygon serve... } ; \text { 130 } ; \text { 130 } ; \text { 130 } ; \text 140. 155 and 156 on www.corbettmaths.com Question 5 is 2 marks ) Draw frequency... Seed Yield ( gms ) No b ) ( 3 ) ( c ) Question 2: Draw frequency. Of quantitativedata drawn for different groups 's students with two or more categories or to compare two for. Much more Developing learners will be able to solve unfamiliar problems involving frequency polygons frequency Diagrams and frequency worksheet... Histogram histogram a histogram but can be drawn without it as well of... Is usually drawn with the points joined by straight lines time frequency polygon worksheet with Answers compare one variable two! You are author or own the copyright of this book, please report to us using! Pdf ; printable version ; in other languages, with or without a histogram -G ; 5-a-day working with,... Two or more categories or to compare one variable as well method of representing quantitative data its... Data for more than one variable with two or more categories or to compare two variables for given. Times it took some office workers to get to the office one day Developing learners be. We plot the midpoints of the more difficult graphical representations to understand Primary ; 5-a-day 9-1! Says his students are the best archery students Differentiate between a frequency polygon for same! To depict the shape of the interval from 39.5 to 49.5 or a lovely bit of extra,. Is not actually a polygon but more of an open one that ‘ floats ’ in mid-air different groups overall... Compare one variable as well takes the form of representation of a frequency polygon is a graphical representation a... For Key Stage 4 and GCSE maths classes and interactive quiz spaces between columns ) Question 3: for frequency. More of an open one that ‘ floats ’ in mid-air 20 30 40 50 frequency 14 16 ( ). Spaces between columns ) 40 40 50 60 frequency polygon pdf 0 10 2 'lime 2 marks ) a. Of data this document was uploaded by user and they confirmed that they have the permission share... Use it to make comments and compare data form is immense we create! Straight lines one given category that joins the midpoint of any group the... Girls to answer the same amount as the end point of the data and frequency polygon 642... Rs Aggarwal Class-9 Mean Median of Ungroup data and its content is subject our! The right by the same amount as the end point of the top each. { 130 } ; \text { 140 } ] \ ) each frequency polygon to show this data_ frequency 200... 3 will begin at 2.5 and end at 3.5 this document was uploaded by user and they confirmed they. A set of quantitativedata problems involving frequency polygons 80 120 5 the frequency the! Is one of several types of graphs used to describe a relatively large set of data Differentiate a. Polygons are a visually substantial method of representing quantitative data and frequency polygon for the and! Variable with two or more categories or to compare two variables for one given category the procedure constructing! Any group is the place for you distribution, which fits to office... Table can be determined from the created frequency polygon is a special line graph used in statistics in. Halfway between the two boundaries polygon questions in this worksheet and interactive quiz knowledge on shapes students... Arrow_Back Back to frequency Diagrams and frequency polygons: Worksheets with Answers an ogive add up the boundaries. We plot the midpoints themselves could easily be plotted without the histogram and be joined by segments. Gcse a * -G ; 5-a-day Primary ; 5-a-day Seed Yield ( gms No... One that ‘ floats ’ in mid-air \PageIndex { 2 } \ (. Gives information about the times taken by 100 girls and 100 boys of graphs to. Is 46, this is the midpoint of the distribution can be 2 the! Values of each rectangle in a histogram they have the permission to share it will be a. And much more Developing learners will be able to complete a grouped table! Gcse maths classes paper below, Draw a frequency polygon to show this information two variables one... The mid values of each rectangle in a histogram is used to Draw a polygon! Drawn with the points will be able to solve a maths ` Question frequencies of the data a... England ( Company No 02017289 ) with its registered office … the Corbettmaths video frequency! Unfamiliar problems involving frequency polygons: Worksheets with Answers by working out frequency polygon pdf midpoints we then connect our points straight! } \ ) Corbettmaths Videos, Worksheets, 5-a-day and much more was counted mid values each. That her students can shoot more bull's-eyes overall than Sam 's students example Draw frequency polygon Worksheets in.! Question 4 is 2 marks ) Draw a frequency polygon and frequency curve of. Pictorial or graphical form of a segmented line that joins the midpoint is unclear, simply add up the boundaries. A frequency polygon from a grouped frequency table shows the heights, in frequency polygon pdf, of some plants... The table shows a grouped frequency table gives information about the times it took office. Is 8 – this is achieved by overlaying the frequency polygon constructing a frequency.. ) Question 3: for each table of information below the cumulative frequency,! Depict the shape of the distribution of the top of each class at 3.5 to! And 16 is 8 – this is achieved by overlaying the frequency polygon questions in this worksheet and interactive....: midpoints a histogram histogram a histogram joins the midpoint of any group is the place you... Attend a Primary school, halfway between 0 and 16 is 8 – this is the number that lies between... To get to the histogram of the more difficult graphical representations to understand, of tomato... Boys and 50 girls attend a Primary school Median of Ungroup data and frequencies... Polygon are very similar to a histogram histogram a histogram but can be used to Draw a frequency polygon a... An interval extending from 29.5 to 39.5 polygon are very similar to a histogram Walkthrough examples by. Frequency polygon for this frequency polygon pdf 2 } \ ) ( b ) Write the... Representations to understand we then connect our points with straight lines time frequency ‘ floats ’ in mid-air understand! Is 8 – this is achieved by overlaying the frequency polygon Worksheets in.. That they have the permission to share it polygon shows the procedure for constructing a frequency polygon 642! To for better organization whether you want a homework, some cover work or..., often called a line chart or a lovely bit of extra practise, is! Worksheets in PDF Corbettmaths Videos, Worksheets, 5-a-day and much more or without a.... How strong in your memory this concept is against the upper class boundary with the points joined straight... ; Videos and Worksheets ; Primary ; 5-a-day Core 1 ; more in mid-air 2: Draw frequency!
2021-08-05T11:36:38
{ "domain": "com.br", "url": "https://icelf.com.br/naval-meteorology-hqrt/d78540-frequency-polygon-pdf", "openwebmath_score": 0.38915911316871643, "openwebmath_perplexity": 1403.8166668182068, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.9706877700966099, "lm_q2_score": 0.8652240704135291, "lm_q1q2_score": 0.8398624235436207 }
http://forum.math.toronto.edu/index.php?action=printpage;topic=2413.0
# Toronto Math Forum ## MAT334--2020F => MAT334--Lectures & Home Assignments => Chapter 1 => Topic started by: caowenqi on October 01, 2020, 05:26:28 PM Title: why complex plane closed Post by: caowenqi on October 01, 2020, 05:26:28 PM why the complex plane is both open and closed? why did it close? Because by definition, a set is called closed if it contains its boundary. And I don't see the complex plane contains its boundary. Title: Re: why complex plane closed Post by: Kuba Wernerowski on October 01, 2020, 09:05:13 PM I used to be really confused by this until I really looked at the definitions of closed and open sets. By definition, a set $S$ is closed if $S^c$ is open, and vice-versa. The empty set $\emptyset$ trivially has nothing but interior points, and also trivially includes its boundary. This took me a while to internalize, but I think it's easiest to just ¯\_(ツ)_/¯  and accept it. Since $\emptyset$ is open, then $\emptyset^c = \mathbb{C}$ is closed. And since $\emptyset$ is closed, then $\emptyset^c = \mathbb{C}$ is open. Therefore, $\mathbb{C}$ is both open and closed. Title: Re: why complex plane closed Post by: Lubna Burki on October 01, 2020, 09:37:19 PM You can also use the different properties to argue that both the empty set and complex plane are open and by complementarity both are closed. Specifically referring to those listed in JB's lecture as attatched, (1) says that the set S is open iff the intersection between S and its boundary is the empty set. For the empty set itself, the intersection between the empty set and its boundary (also the empty set) is the empty set. So the empty set is open. By (2), the complex plane is a neighborhood of every element in the complex plane by definition. so (2) is satisfied. By (4), since the complement of the empty set is the entire plane, then the entire complex plane must also be closed. Vice versa to conclude that both the empty set and complex plane are open and closed at the same time. Title: Re: why complex plane closed Post by: Victor Ivrii on October 03, 2020, 04:46:26 AM why the complex plane is both open and closed? why did it close? Because by definition, a set is called closed if it contains its boundary. And I don't see the complex plane contains its boundary. And what is the boundary of $\mathbb{C}$?
2021-01-22T16:46:00
{ "domain": "toronto.edu", "url": "http://forum.math.toronto.edu/index.php?action=printpage;topic=2413.0", "openwebmath_score": 0.5378270149230957, "openwebmath_perplexity": 484.96866995014017, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9706877675527114, "lm_q2_score": 0.8652240686758841, "lm_q1q2_score": 0.8398624196558677 }
https://chrispiech.github.io/probabilityForComputerScientists/en/examples/random_shuffles/
# Random Shuffles Here is a suprising claim. If you shuffle a standard deck of cards seven times, with almost total certainty you can claim that the exact ordering of cards has never been seen! Wow! Let's explore. We can ask this question formally as: What is the probability that in the $n$ shuffles seen since the start of time, yours is unique? ### Orderings of 52 Cards Our adventure starts with a simple observation: there are very many ways to order 52 cards. But exactly how many unique orderings of a standard deck are there? There are 52! ways to order a standard deck of cards. Since each card is unique (each card has a unique suit, value combination) then we can apply the rule for Permutations of Distinct Objects: \begin{align*} \text{Num. Unique Orderings} &= 52! \end{align*} That is a humongous number. 52! equals 80658175170943878571660636856403766975289505440883277824000000000000. That is over $8 \cdot 10^{67}$. Recall it is estimated that there are around $10^{82}$ atoms in the observable universe ### Number of Shuffles Ever Seen Of course we don't know what the value of $n$ is — nobody has been counting how many times humans have shuffled cards. We can come up with a reasonable overestimate. Assume $k$ = 7 billion people have been shuffling cards once a second since cards were invented. Playing cards may have been invented as far back as the Tang dynasty in the 9th century. To the best of my knowledge the oldest set of 52 cards is the Topkapı deck of cards in Istanbul around the 15th century ad. That is about $s$ = 16,472,828,422 seconds ago. As such our overestimate is $n = s \cdot k \approx 10^{20}$. Next let's calculate the probability that none of those $n$ historical shuffles matches your particular ordering of 52 cards. There are two valid approaches: using equally likely outcomes, and using independence. ### Equally Likely Outcomes One way to the probability that your ordering of 52 cards is unique in history is to use Equally Likely Outomces. Consider the sample space of all the possible ordering of all the cards ever dealt. Each outcome in this set will have $n$ card decks each with their own ordering. As such the size of the sample space is $|S| = (52!)^{n}$. Note that all outcomes in the sample space are equally likely — we can convince ourselves of this by symmetry — no ordering is more likely than any other. Out of that sample space we want to count the number of outcomes where none of the orderings matches yours. There are $52! - 1$ ways to order 52 cards that are not yours. We can construct the event space by steps: for each of the $n$ shuffles in history select any one of those $52! - 1$ orderings. Thus $|E| = (52!-1)^n$. Let $U$ be the event that your particular ordering of 52 cards is unique \begin{align*} \P(U) &= \frac{|E|}{|S|} && \text{Equally Likely Outcomes}\\ &= \frac{(52!-1)^n}{(52!)^n} \\ &= \frac{(52!-1)^{10^{20}}}{(52!)^{10^{20}}} && n = 10^{20} \\ &= \Big(\frac{52!-1}{52!}\Big) ^{10^{20}} \end{align*} In theory that is the correct answer, but those numbers are so big, its not clear how to evaluate it, even when using a computer. One good idea is to first compute the log probability: \begin{align*} \log \P(U) &= \log \Big[\Big(\frac{52!-1}{52!}\Big) ^{10^{20}}\Big] \\ &= 10^{20} \cdot \log \Big(\frac{52!-1}{52!}\Big) \\ &= 10^{20} \cdot \Big[ \log (52!-1) - \log(52!) \Big] \\ &< 10^{20} \cdot 10^{-45} \\ &< 10^{-25} \end{align*} Now if we undo the log: \begin{align*} \P(U) &= e^{10^{-25} } \\ &= \Big(e^{10} \Big) ^{-25} \\ &= \Big(22026 \Big) ^{-25} \\ &< 1 \cdot 10^{-108} \end{align*} So in English, the probability that someone has ever seen your cards is less than 0.0 followed by 100 zeros before a 1. It is safe to say your ordering is unique. In python, you can use a special library called decimal to compute very small probabilities. Here is an example of how to compute $\log \frac{52!-1}{52!}$: from decimal import * import math n = math.pow(10, 20) card_perms = math.factorial(52) denominator = card_perms numerator = card_perms - 1 # decimal library because these are tiny numbers log_numer = Decimal(math.log(numerator)) log_denom = Decimal(math.log(denominator)) log_pr = log_numer - log_denom # 0E-45 print(log_pr) ### Independence Another approach is to define events $D_i$ that the $i$th card shuffle is different than yours. Because we assume each shuffle is independent, then $P(U) = \prod_i P(D_i)$. What is the probability of $(D_i)$? If you think of the sample space of $D_i$, it is 52! ways of ordering a deck cards. The event space is the 52! - 1 outcomes which are not your ordering. \begin{align*} \P(U) &= \prod_{i=1}^n \P(D_i) \\ \log \P(U) &= \sum_{i=1}^n \log \P(D_i) \\ &= n \cdot \log \P(D_i) \\ &= 10^{20} \cdot \log \frac{52!-1}{52!}\\ &< 10^{20} \cdot 10^{-45} &&\text{See prev. section} \end{align*} Which is the same answer we got with the other approach for $\log \P(U)$ ### How Random is your Shuffle? A final question we can look into. How do you get a truly random ordering of cards? Dave Bayer and Persi Diaconis in 1992 worked through this problem and published their results in the article Trailing the Dovetail Shuffle to its Lair. They showed that if you shuffle a deck of cards seven times using a riffle shuffle also known as the dovetail shuffle, you are almost garunteed a random ordering of cards. The methodology used paved the way for studying psuedo random numbers produced by computers.
2023-03-30T10:59:05
{ "domain": "github.io", "url": "https://chrispiech.github.io/probabilityForComputerScientists/en/examples/random_shuffles/", "openwebmath_score": 0.9999380111694336, "openwebmath_perplexity": 728.3349495215243, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9904406020637528, "lm_q2_score": 0.847967764140929, "lm_q1q2_score": 0.839861702846396 }
https://math.stackexchange.com/questions/2031009/conjecture-for-the-value-of-int-01-frac11xpdx
# Conjecture for the value of $\int_0^1 \frac{1}{1+x^{p}}dx$ While browsing the post Is there any integral for the golden ratio $\phi$?, I came across this nice answer, $$\int_0^\infty \frac{1}{1+x^{10}}dx=\frac{\pi\,\phi}5$$ it seems the general form is just $$p \int_0^\infty \frac{1}{1+x^{p}}dx=\color{blue}{\frac{\pi}{\sin\big(\tfrac{\pi}{p}\big)}}$$ I wondered about $$\int_0^\color{red}1 \frac{1}{1+x^p}dx=\,?$$ Mathematica could find messy closed-forms for $p=5,7$. After some laborious simplification, $$5\int_0^1 \frac{1}{1+x^5}dx=\frac{\pi\sqrt{\phi}}{5^{1/4}}+\ln2+\sqrt{5}\ln\phi$$ Question 1: In general, is it true that for any $p$ , $$2p\,\int_0^1 \frac{1}{1+x^p}dx=\color{blue}{\frac{\pi}{\sin\big(\tfrac{\pi}{p}\big)}}+2\ln2-\psi\big(\tfrac{1}{p}\big)+\psi\big(\tfrac{p-1}{2p}\big)+\psi\big(\tfrac{p+1}{2p}\big)-\psi\big(\tfrac{p-1}{p}\big)$$ where $\psi(z)$ is the digamma function? Note: The four digammas, implemented in Mathematica as PolyGamma[z], can be expressed as a sum of cosines x logarithms for odd $p=2m+1$. Let $k=\frac{2n-1}{p}\pi$, then, $$-\psi\big(\tfrac{1}{p}\big)+\psi\big(\tfrac{p-1}{2p}\big)+\psi\big(\tfrac{p+1}{2p}\big)-\psi\big(\tfrac{p-1}{p}\big)=-4\sum_{n=1}^m \cos (k)\ln\big(\sin\tfrac{k}{2}\big)$$ Question 2: For even $p$, can we can also avoid the digamma by using cosines and logarithms? • Can taylor expansion help? – vidyarthi Nov 26 '16 at 4:11 • When the integral is evaluated by Maxima, which is similar to Mathematica, it uses factorization of denominator followed by partial fraction and some substitutions to get a complicated expression involving series of logarithms and the arctan function – vidyarthi Nov 26 '16 at 4:19 • @vidyarthi: Can you put a simplified version of Maxima's result? – Tito Piezas III Nov 26 '16 at 4:22 • here is the image of the final result for $p=10$ taken from integral-calculator.com which uses maxima-imgur.com/iezjQ2u – vidyarthi Nov 26 '16 at 4:29 • You are asking, slightly in disguise, for explicit forms of the sum of the series $$\sum_{n=0}^\infty\frac{(-1)^n}{1+np}=p\sum_{n=0}^\infty\frac{1}{(1+2np)(1+(2n+1)p)}$$ which converges at least for every positive $p$. The "solutions" based on hypergeometric or digamma functions are, if only one looks at the definition of these special functions, mere rewritings of the sum of this series. – Did Nov 26 '16 at 8:46 I'm only going to address Question 1. The expression proposed in Question 1 is true. However, it is a little bit too complicated than necessary. A simpler version of the expression is $$2p\int_0^1 \frac{dx}{1+x^p} = \psi\left(\frac{1}{2p} + \frac12\right) - \psi\left(\frac{1}{2p}\right)$$ From reflection formula, take logarithm and differentiate, we get $$\Gamma(z)\Gamma(1-z) = \frac{\pi}{\sin\pi z} \implies \psi(z) - \psi(1-z) = \pi\cot\pi z$$ This leads to $$\frac{\pi}{\sin z} = \pi\cot\frac{\pi z}{2} - \pi\cot\pi z = \psi\left(\frac{z}{2}\right) - \psi\left(1-\frac{z}{2}\right) - \psi(z) + \psi(1-z)$$ From duplication formula, take logarithm and differentiate, we get $$\Gamma(z)\Gamma\left(z+\frac12\right) = 2^{1-2z}\sqrt{\pi}\Gamma(2z) \implies \psi(z) + \psi\left(z + \frac12\right) = -2\log 2 + 2\psi(2z)$$ Apply these to RHS of Question 1, we can expose RHS to following mess $$\left[ \color{red}{\psi\left(\frac{1}{2p}\right)} - \psi\left(1 - \frac{1}{2p}\right) - \color{green}{\psi\left(\frac{1}{p}\right)} + \color{blue}{\psi\left(1 - \frac{1}{p}\right)} \right] + \left[ \color{green}{2\psi\left(\frac1p\right)} - \color{red}{\psi\left(\frac{1}{2p}\right)} - \color{magenta}{\psi\left(\frac{p+1}{2p}\right)}\right]\\ - \color{green}{\psi\left(\frac{1}{p}\right)} + \psi\left(\frac{p-1}{2p}\right) + \color{magenta}{\psi\left(\frac{p+1}{2p}\right)} - \color{blue}{\psi\left(\frac{p-1}{p}\right)}$$ After massive cancellation, we can simplify RHS to $$\psi\left(\frac{p-1}{2p}\right) - \psi\left(1 - \frac{1}{2p}\right) = \psi\left( 1 - \left(\frac{1}{2p} + \frac12\right)\right) - \psi\left(1 - \frac{1}{2p}\right) = \psi\left(\frac{1}{2p} + \frac12\right) - \psi\left(\frac{1}{2p}\right)$$ Recall following expansion of digamma function $$\psi(z) = \frac{1}{z} + \sum_{n=1}^\infty \left(\frac{1}{z+n} - \frac{1}{n}\right)$$ We find \begin{align} \text{RHS} &= \frac{1}{\frac{1}{2p}} - \frac{1}{\frac{1}{2p} + \frac12} + \sum_{n=1}^\infty\left(\frac{1}{\frac{1}{2p}+n} - \frac{1}{\frac{1}{2p} + n + \frac12}\right)\\ &= 2\sum_{n=0}^\infty\frac{(-1)^n}{\frac{1}{p}+n} = 2\sum_{n=0}^\infty\int_0^1 (-1)^n t^{\frac{1}{p}+n-1} dt = 2\int_0^1 \sum_{n=0}^\infty (-1)^n t^{\frac{1}{p}+n-1} dt\\ &= 2 \int_0^1 \frac{t^{\frac{1}{p}-1}}{1+t} dt = 2p\int_0^1 \frac{dx}{1+x^p} = \text{LHS} \end{align} • Thanks for the confirmation. I started with $p=5$ and arrived at the complicated version which shows that when $p$ is odd, the four digammas (hence the integral) is expressible in terms of elementary functions. However, when $p$ is even, perhaps one has to stay with the digammas. – Tito Piezas III Nov 26 '16 at 11:20 This answer is incomplete as it does not proof all the steps completely: Let us start with the partial fraction expansion $$\tag{1}\frac{p}{1+x^p}=- \sum_{j=1}^p\frac{\omega^{2j-1}}{x-\omega^{2j-1}}$$ with $\omega= e^{i\pi/p}$. Now, we can integrate and obtain $$\int_0^1\!dx \frac{p}{1+x^p} = -\sum_{j=1}^p \omega^{2j-1} \log\left(1-\omega^{1-2j}\right).$$ We can simplify this formula a bit taking the real part. This yields $$\int_0^1\!dx \frac{p}{1+x^p} = \pi\sum_{j=1}^{p} \frac{1-2j+p}{2p} \sin\left(\frac{\pi(1-2j)}{p}\right)+\sum_{j=1}^{p}\cos\left(\frac{\pi(1-2j)}{p}\right) \log\left[2 \sin\left(\frac{\pi(1-2j)}{2p}\right)\right].$$ The first term can be summed explicitly $$\int_0^1\!dx \frac{p}{1+x^p} =\frac{\pi}{2\sin(\pi/p)}+\sum_{j=1}^{p}\cos\left(\frac{\pi(1-2j)}{p}\right) \log\left[2 \sin\left(\frac{\pi(1-2j)}{2p}\right)\right].$$ The second term can be related to the digamma function. Formula (1) can be proven by multiplying the expression by $1+x^p$. For the right hand side, we obtain $$- \sum_{j=1}^p\omega^{2j-1} \prod_{k\neq j} (x-\omega^{2k-1}) = -x^{p-1}\sum_{j=1}^p\omega^{2j-1}+ x^{p-2} \sum_{j=1}^p\omega^{2j-1} \sum_{k,k'\neq j} \omega^{2k-1}\omega^{2k'-1} - \cdots\\+(-1)^p \sum_{j=1}^p\omega^{2j-1} \prod_{k\neq j} \omega^{2k-1}$$ as $1+x^p=\prod_{k=1}^p (x- \omega^{2j-1})$. The result (1) follows from some not so straightforward combinatorics.
2019-09-18T05:48:40
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2031009/conjecture-for-the-value-of-int-01-frac11xpdx", "openwebmath_score": 0.9764515161514282, "openwebmath_perplexity": 409.3370406670765, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.990440601781584, "lm_q2_score": 0.8479677564567913, "lm_q1q2_score": 0.839861694996444 }
https://elagroupgc.com/vidhan-sabha-ljvxhkq/diagonals-uk-and-hs-of-a-rhombus-00d2ea
This entry was posted in Geometry, Grades 6-8, HS Math and tagged diagonal of rhombus perpendicular, diagonal of rhombus perpendicular proof, diagonal of rhombus proof by Math Proofs. All formulas of a rhombus . The two diagonals of a rhombus are perpendicular. A rhombus with equal diagonals; These 6 symmetries express 8 distinct symmetries on a square. There are some specialities about rhombus. Where, A = Area of rhombus. • Explain using diagonals why a square is always a rhombus but a rhombus is not always a … Its a bit like a square that can 'lean over' and the interior angles need not be 90°. Follow us. Question 5. BCA A rhombus is a type of parallelogram, = ½ (9 × 12) = 54. ∴ Given: AB DC is a rhombus. We explain Diagonals of a Rhombus with video tutorials and quizzes, using our Many Ways(TM) approach from multiple teachers. Every rhombus has two diagonals connecting pairs of opposite vertices, and two pairs of parallel sides. Trapezoid. Bookmark the permalink. Write the formula for the area of a rhombus. The diagonals of a square are (about 1.414) times the length of a side of the square. Since the rhombus is the parallelogram which has all the sides of the same length, we can substitute b = a in this formula. Answer: A rhombus has diagonals that are both perpendicular and bisecting each other. 2) Parallelogram. The vertex angles of a kite are (blank) by the diagonal. Rhombus is a flat shape which has 4 equal straight sides, where opposite sides are parallel and opposite angles are equal. ACD. I will say yes. It is very helpful for students to see … Every rhombus has 4 congruent sides so every single square is also a rhombus. Module 9, Lessons 9.3 And 9.4 – Rectangles, Rhombuses, Squares PPT. . OS^2 + OK^2 = KS^2 (12 cm)^2 + (5 cm)^2 = KS^2144 cm^2 + 25 cm^2 = KS^2. \\ Diagonal of a Rhombus Formula: The area of a rhombus can be calculated with the help of diagonals as given A = ½ × d 1 × d 2. The shape below is not a rhombus because its diagonals are not To give you an idea, a rhombus will be shaped some-what like a square, so the diagonals will cross each other like an X on the shape. Let be the diagonals of the rhombus.∴ and ∵ Area of rhombus = ∴ Area of the given rhombus = Chapter Chosen. Rhombus. Therefore, from the Pythagorean Theorem, each side measures. mantle. Play with a rhombus: Area of a Rhombus. d4 is the symmetry of a rectangle, and p4 is the symmetry of a rhombus. the length of a midsegment between two sides of a triangle is (blank) the length of the third side. A rhombus has four equal sides and its diagonals bisect each other at right angles. ACD The area of a rhombus is 168 square centimeters. Students can work individually or in small groups of two or three to allow them to check their answers. A trapezoid is a quadrilateral with exactly … CBSE Gujarat Board Haryana Board. The diagonals of a quadrilateral are perpendicular, what is the most accurate way to classify this quadrilateral? Diagonals of a rhombus always bisect each other at right angles. Learn parallelogram rhombus with free interactive flashcards. agreement between the pope and the ruler … Create a New Plyalist. 1 - Rhombus Calculator given the side and one angle Area of parallelogram is the product of base and it's height. In Euclidean plane geometry, a quadrilateral is a polygon with four edges (sides) and four vertices (corners). Length of a chord of a circle; Height of a segment of a circle; All formulas of a circle; Password Protect PDF Password Protect PDF; Ringtone Download. Performance & security by Cloudflare, Please complete the security check to access. What is the length of its side? The distance between each base is the same, The opposite sides are parallel. = 46° input \overline{BC} \cong \overline{CD} \overline{AB} \cong \overline{BC} \angle AOB = 90^{\circ} A parallelogram is a rhombus if and only if each diagonal bisects a pair of opposite angles. STAR is a rhombus. If one diagonal is three times as long as the other, what are the lengths of the diagonals? So--(b) We will calculate length of both the diagonals. bisect each other. Keep in mind that the question "Is a rhombus a square?" The shape below is a parallelogram. s = length of side of rhombus. The opposite angles of a quadrilateral are … The semi-diagonals have lengths 6/2 = 3, 4/2 = 2. All 4 sides are congruent. wallow or roll, toss about, be in turmoil. Your IP: 159.203.44.130 If angle 4 = 32 degrees, what is angle… parallelogram. The diagonals of a rhombus are 17.6 cm and 13.2 cm respectively. And the diagonals "p" and "q" of a rhombus bisect each other at right angles. 62/87,21 The area A of a rhombus is one half the product of the lengths of its diagonals, d1 and d2 Probably the most famous rhombus out there is the baseball diamond. The length of the diagonals p = AC and q = BD can be expressed in terms of the rhombus side a and one vertex angle α as = + ⁡ and = − ⁡. Rhombus has two diagonals the longer d 1 , and the smaller d 2 Diagonals of a rhombus … 1) side length However, since opposite sides are congruent Area of a Rhombus. and = 44°, A generalization about the angles of a rhombus, You can think of a rhombus as four triangles that are created by the diagonals There are several formulas for the rhombus that have to do with its: Sides (click for more detail). Another way to prevent getting this page in the future is to use Privacy Pass. AD = 6x-18? You may need to download version 2.0 now from the Chrome Web Store. UK = 10 cm. An examples of outside angles are. ZTA? The area of a rhombus can be found when you know the lengths of the diagonals. It has two pairs of equal angles. Proof that The Diagonals of a Rhombus are Perpendicular Posted on 3 March, 2015 by Math Proofs In the previous post, we have proved the converse of the Pythagorean Theorem . (click the answer) 1) Rhombus. Your email address will not be published. \angle COD = 90^{\circ} Find the area and perimeter of a rhombus whose diagonals are 30 and 16 cm, and its side measures 17 cm. For a rhombus, where all the sides are equal, we've shown that not only do they bisect each other but they're perpendicular bisectors of … Side of rhombus given perimeter calculator uses Side of rhombus =perimeter of rhombus/4 to calculate the Side of rhombus , The Side of rhombus given perimeter formula is defined as the line segment that joins two vertices in a rhombus. theorem 2 - opposite angles congruent. 20 Terms. welter. Solve for the other diagonal. Rewrite the conjecture to identify the given information and the statement to prove. 1150 930 5. Mathematics Book Store. Prove parallelogram properties. means Is every rhombus also always a square? Our mission is to provide a free, world-class education to anyone, anywhere. Let. So you can use the Pythagorean theorem opposite sides are parallel; all four sides are equal ; opposite angles are equal; diagonals bisect each other at right angles; two lines of symmetry (which are the diagonals) A rhombus is a special case of a parallelogram with four equal sides. ... rhombus. Like parallelograms, the diagonals bisect each other. A rectangle must have diagonals that are the same length and bisect each other. making the shape a rhombus! Another property of a rhombus is that the diagonals are perpendicular.So, summarizing all the properties above, if we have rhombus , then,. Now, what is true about the diagonals of all parallelograms? The area of a rhombus is half the product of its diagonals. And perimeter of rhombus can be found by two methods. The area is half the product of the diagonals. HS = 24 cm. to find the measure of side TA. The measure of diagonals SA The lengths of the two legs are half the length of each diagonal. If side MN of rhombus LMNO is X + 5 and side LM is 2x − 9, what must be the value A quadrilateral, in general, has sides of different lengths and angles of different measures. 32 degrees. Keep in mind that the question "Is a square a rhombus?" Rhombus. Perimeter of a rhombus. The sum of its interior angles is 360 degrees, by angle sum property of quadrilateral. If not, classify the shape. Add to playlist. idk07. Try thisDrag the orange dots on each vertexto reshape the rhombus. Is the four-sided shape below, MNOP, a rhombus? If a parallelogram is a square, the properties of both a rectangle and a rhombus apply. 3) Rectangle. https://www.khanacademy.org/.../quadrilaterals/v/rhombus-diagonals This lesson will demonstrate how to solve for an unknown diagonal length of a rhombus when given the area. sides. There are four calculators and solvers that may be used depending on which parameters you have and what you need to know. Let s = side of rhombus. 4) Trapezoid. Notice the behavior of the two diagonals. The rhombus gets all the same propertie… parallelogram. Cloudflare Ray ID: 626005457b8ecac4 If you are at an office or shared network, you can ask the network administrator to run a scan across the network looking for misconfigured or infected devices. 19 The diagonals of a rhombus each other 20 The diagonals of a rhombus the from MATH GEOMETRY at South Fayette Twp Hs ACD = 12 + x Mathematics Subject Chosen . The diagonals of a rhombus always cross at right angles. Before talking about the construction of rhombus, let us recall what a quadrilateral is.A quadrilateral is a polygon which has 4 vertices and 4 sides enclosing 4 angles. As diagonals of a rhombus bisect each other. A rhombus is a special type of quadrilateral parallelogram, where the opposite sides are parallel and opposite angles are equal and the diagonals bisect each other at right angles. A proof of this property of the diagonals. of x? \\ Currently only available for. Mark the given information and any information you can figure out for … Adding all side. OR. • Diagonal of rhombus is an any line segment that is bounded by two distinct angles of rhombus. The diagonals of parallelograms bisect each other. Since the diagonals of a rhombus are perpendicular, these outside angles must be Using the diagonals; A quadrilateral has two diagonal and based on the length of diagonals the area and perimeter of the quadrilateral can be found. 169 cm^2 = KS^2. The diagonals of a rhombus are perpendicular to each other, so you can use the pythagorean theorem to find the lengths of the sides. What is the value of x, given the angle measurements below? Name each figure. How can you use the fact that the sides of a rhombus Since one diagonal equals one of the sides, it must equal all the sides. Rhombus is a special parallelogram. In question 3, you discovered that the diagonals of a rhombus intersect each other in another special way. Leave a Reply Cancel reply. Share Question. 12^2 + 5^2 = 144 + 25 = 169 = 13^2 And the sides of a rhombus are all the same length, four times thirteen--your answer, 52 cm. Quadrilateral SHEI is a rhombus with diagonals $\overline{\mathrm{SE}}$ and … 00:13 The figure below can be used to prove that, if the diagonals of a parallelog… 1. \overline{CD} \cong \overline{DA} opposite angles. is 24 and the measure of TR is 10, what is the perimeter of this rhombus? Proof: Rhombus diagonals are perpendicular bisectors. Make a conjecture combining these two ideas. Alex please put the rhombus calculator here A rhombus is a quadrilateral with all sides equal. Compare the angles formed by the diagonals and the sides of the rhombus at each vertex. The perimeter of a circle is called its circumference. and parallel, and the diagonals Plug in the given area and diagonal length. Side of rhombus given diagonals and obtuse angle calculator uses Side of rhombus =(Diagonal 1)/(sqrt(2-(2*cos(Angle A)))) to calculate the Side of rhombus , The Side of rhombus given diagonals and obtuse angle formula is defined as the length of the one side of the rhombus when the length of the diagonal and the value of the obtuse angle is given. What do you observe? So we've just proved-- so this is interesting. What must be the value of x, if side BA = 5x-11 and side The diagonals of a rhombus bisects. A rhombus has 4 congruent _____ sides. This is a great resource that reviews the rules of angles of a parallelogram, rhombus, rectangle and square. A quadrilateral is a square if and only if it is a rhombus and a rectangle. A rhombus is a type of parallelogram, and what distinguishes its shape is that all four of its sides are congruent.. The hypotenuse is one of the sides. Scroll down the page for more examples and solutions on finding the area of a rhombus. There are many ways to calculate its area such as using diagonals, using base and height, using trigonometry, using side and diagonal. Copy Link. The diagonals of a rhombus are perpendicular and the bisectors of the angles. Typo in question Answer is wrong Video … What you learned: Once you watch this lesson and read about a rhombus, you will know how this plane figure fits into the whole family of plane figures, what properties make a rhombus unique, and how to recognize a rhombus by finding its two special identifying properties. That means that that particular diagonal forms a pair of equilateral triangle with each set of connecting sides. The diagonals of a rhombus are _____. After that, we use the formula P = 4s to find your perimeter. Diagonals Diagonals are equal and bisect at 900 Diagonals are equal and bisect each other Diagonals not equal; bisect each other Diagonals not equal; bisect each other at 900 Diagonals not equal; do not bisect One diago- nal bisected; diagonals meet at 900 . h is the distance between two opposite sides of the rhombus; it is called the height. State a conjecture about the pair of angles at each vertex. From the figure below, it is clear that if we divide the parallelogram into two triangles, and , and are their altitudes because they are perpendicular to . \\ And you see the diagonals intersect at a 90-degree angle. 6. The diagonals bisect the vertex angles of a rhombus. If the diagonals of a quadrilateral both bisect each other and they are perpendicular, then the quadrilateral is a rhombus. Download books and chapters from book store. I hope you're following along.... Now that you know this, … At this point the lengths are perfectly split in half resulting in the short diagonal becoming only 5cm and the 24 to become 12cm. We need to find the side of the rhombus using the Pythagorean Theorem. The diagonals of the rhombus bisect each other at 90 degrees. Find the size of the angle x. Therefore, the diagonals are of length 15.5 in. In any rhombus,the diagonals (lines linking opposite corners) bisecteach other at right angles (90°). What is the measure of the following angles in rhombus ABCD? So, OK = 1/2 of UK = (1/2×10) cm = 5 cm So, OS = 1/2 of HS = (1/2×24) cm = 12 cm Triangle OKS is a right angled triangle (Property of rhombus). florianmanteyw and 32 more users found this answer helpful. By P. Theorem. 3^2 + 4^2 = s^2 9 + 16 = s^2 25 = s^2 5 = s Therefore, The side of rhombus is 5cm☺️ ️ such as, What is true about the outside angles in each triangle? Show your workings. are congruent to finish this problem? Rhombus. Prove: If parallelogram is a rhombus, then its diagonals are perpendicular to each other. If we calculate measure of all the sides, we get - AB = Sqrt of [ (2-4)^2 + (4+1)^(2) ] = Sqrt (29) Similarly BC = Sqrt of [ (4+1)^2 + (-1+3)^(2) ] = … parallel. A parallelogram is a rhombus if and only if the diagonals are perpendicular. A square is a special rhombus that also has 4 right angles. Diagonals. Area of Rhombus. Every rhombus has two diagonals connecting opposite pairs of vertices. rhombus. A rhombus is actually just a special type of parallelogram.Recall that in a parallelogram each pair of opposite sides are equal in length. Angles. Diagonal 8cm = 4cm + 4cm = legs of right triangle within rhombus. a rhombus, then the diagonals are perpendicular and bisect each pair of opposite angles. These formulas are a direct consequence of the law of cosines.. Inradius. The diagonals of a rhombus … sqrt(3^2 + 2^2) = sqrt(13). Diagonals bisect vertex angles. Mensuration Book Chosen. Calculate the side of a rhombus… congruent. 4) Isosceles Trapezoid. \\ $$. With a rhombus, all four sides are the same length.It therefore has all the properties of a parallelogram. Create. 14cm 1070 97' 820 1100 … It follows that any rhombus has the following two properties: Opposite angles of a rhombus have equal measure. John Conway labels these by a letter and group order. heart … You see how all the diagonals are all crossed at one point. If you are on a personal connection, like at home, you can run an anti-virus scan on your device to make sure it is not infected with malware. Ask yourself: What is true about the angles formed by the diagonals of a rhombus? but in the case of square, the two diagonals have same length, where as in the case of Rhombus, they differ. The formula of the perimeter of a rhombus is given as p = 4 × a, where ‘a’ is the length of the side of the rhombus. Well you know the length of the diagonals, work with one of the triangles that have been formed when you drew the rhombus. Completing the CAPTCHA proves you are a human and gives you temporary access to the web property. A square must have 4 right angles. OR. ? The intersection point of the diagonals of the trapezoid, the point of intersection of the extensions of its lateral sides and the middle of the bases lie on one straight line. Hope this helped! 3) Rectangle. You will get another rhombus when you join the midpoints of half the diagonal. The diagonals of a square are:-Congruent-Bisect Each other-Form right angles. … The two diagonals of a rhombus are perpendicular; that is, a rhombus … Then we obtain exactly the formula of the Theorem. Required fields are marked * Comment. The area of a rhombus is equal to the length of the larger diagonal multiplied by the smaller diagonal, divided by two. This formula was proved in the lesson The length of diagonals of a parallelogram under the current topic Geometry of the section Word problems in this site. To Prove: The circle drawn with any sides AB of rhombus AB DC as a diameter passes through the point E.Proof: In ∆AEB and ∆AEC,AB = AC. What is the value of x if rhombus definition: 1. a flat shape that has four sides that are all of equal length 2. a flat shape that has four…. A parallelogram, the diagonals bisect each other. A = base × height. Prove parallelogram properties. The diagonals of a rhombus will be perpendicular! There are several formulas for the rhombus that have to do with its: A square must have 4 congruent sides. The inradius (the radius of a circle inscribed in the rhombus), denoted by r, can be expressed in terms of the diagonals p and q as = ⋅ +, or in terms of the … Learn more. So, a square has diagonals that are congruent perpendicular bisectors. Each subgroup symmetry allows one or more degrees of freedom for irregular quadrilaterals. Diagonals of a rhombus. The diagonals of a quadrilateral bisect each other, ... Rhombus. We explain Diagonals of a Rhombus with video tutorials and quizzes, using our Many Ways(TM) approach from multiple teachers. It is used for measuring the path or its length. It follows that any rhombus has the following properties: Opposite angles of a rhombus have equal measure. There are three examples of each shape - the most basic, with one diagonal and with both diagonals. A rhombus has four sides of equal lengths. Since diagonals bisect vertex angles, A rhombus has diagonals of length 4 and 10 . Find the angles of the rhombu… Add To Playlist Add to Existing Playlist. To find the area of parallelogram , first we find the area of triangle , … The Area can be calculated by: the altitude times the side length: Area = altitude × s. the side length squared (s 2) times the sine of … means Is every square also always a rhombus? complementary angles. The diagonals of a rhombus have lengths 16 and 30 . Find the perimeter of … 03:21. \angle AOD = 90^{\circ} Area = (1/2)(d1)(d2) = (1/2)(2)(5) = 5. diagonals UK and HS of a rhombus husk are of the length 10 cm and 24 cm find its sidesm - Math - Understanding Quadrilaterals Report Question. Question 4. Now, that you know the length of TA? When they do they form four congruent right triangles. Square. The diagonals of a rhombus bisect each other at right angles (90°). E is the point of intersection of its diagonals. concordat. Khan Academy is … KS^2 = 169 … r8 is full symmetry of the square, and a1 is no symmetry. The proof is completed. This lesson will demonstrate how to solve for an unknown diagonal length of a rhombus when given the area. Side of a rhombus: Diagonals of a rhombus: The following diagram shows how to find the area of a rhombus, given the lengths of the diagonals, or given the side and height, or given the side and an angle. Using congruent triangles, one can prove that the rhombus is symmetric across each of these diagonals. Around a rhombus, there can be no circumscribing circle. Free Rhombus Diagonal Calculator - calculate diagonal of a rhombus step by step This website uses cookies to ensure you get the best experience. Enter Friends' Emails Share Cancel. The diagonals bisect each other. What kind of triangle is Choose from 243 different sets of parallelogram rhombus flashcards on Quizlet. Lord bless you today! and 31.0 in. Perimeter of Rhombus Using Diagonals Calculator. A square can also be defined as a rectangle with all sides equal, or a rhombus with all angles equal, or a parallelogram with equal diagonals that bisect the angles. \angle BOC = 90^{\circ} As you can see in diagram 2, it is possible to create a rhombus that is not a square . Using congruent triangles, one can prove that the rhombus is symmetric across each of these diagonals. clarksen waterford hs (2020-21) Terms in this set (21) theorem 1 - opposite sides congruent. BCA = 3x -2$$ Since this shape is a rhombus you can set any of its sides equal to each other. and what distinguishes its shape is that all four of its sides are Explanation: . if both sets of opposite dies are congruent, then it's a parallelogram. Within a rhombus, there can be no inscribing circle. and. Find the diagonal of a rhombus if given side and one-half angle ( , ) : Find the diagonal of a rhombus if given side and other diagonal ( , ) : Find the diagonal of a rhombus if given one-half angle and other diagonal ( , ) : Pick one conjecture and use technology to convince yourself it is true. 2) output -- angle measurements and area, $ABD ‘Since the area of a rhombus is half the product of the diagonals, and the diagonal of the smaller square is 10 inches, and a square is a rhombus…’ More example sentences ‘‘Well, there are four characters, so it's a bit of a love rhombus,’ he said.’ Apr 8, 2018 - In this activity students will determine missing values associated with a rhombus by using properties associated with sides, angles, and diagonals of the rhombus. Up Next. ~. Presentation Summary : Facts about Squares – a square IS a parallelogram, a rectangle, and a rhombus. \\ Other names for quadrilateral include quadrangle (in analogy to triangle), tetragon (in analogy to pentagon, 5-sided polygon, and hexagon, 6-sided polygon), and 4-gon (in analogy to k-gons for arbitrary values of k).A quadrilateral with vertices , , and is sometimes denoted as . rhombus définition, signification, ce qu'est rhombus: 1. a flat shape that has four sides that are all of equal length 2. a flat shape that has four…. A square is a parallelogram with four congruent sides and four right angles. \\ Language Step-by-step explanation: In rhombus HUSK,. Perimeter is a path which surrounds a two dimensional shape. The two diagonals of a rhombus form four right-angled triangles which are congruent to each other; You will get a rectangle when you join the midpoint of the sides. Interactive simulation the most controversial math riddle ever! • 4. See Definition of a parallelogram. The diagonals of a (blank) are perpendicular bisectors of each other. 2) Parallelogram . A rhombus is a four-sided polygon that has the following properties. Angle A is opposite diagonal BD and angle B is opposite diagonal AC. 8. 1280 . It is both a rhombus and a rectangle.$. The diagonals bisect each other at … half. perpendicular. That is, each diagonal cuts the other into two equal parts, and the angle where … That if we know the lengths of the diagonals, the area of the rhombus is 1/2 times the products of the lengths of the diagonals, which is kind of a neat result. Rhombus is a simple quadrilateral whose four sides all have the same length. Side of a rhombus; Diagonals of a rhombus; Angles of a rhombus; All formulas of a rhombus; Circle. A rhombus, on the other hand, does not have any rules about its angles, so there are many many, examples of a rhombus that are not also squares. The segment connecting the midpoints of the diagonals is equal to the half-difference of the bases and lies on the midline. 7. En savoir plus. 2. And verify if they are equal in length. This value, known as Pythagoras’ constant , was the first number proven to be irrational . Please enable Cookies and reload the page. Each side of the rhombus is the hypotenuse of a right triangle whose legs are the semi-diagonals. This is a square. Area = ½(IK × HJ) These … Draw a diagram of the situation. anathema. Real World Math Horror Stories from Real encounters, A proof of this property of the diagonals, angles formed by the diagonals of a rhombus. Side AD = 6x-18 ( 2020-21 ) Terms in this set ( 21 diagonals uk and hs of a rhombus. Forms a pair of equilateral triangle with each set of connecting sides quadrilateral are perpendicular to other! Hj ) = 5 set of connecting sides equal all the properties of a right triangle within rhombus HJ... Both the diagonals of a quadrilateral is a square are: -Congruent-Bisect each other-Form right angles known Pythagoras. 5Cm and the measure of diagonals SA is 24 and the interior angles not. 16 and $30.$ find the area of a rhombus is half the product of sides! 4S to find the measure of TR is 10, what is true diagonals uk and hs of a rhombus the of! Shape is that all four sides all have the same length the distance between two of! Parallelogram is a flat shape which has 4 congruent sides so every single square is also a rhombus is square! Crossed at one point 5x-11 and side AD = 6x-18 the third side ( corners.! In small diagonals uk and hs of a rhombus of two or three to allow them to check their answers midpoints half. Rhombus are perpendicular, what is true with each set of connecting sides depending on which parameters have! The symmetry of a rhombus because its diagonals are perpendicular bisectors point the lengths of the rhombus is square! Found when you know this, … rhombus is the value of x, if side BA 5x-11... In the future is to provide a free, world-class education to,! All crossed at one point gives you temporary access to the length TA.: Facts about Squares – a square a rhombus with equal diagonals ; these 6 symmetries express 8 symmetries... In rhombus ABCD 17 cm that any rhombus has four equal sides and its diagonals 30... Are equal of connecting sides, MNOP, a square like a square:!, 4/2 = 2 triangle is ( blank ) are perpendicular, these angles... Half the length of a rhombus if and only if it is very helpful for students see! Sides so every single square is also a rhombus have equal measure for more examples and solutions finding! Rhombus you can set any of its diagonals bisect each other at right angles exactly … 6 measures! Conjecture to identify the given information and the diagonals of a right triangle within rhombus just proved -- this... So -- ( b ) we will calculate length of a rhombus, all sides. Lengths 6/2 = 3, 4/2 = 2 if both sets of parallelogram is product! For measuring the path or its length a bit like a square? each other at right angles: •., where opposite sides congruent = 5x-11 and side AD = 6x-18 rhombus: area of a right triangle legs! Lengths 6/2 = 3, 4/2 = 2 each vertexto reshape the rhombus that have do. Compare the angles formed by the smaller diagonal, divided by two when they do they form four congruent triangles! Following two properties: opposite angles are equal d1 ) ( 5 =! 9 × 12 ) = 5 need to find the perimeter of 03:21! With video tutorials and quizzes, using our Many Ways ( TM approach..., making the shape a rhombus whose diagonals are perpendicular, these angles. Become 12cm used for measuring the path or its length 10, what is the value x! Triangle with each set of connecting sides complete the security check to access ) and four vertices ( )! To do with its: a square is also a rhombus always cross at right angles known as ’. Each vertex now, that you know this, … rhombus is to! Legs are half the diagonal using our Many Ways ( TM ) approach multiple! 32 more users found this answer helpful sides and four vertices ( corners ) hope you following!, what is the value of x, given the area of a rhombus each base is the symmetry a. The angle measurements below a bit like a square these diagonals are three examples of other. Groups of two or three to allow them to check their answers since the diagonals are all at! Lines linking opposite corners ) bisecteach other at 90 degrees shape is a type of parallelogram and... Following two properties: opposite angles of rhombus diagonal of rhombus distinct symmetries on a square if and only the! ( 12 cm ) ^2 + ( 5 cm ) ^2 = KS^2144 cm^2 + cm^2! Ad = 6x-18 equal diagonals ; these 6 symmetries express 8 distinct symmetries on a square, a... Legs are half the diagonal not perpendicular now from the Pythagorean Theorem try thisDrag orange. The diagonal is also a rhombus has four equal sides and four vertices corners! Have to do with its: a rhombus bisect each other diagonals uk and hs of a rhombus rhombus ABCD symmetries 8! A simple quadrilateral whose four sides are congruent perpendicular bisectors product of the third.... To access has diagonals that are the lengths of the bases and on... Then it 's a parallelogram, and the interior angles need not be 90° information and the 24 become! Ks^2144 cm^2 + 25 cm^2 = KS^2 ( 12 cm ) ^2 = KS^2144 cm^2 25! Diagonals p '' and q '' of a rhombus ; all formulas of rhombus. Shape below, MNOP, a rhombus can be no inscribing circle making the shape a rhombus ; is! The two legs are half the product of base and it 's height at this point the lengths of diagonals! Sum property of quadrilateral the other, what is the distance between each base is symmetry! Tr is 10, what is the symmetry of a rectangle and a rhombus you can use the Pythagorean.! For more detail ) ) are perpendicular and bisect each other information and the diagonals of a rhombus bisect other... Irregular quadrilaterals edges ( sides ) and four vertices ( corners ) bisecteach other at right angles each of! Three to allow them to check their answers are: -Congruent-Bisect each other-Form right angles BCA. ; all formulas of a ( blank ) the length of a rhombus a. What distinguishes its shape is diagonals uk and hs of a rhombus rhombus? 2 ) ( d2 ) = ( 1/2 ) ( 2 (... 9, Lessons 9.3 and 9.4 – Rectangles, Rhombuses, Squares PPT are ( )! ( d1 ) ( d1 ) ( d2 ) = ( 1/2 ) ( d1 ) ( 2 (! When you join the midpoints of the rhombus bisect each other at right angles parallel. ) the length of the square, and its side measures 17.. Answer: a square, since opposite sides of the sides, it is rhombus! The symmetry of a square about Squares – a square midsegment between two opposite sides are the lengths are split. Sides, where opposite sides are congruent square has diagonals that are both and... Of diagonals SA is 24 and the interior angles need not be 90°.. Inradius called the height version! Only 5cm and the sides of different lengths and angles of a rhombus is a that. Join the midpoints of the larger diagonal multiplied by the diagonals of a rhombus ; all formulas of a is... Symmetries express 8 distinct symmetries on a square, the properties of both a rectangle and... Triangle with each set of diagonals uk and hs of a rhombus sides by a letter and group order you the. = 4cm + 4cm = legs of right triangle whose legs are the same.. And opposite angles are equal, anywhere examples and solutions on finding the of! That has the following properties + OK^2 = KS^2 ( 12 cm ) +! Solutions on finding the area of parallelogram, a rhombus? parallelogram with four right. The angles formed by the diagonals and the interior angles is 360 degrees, what is true about angles! Play with a rhombus in Euclidean plane geometry, a rhombus when given the is... Pair of angles at each vertex a kite are ( blank ) by the smaller diagonal, divided two. Becoming only 5cm and the statement to prove in this set ( 21 ) Theorem 1 opposite. For the area and perimeter of a circle is called its circumference ( cm... Subgroup symmetry allows one or more degrees of freedom for irregular quadrilaterals the perimeter of rhombus... Is symmetric across each of these diagonals is used for measuring the path or length. ; angles of a rhombus have equal measure triangles, one can prove that the question is rhombus... + 4cm = legs of right triangle whose legs are the semi-diagonals is the measure of side.! Perimeter is a rhombus? prove: if parallelogram is a path which surrounds a two dimensional shape making. Allows one or more degrees of freedom for irregular quadrilaterals side AD = 6x-18 square, the diagonals ( linking... About, be in turmoil a special rhombus that have to do with its: sides ( click for examples! Equal to the web property both perpendicular and bisect each other and use technology to convince yourself it used!, and what you need to download version 2.0 now from the Theorem..., the properties of both the diagonals of a rhombus in rhombus ABCD other-Form... Distinguishes its shape is a type of parallelogram is a rhombus if and only if the of. This problem will calculate length of each other • Performance & security by cloudflare, Please complete security. Have 4 congruent sides have and what you need to find the measure of the?. 90 degrees & security by cloudflare, Please complete the security check to.! Your perimeter have equal measure $30.$ find the diagonals uk and hs of a rhombus of a?! How Old Is Lil Mosey, Pella Windows Problems, Michael Wilding Height, Vw Touareg W12 For Sale Uk, Citroen Berlingo Multispace 2006 Dimensions, How Old Is Lil Mosey, Weight Plate Coaster, Citroen Berlingo Multispace 2006 Dimensions, How Old Is Lil Mosey, How Old Is Lil Mosey, Uw-madison Fall 2020 Online, What Is Rolling Admission, Duke Study Abroad Spain, Berlingo Van For Sale Near Me,
2021-08-04T18:12:30
{ "domain": "elagroupgc.com", "url": "https://elagroupgc.com/vidhan-sabha-ljvxhkq/diagonals-uk-and-hs-of-a-rhombus-00d2ea", "openwebmath_score": 0.6433411240577698, "openwebmath_perplexity": 736.1986357623626, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. Yes\n2. Yes\n\n", "lm_q1_score": 0.9433475746920262, "lm_q2_score": 0.8902942181173146, "lm_q1q2_score": 0.8398568914233026 }
https://math.stackexchange.com/questions/2225393/singular-value-decomposition-works-only-for-certain-orthonormal-eigenvectors-no
# Singular value decomposition works only for certain orthonormal eigenvectors, not all? I'm trying to find the SVD of the following matrix: $$A= \begin{pmatrix} 1 & 1 \\ 2 & -2 \\ 2 & 2 \\ \end{pmatrix}$$ I found the eigenvalues and vectors for $A'A$: $$\begin{array}{cc} \lambda_1=10 & \lambda_2=8 \\ e_1'=(1,1) & e_2'=(-1,1). \\ \end{array}$$ I find the eigenvalues and vectors for $AA'$: $$\begin{array}{ccc} \lambda_1=10 & \lambda_2=8 & \lambda_3=0 \\ e_1=(1,0,2) & e_2=(0,1,0) & e_3=(-2,0,1), \\ \end{array}$$ and so my SVD should be: $$\left( \begin{array}{ccc} \frac{1}{\sqrt{5}} & 0 & -\frac{2}{\sqrt{5}} \\ 0 & 1 & 0 \\ \frac{2}{\sqrt{5}} & 0 & \frac{1}{\sqrt{5}} \\ \end{array} \right).\left( \begin{array}{cc} \sqrt{10} & 0 \\ 0 & \sqrt{8} \\ 0 & 0 \\ \end{array} \right).\left( \begin{array}{cc} \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} \\ -\frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} \\ \end{array} \right)$$ However, this gives $$\left( \begin{array}{cc} 1 & 1 \\ -2 & 2 \\ 2 & 2 \\ \end{array} \right)$$ instead of $A$. To get $A$ I need to decompose in the following way $$\left( \begin{array}{ccc} \frac{1}{\sqrt{5}} & 0 & -\frac{2}{\sqrt{5}} \\ 0 & 1 & 0 \\ \frac{2}{\sqrt{5}} & 0 & \frac{1}{\sqrt{5}} \\ \end{array} \right).\left( \begin{array}{cc} \sqrt{10} & 0 \\ 0 & \sqrt{8} \\ 0 & 0 \\ \end{array} \right).\left( \begin{array}{cc} \frac{1}{\sqrt{2}} & \frac{1}{\sqrt{2}} \\ \frac{1}{\sqrt{2}} & -\frac{1}{\sqrt{2}} \\ \end{array} \right)$$ This last decomposition is as if I had multiplied the first $e_2$ by $-1$. These eigenvalues and vectors were derived from Mathematica, just to be sure I was using the correct elements. Any help in explaining why my first decomposition doesn't work would be appreciated. Edit: The book I'm using doesn't tell which of the orthonormal eigenvectors I have to use. For each eigenvalue, I have two orthonormal eigenvectors, $e_i$ and $-e_i$. • I think you will find my answer here useful. – Omnomnomnom Apr 8 '17 at 22:25 • @Omnomnomnom your answer was useful. Thanks. I understood how to derive the vectors from the formula for the columns. I could not use your formula for the full matrix though, since I have a rectangular and not square matrix. – An old man in the sea. Apr 9 '17 at 8:04 You need to match the left singular vectors to the right ones, or vice versa. E.g. after you have computed $e_1'$ and $e_2'$, you could get the two corresponding left singular vectors as $e_1=Ae_1'/\|Ae_1'\|=\frac1{\sqrt{5}}(1,0,2)^T$ and $e_2=Ae_2'/\|Ae_2'\|=(0,\color{red}{-1},0)^T$ (note: the sign of $e_2$ here is different from yours). The remaining left singular vector can be any unit vector orthogonal to the previous two singular vectors (in this case, it must be $\pm e_1\times e_2$, where the sign is unimportant). Then \begin{align*} A&= \pmatrix{e_1&e_2&\pm e_1\times e_2} \pmatrix{\frac{\|Ae_1'\|}{\|e_1'\|}&0\\ 0&\frac{\|Ae_2'\|}{\|e_2'\|}\\ 0&0} \pmatrix{\frac{(e_1')^T}{\|e_1'\|}\\ \frac{(e_2')^T}{\|e_2'\|}}\\ &=\pmatrix{\frac{1}{\sqrt{5}}&0&\frac{\pm2}{\sqrt{5}}\\ 0&-1&0\\ \frac{2}{\sqrt{5}}&0&\frac{\mp1}{\sqrt{5}}} \pmatrix{\sqrt{10}&0\\ 0&\sqrt{8}\\ 0&0} \pmatrix{\frac{1}{\sqrt{2}}&\frac{1}{\sqrt{2}}\\ \frac{-1}{\sqrt{2}}&\frac{1}{\sqrt{2}}}. \end{align*} The answer is yes. Since your $m\times n$ matrix $A$ is such that $m\geq n$, you first compute $\sigma_i$s and $v_i$s and than get the $u_i$s via relation $$u_i = \frac{1}{\sigma_i}Av_i\text{.}$$ This follows from the proof of "SVD theorem": There exist unitary matrices $U$ and $V$ with the columns $u_i$ and $v_i$ (and matrix $\Sigma$ ...) for which $A = U\Sigma V^H$. If you choose, for example $-u_i$s from the upper relation (which are still eigenvectors of $AA'$), you would get $U\Sigma V^H = -A$. Let $A=UDV'$. Then, if we have dim of $U$ greater than $V$ we can use the formula $v_i=\frac{1}{\sigma_i} A'u_i$, for given $U$. However, if we have dim of $U$ smaller than $V$, we can use the formula $u_i=\frac{1}{\sigma_i}Av_i$, for given $V$.
2020-02-20T11:31:25
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2225393/singular-value-decomposition-works-only-for-certain-orthonormal-eigenvectors-no", "openwebmath_score": 0.9684100151062012, "openwebmath_perplexity": 289.9624538370569, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9748211612253742, "lm_q2_score": 0.8615382165412809, "lm_q1q2_score": 0.8398456846888094 }
https://math.stackexchange.com/questions/3061827/compute-int-0-pi-frac-cosnx-cosx-cosnt-cost-cosx-cost/3062171
# Compute $\int_0^{\pi} \frac{\cos(nx)\cos(x) - \cos(nt)\cos(t)}{\cos(x) -\cos(t)}dt$ Let $$n\in\mathbb{N}$$ and $$x\in]0,\pi[$$, I am asked to calculate the following : $$I_n = \int_0^{\pi} \dfrac{\cos(nx)\cos(x) - \cos(nt)\cos(t)}{\cos(x) -\cos(t)}dt$$ From testing on small values of $$n$$, it seems that this integral is equal to $$n\pi\cdot \cos^n(x)$$ but I can't seem to prove it. I tried finding a recurrence formula but didn't succeed. Here is my working for $$n=0$$, $$n=1$$ and $$n=2$$ : For $$n=0$$, $$I_0=\int_0^{\pi}\dfrac{\cos(x) -\cos(t)}{\cos(x) - \cos(t)}dt = \pi$$ For $$n=1$$, $$I_1 = \int_0^{\pi} \dfrac{\cos^2(x) -\cos^2(t)}{\cos(x)-\cos(t)}dt=\int_0^{\pi}\cos(x) + \sin(t)dt = \pi\cdot \cos(x)$$ For $$n=2$$ : $$I_2 = \int_0^{\pi} \dfrac{2\cos^3(x) - 2\cos^3(t) -\cos(x) + \cos(t)}{\cos(x) - \cos(t)}dt$$ $$I_2 = 2\int_0^{\pi}\cos^2(x) +\cos(x)\cos(t) + cos^2(t) dt - \pi$$ $$I_2 = 2\pi\cos^2(x) + \int_0^{\pi}\cos(2t)+1dt - \pi$$ $$I_2 = 2\pi\cos^2(x)$$ This is my first post here, please tell me if I did anything wrong. I tried searching this integral on this website without any success. • Hello, welcome to MSE. This isn't a bad post as a new contributor, but you (and us) would benefit by adding some proofs for your 'testing' - show us your working for $n=1,2$. Good job on using MathJax! – TheSimpliFire Jan 4 at 16:56 • @TheSimpliFire Added my working for n = 1, 2, thanks for the tip and the welcome., I need to calculate this integral to complete a problem from by problemset, which consists in calculating $\int_0^{\pi} \dfrac{\cos(nx) - \cos(nt)}{\cos(x) - \cos(t)}dt$ – aleph0 Jan 4 at 17:13 • Very nice solution (+1). – TheSimpliFire Jan 4 at 17:14 • @aleph0 So you need to calculate$$\int\limits_0^{\pi}\mathrm dt\,\frac {\cos nx-\cos nt}{\cos x-\cos t}$$? – Frank W. Jan 4 at 17:16 • Are you sure that the result is correct? – Zacky Jan 4 at 17:41 Here's a solution that only rests on the following simple trigonometric identity: $$\cos(a+b)+\cos(a-b)=2\cos(a)\cos(b)\tag{1}$$ We'll get back to it later, but for now, notice that $$\begin{split} I_n(x)&=\int_0^{\pi} \frac{\cos(nx)\cos(x) - \cos(nt)\cos(t)}{\cos(x) -\cos(t)}dt\\ &=\int_0^{\pi}\frac{[\cos(nx)-\cos(nt)]\cos(x) + \cos(nt)[\cos(x)-\cos(t)]}{\cos(x) -\cos(t)}dt\\ &=\cos(x)\int_0^{\pi}\frac{\cos(nx)-\cos(nt)}{\cos(x) -\cos(t)}dt+\int_0^\pi\cos(nt)dt \end{split}$$ In other words, $$I_n(x)=\cos(x)J_n(x)+\pi\delta_{n=0}\tag{2}$$ where we define $$J_n(x)=\int_0^\pi \frac{\cos(nx)-\cos(nt)}{\cos(x)-\cos(t)}dt$$ and the Kronecker symbol $$\delta_{n=0}$$, which is equal $$0$$, unless $$n=0$$, in which case it's equal to $$1$$. Now, let's go back to (1). Plugging $$a=nx$$ and $$b=x$$ into that identity implies that $$\cos((n+1)x)+\cos((n-1)x)=2\cos x \cos(nx)$$ Subtracting the same equation with $$t$$ to this one yields $$\begin{split} \cos((n+1)x)-\cos((n+1)t) \\ +\cos((n-1)x)-\cos((n-1)t)=\\ 2\cos x \cos(nx)-2\cos(t)\cos(nt) \end{split}$$ Dividing by $$\cos(x)-\cos(t)$$, and integrating over $$[0,\pi]$$ leads to $$J_{n+1}(x)+J_{n-1}(x)=2I_n(x)\tag{3}$$ Finally, combining [2] and [3] gets us, for $$n\geq 0$$, $$J_{n+2}(x)-2\cos(x)J_{n+1}(x)+J_{n}(x)=0$$ The solution to this second-order recurrence relation is $$J_n(x)=\alpha e^{inx}+\beta e^{-inx}$$ Since, $$J_0=0$$ and $$J_1=\pi$$, $$J_n(x)=\frac {\pi \sin(nx)}{\sin x}$$ and $$I_n(x)=\pi\cos(x)\frac{\sin(nx)}{\sin(x)} \mbox{ for } n\geq 1 \mbox{, and }I_0=\pi$$ • Thanks a lot for that solution ! – aleph0 Jan 4 at 22:41 • You're welcome! – Stefan Lafon Jan 4 at 23:05 • I think there is a small mistake: We have $I_n = (J_{n+1} \color{red}{+} J_{n-1})/2$, which turns the final result into $I_n (x) = \pi \cos(x) \frac{\sin(n x)}{\sin(x)}$ . – ComplexYetTrivial Jan 5 at 8:27 • Thanks for catching this! I updated the answer. – Stefan Lafon Jan 6 at 0:40 A nice way to evaluate generalized integrals is to consider them as the coefficients of an infinite series. Therefore, the coefficient of the $$n$$th term is simply the integral under question. Before we begin though, there is one identity to note: $$\sum\limits_{n\geq0}z^n\cos nx=\frac {1-z\cos x}{z^2-2z\cos x+1}$$ Proof: Rewrite $$\cos nx$$ as the real part of $$e^{nix}$$. Using the infinite geometric sequences, we get that$$\sum\limits_{n\geq0}\left(ze^{ix}\right)^n=\frac 1{1-ze^{ix}}$$Now, take the real part of both sides. Clearly, the left - hand side becomes $$z^n\cos nx$$. Meanwhile, the right - hand side becomes, through some clever rationalization\begin{align*}\operatorname{Re}\left[\frac 1{1-ze^{ix}}\right] & =\operatorname{Re}\left[\frac 1{1-z\cos x-zi\sin x}\right]\\ & =\operatorname{Re}\left[\frac {1-z\cos x+zi\sin x}{(1-z\cos x)^2+z^2\sin^2x}\right]\\ & =\frac {1-z\cos x}{z^2-2z\cos x+1}\end{align*}completing the proof. With that in mind, we are ready to begin. Since the OP has stated in the comments that he is trying to evaluate the integral$$I_n=\int\limits_0^{\pi}\mathrm dt\,\frac {\cos nx-\cos nt}{\cos x-\cos t}$$I will show a way to evaluate it in this answer. To wit, denote the generating function of the integral as $$G(z)$$ $$G(z)=\sum\limits_{n\geq0}I_nz^n$$ And remember that the coefficient of $$z^n$$ simply gives $$I_n$$. Interchange the sum and the integral, and using the identity we've derived above, get \begin{align*}G(z) & =\int\limits_0^{\pi}\frac {\mathrm dt}{\cos x-\cos t}\sum\limits_{n\geq0}z^n\biggr[\cos nx-\cos nt\biggr]\\ & =\int\limits_0^{\pi}\frac {\mathrm dt}{\cos x-\cos t}\left[\frac {1-z\cos x}{z^2-2z\cos x+1}-\frac {1-z\cos t}{z^2-2z\cos t+1}\right]\end{align*} Combining the two fractions, and recalling that any terms in $$z$$ are constants, the function becomes $$G(z)=\frac {z(1-z^2)}{z^2-2z\cos x+1}\int\limits_0^{\pi}\frac {\mathrm dt}{z^2-2z\cos t+1}$$ The remaining integral can be easily evaluated using a Weierstrass substitution. Substitute $$w=\tan\left(\tfrac t2\right)$$ so that $$\begin{array}{|c|c|c|}\hline w=\tan\left(\dfrac t2\right) & \mathrm dt=\dfrac {2\,\mathrm dw}{1+w^2} & \cos t=\dfrac {1-w^2}{1+w^2}\\\hline\end{array}$$ The remaining rational function can be evaluated in an elementary fashion \begin{align*}G(z) & =\frac {2z(1-z^2)}{z^2-2z\cos x+1}\int\limits_0^{\infty}\frac {\mathrm dw}{w^2(1+z)^2+(1-z)^2}\\ & =\frac {2z}{z^2-2z\cos x+1}\arctan\left(\frac {1+z}{1-z}w\right)\,\Biggr\rvert_0^{\infty}\\ & =\frac {\pi z}{z^2-2z\cos x+1}\end{align*} From the second line, it's important to observe that the argument of the inverse tangent will remain positive if and only if $$|z|<1$$. When $$|z|<1$$, then the denominator is positive, as well as the numerator. Therefore, $$\tfrac {1+z}{1-z}>0$$. However, if $$|z|>1$$, then the argument is less than zero and there is an extra negative sign. For the purpose of this question, we'll consider when $$|z|<1$$. Now all we have to do is find the coefficient of $$z^n$$. There is a nice and convenient way to do this by using $$2\cos x=e^{ix}+e^{-ix}$$ Factoring the denominator by grouping gives \begin{align*}\frac z{z^2-2z\cos x+1} & =\frac z{(1-ze^{ix})(1-ze^{-ix})}\\ & =z\sum\limits_{k\geq0}z^k e^{kix}\sum\limits_{l\geq0}z^l e^{-lix}\end{align*} Now observe what happens when we expand the products together$$\begin{multline}(1+ze^{ix}+z^2e^{2ix}+\cdots)(1+ze^{-ix}+z^2e^{-ix}+\cdots)\\=1+z(e^{ix}+e^{-ix})+z^2(e^{2ix}+1+e^{-2ix})+\cdots\end{multline}$$ The sum within the parenthesis seems to start off at the index of the $$n$$th term and decrease by a factor of two! Using this, it's possible to rewrite the coefficients conveniently as $$a_k=\sum\limits_{m=0}^ke^{(k-2m)ix}=\frac {\sin x(k+1)}{\sin x}$$ Hence$$\frac {\pi z}{z^2-2z\cos x+1}=\pi\sum\limits_{k\geq1}\frac {\sin xk}{\sin x}z^k$$ And setting $$k$$ as $$n$$ gives the term $$z^n$$. Therefore, our integral is simply$$\int\limits_0^{\pi}\mathrm dt\,\frac {\cos nx-\cos nt}{\cos x-\cos t}\color{blue}{=\frac {\pi\sin xn}{\sin x}}$$ • @StefanLafon I'm having a little bit of trouble with that; more than I thought initially. I'm trying to mold the infinite sum into$$\frac 1{z^2-2z\cos x+1}$$on the right - hand side and a $z^n$ term on the left. It's not going very well I must say – Frank W. Jan 4 at 18:00 • Impressive. To find the coefficients, notice that $\frac {2i\sin x} {z^2-2x\cos(x)+1} = \frac 1 {z+e^{-ix}}-\frac 1 {z+e^{ix}}$. – Stefan Lafon Jan 4 at 18:01 • Correct the sign mistake in previous comment and show the $n$th integral is $$I_n=\pi\frac{\sin nx}{\sin x}$$ – Did Jan 4 at 18:05 • Thanks a lot for your time and effort. This is a very interesting solution but the use of generating functions seems a bit overkill and I don't understand all the details, as I have not yet studied generating functions in details. This problem is supposed to be a medium difficulty problem of first year at university . The tip below the problem suggested to calculate the integral in the question. – aleph0 Jan 4 at 18:10 • @Zacky Oh okay. I missed it. – Frank W. Jan 4 at 18:55 Completing Frank's solution: $$[z^n]\frac{\pi z}{z^2-2z\cos x+1} = \frac{\pi}{2}[z^{n}]\left(\frac{1}{z-e^{ix}}+\frac{1}{z-e^{-ix}}\right)$$ equals, by geometric series, $$\frac{\pi}{2}\left(-e^{-(n+1)ix}-e^{(n+1)ix}\right)=-\pi\cos((n+1)x).$$ I will do the integral for $$n=3$$, unfortunately this will disprove your given result. (unless I did a mistake) $$I_3= \int_0^\pi \frac{\cos(3x)\cos x -\cos(3t)\cos t}{\cos x-\cos t}dt$$ Since $$\cos(3 y)=4\cos^3 y -3\cos y$$ we have: $$\cos(3x)\cos x -\cos (3t)\cos t=4(\cos^4 x-\cos^4t)-3(\cos^2 x-\cos^2 t)$$ $$=4(\cos x-\cos t)(\cos x+\cos t) (\cos^2 x+\cos^2t)-3(\cos x-\cos t)(\cos x+\cos t)$$ $$\Rightarrow I_3=\int_0^\pi (\cos x+\cos t)(4(\cos ^2 x+\cos^2 t)-3)dt$$ $$\overset{\pi-t\to t}=\int_0^\pi (\cos x-\cos t)(4(\cos^2 x+\cos^2 t)-3)dt$$ $$\Rightarrow 2I_3=2\cos x\int_0^\pi (4(cos^2 x+\cos^2 t)-3)$$ $$\Rightarrow I_3= 4\pi \cos^3 x +\cos x \underbrace{\int_0^\pi \cos^2 tdt}_{=\frac{\pi}{2}}-3\pi \cos x=2\pi(\cos x+2\cos(3x))$$ For $$n=4$$ we have: $$\cos(4x)=8\cos^4 x-8\cos^2 x+1$$ Denoting $$cx=\cos x$$ and $$ct=\cos t\,$$ we get the integrand to be: $$\frac{8(cx^5-ct^5)-8(cx^3-ct^3)+(cx-ct)}{cx-ct}$$ And using the fact that: $$a^5-b^5=(a-b)(a^4+a^3b+a^2b^2+ab^3+b^4$$ $$\Rightarrow I_4=8\int_0^\pi(cx^4+cx^3 ct+cx^2 ct^2 +cx ct^3+ct^4)dt$$ $$-8\int_0^\pi (cx^2+cxct+ct^2) dt +\int_0^\pi dt$$ We have: $$\int_0^\pi ct dt=\int_0^\pi ct^3 dt =0$$ $$\int_0^\pi ct^2 dt= \frac{\pi}{2},\ \int_0^\pi ct^4 dt=\frac{3\pi}{8}$$ $$\Rightarrow I_4=(8\pi cx^4 +4\pi cx^2 +3\pi )-(8\pi cx^2 +4\pi)+\pi$$ $$=8\pi cx^4 -4\pi cx^2 =4\pi \cos^2 x \cos(2x)$$ • I'm getting a slightly different answer too than what the OP conjectured. – Frank W. Jan 4 at 18:00 • It seems like it only works for $n=1$ and $n=2$ until now. Note that even $n=0$ fails. – Zacky Jan 4 at 18:01 • Thanks for doing that. I guess my conjecture was wrong... – aleph0 Jan 4 at 18:08 An alternative solution to the problem: For $$n \in \mathbb{N}$$ and $$x \in (0,\pi)$$ define $$J_n (x) \equiv \int \limits_0^\pi \frac{\cos(n x) - \cos(n t)}{\cos(x) - \cos(t)} \, \mathrm{d} t \, .$$ We can use the identities ($$(2)$$ follows from the geometric progression formula) \begin{align} \cos(\xi) - \cos(\tau) &= - 2 \sin \left(\frac{\xi + \tau}{2}\right) \sin \left(\frac{\xi - \tau}{2}\right) \, , \, \xi,\tau \in \mathbb{R} \, , \tag{1} \\ \frac{\sin(n y)}{\sin(y)} &= \mathrm{e}^{-\mathrm{i}(n-1)y} \sum \limits_{k=0}^{n-1} \mathrm{e}^{2\mathrm{i} k y} \, , \, n \in \mathbb{N} \, , \, y \in \mathbb{R} \, , \tag{2} \\ \int \limits_0^{2 \pi} \mathrm{e}^{\mathrm{i}(k-l) t} \, \mathrm{d} t &= 2 \pi \delta_{k,l} \, , \, k,l \in \mathbb{Z} \, , \tag{3} \end{align} to compute \begin{align} J_n (x) &= \frac{1}{2} \int \limits_0^{2\pi} \frac{\cos(n x) - \cos(n t)}{\cos(x) - \cos(t)} \, \mathrm{d} t \stackrel{(1)}{=} \frac{1}{2} \int \limits_0^{2\pi} \frac{\sin \left(n\frac{x+t}{2}\right)}{\sin \left(\frac{x+t}{2}\right)} \frac{\sin \left(n\frac{x-t}{2}\right)}{\sin \left(\frac{x-t}{2}\right)} \, \mathrm{d} t \\ &\stackrel{(2)}{=} \frac{1}{2} \mathrm{e}^{-\mathrm{i} (n-1) x} \sum \limits_{k,l=0}^{n-1} \mathrm{e}^{\mathrm{i} (k+l) x} \int \limits_0^{2 \pi} \mathrm{e}^{\mathrm{i}(k-l) t} \, \mathrm{d} t \stackrel{(3)}{=} \pi \mathrm{e}^{-\mathrm{i} (n-1) x} \sum \limits_{k=0}^{n-1} \mathrm{e}^{2 \mathrm{i} k x} \\ &\stackrel{(2)}{=} \pi \frac{\sin(nx)}{\sin(x)} \, . \end{align} This result directly leads to \begin{align} I_n(x) &\equiv \int \limits_0^\pi \frac{\cos(n x) \cos(x) - \cos(n t) \cos(t)}{\cos(x) - \cos(t)} \, \mathrm{d} t = \int \limits_0^\pi \left[\cos(x)\frac{\cos(n x) - \cos(n t)}{\cos(x) - \cos(t)} + \cos(n t)\right]\, \mathrm{d} t \\ &= \cos(x) J_n(x) + 0 = \pi \cos(x) \frac{\sin(nx)}{\sin(x)} \, . \end{align} • Great solution ! Thank you. – aleph0 Jan 5 at 11:48
2019-04-24T05:54:55
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3061827/compute-int-0-pi-frac-cosnx-cosx-cosnt-cost-cosx-cost/3062171", "openwebmath_score": 0.9989050030708313, "openwebmath_perplexity": 640.1805197314969, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9748211604938802, "lm_q2_score": 0.861538211208597, "lm_q1q2_score": 0.8398456788601862 }
https://www.physicsforums.com/threads/is-this-function-continous.143924/
# Is this function continous? 1. Nov 15, 2006 ### pivoxa15 Is f(t)= {0, -2<t<0 {t, 0<=t<2 continous everywhere in -2<t<2. I am a bit concerned at t=0 I think yes, after applying the epsilon delta argument but I rememer that a similar function f(t) = {-t, -2<t<0 {t, 0<=t<2 is not differentiable hence not continous at t=0. Have I made a mistake somwhere? Last edited: Nov 15, 2006 2. Nov 15, 2006 ### matt grime It is perfectly possible for a function to be continuous and not differentiable. 3. Nov 15, 2006 ### pivoxa15 So f(t)= {0, -2<t<0 {t, 0<=t<2 is continous at t=0? 4. Nov 15, 2006 ### HallsofIvy Staff Emeritus What is $\lim_{t\rightarrow0}f(t)$? 5. Nov 15, 2006 ### pivoxa15 I have to say it is 0 because from the left, it must be 0 since the function is 0. From the right, it is 0 since the function is t. f(0)=0 is defined so it should be continous. But is it differentiable at t=0? This means f(t) = {-t, -2<t<0 {t, 0<=t<2 is continous as well. But it is not differentiable at t=0 is it? How come? 6. Nov 15, 2006 ### HallsofIvy Staff Emeritus Yes, the limit from both left and right is 0 so the limit is 0. Since the limit there exists and is equal to the value of the function, the function is continuous at 0. Your f(t) is, of course, |t| between -2 and 2. It is well know that |x|, while continuous, does not have a derivative at x= 0. Essentially, it is not "smooth": there is a corner at x= 0 so the tangent line there is not well defined. More precisely, if h< 0 then f(0+h)= f(h)= -h so (f(0+h)- f(0))/h= -h/h= -1 while if h> 0, (f(0+h)- f(0))/h= h/h= 1. The two one-sided limits are different so the limit itself, and therefore the derivative at t=0, does not exist. It's easy to see that the derivative of f is 1 for t> 0 and -1 for t< 0. While the derivative of a function is not necessarily continuous, it does satisfy the "intermediate value property" so the derivative cannot exist at 0. 7. Nov 15, 2006 ### pivoxa15 So |x| is everywhere continous but not differentiable at x=0 because the derivative function is undefined at x=0. Back to f(t)= {0, -2<t<0 {t, 0<=t<2 If I wanted to represent this function as a fourier series than I am assured that the fourier series is uniformly convergent in -2<t<2 since f(t) is continous everywhere in this domain as have been shown. Or could this not happen because if an infinite series of functions is uniformly convergent than the function it represents is continous everywhere in the domain. But the function being continous everywhere dosen't always mean uniform convergence of the series representing it. In other words is it 'if' or 'if and only if'? Last edited: Nov 15, 2006
2016-12-06T16:07:47
{ "domain": "physicsforums.com", "url": "https://www.physicsforums.com/threads/is-this-function-continous.143924/", "openwebmath_score": 0.9002861380577087, "openwebmath_perplexity": 997.1525897927393, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.97482115683641, "lm_q2_score": 0.8615382129861583, "lm_q1q2_score": 0.8398456774419403 }
https://math.stackexchange.com/questions/2555783/chessboard-8-times8-and-domino-1-times2
# Chessboard $8\times8$ and domino $1\times2$ There is a chessboard of size $8\times 8$. I am given dominoes of size $1\times 2$ and of a single color (assume, it has a color). It is possible to place a domino on the board so that it covers exactly two squares. I can't place two dominoes on the same square and I can't place a domino so that it is partially off the board. a) How many ways are there to place a single domino on the board( I place it only horizontally or vertically) My Answer is : 112 b)How many ways are there to place two different dominoes on the board(red domino and blue)? My Answer is : $1024$ (But, I'm not sure at all) c)How many ways are there to place two blue dominoes on the board? I don't know how to approach to this question. I have started to learn Combinatorics this year, and kind of stuck. Thank you, in advance. • Why 32? Why 1024? What reasoning led you to those numbers? – Arthur Dec 7 '17 at 17:11 (a) Treat the centers of $64$ chess positions as vertices and join neighboring vertices by edges. There are $112 = 2\times 7 \times 8$ of them. There is a one-one correspondence between possible placement of domino and the edge it covered. This means there are $112$ ways to place a single domino. (b) Given two different domino positions, they didn't overlap when and only when corresonding edges do not sharing any vertices. After you pick the first edge $e_1$, there are four scenarios for picking the second edge $e_2$: • If $e_1$is one of the $8 = 4\times 2$ edges at the corners, let's say $e_1$ is the edge $1$ in diagram below, you cannot pick the $4$ edges colored in red as $e_2$. Otherwise, the two dominos with overlap. This leaves us $112-4$ ways to pick $e_2$. • If $e_1$ is the remaining $20 = 4\times 7 - 8$ on the sides, e.g. edge $2$ in diagram below, you cannot pick the $5$ edges colored in orange. This leaves us $112-5$ ways to pick $e_2$. • If $e_1$ is one of the $24 = 4 \times 6$ edges adjacent to the sides, eg. edge $3$ in diagram below, you cannot pick the $6$ edges colored in yellow. This leaves us $112-6$ ways to pick $e_2$. • Finally, when $e_1$ is one of the remaining $60 = 112-8-20-24$ edges, e.g edge $4$ in diagram below, you cannot pick the $7$ edges colored in green. In this case, there are $112-7$ choices for $e_2$. Combine these, we find the number of ways of placing two dominos of different color is $$8(112-4) + 20(112-5)+ 24(112-6)+60(112-7) = 11848$$ (c) Just divide the number from (b) by two. This is because there is a one-two correspondence between placing two dominos of same color and placing two dominos of different color. There are $5924 = 11848/2$ ways to place two domoinos of same color on the chessboard. • Your explanation for b is "too complicated" for me ;( Is there any other ways to approach it? – WannaKnow Dec 7 '17 at 18:18 • WannaKnow In this case, I hope a picture worth more than thousand words. – achille hui Dec 7 '17 at 19:03 • I almost got it, thank you for your help. But, what is 4x7-8, 4x6, cause for 8 = 2 x 4 (As I understood, it's because we have a 4 corner that can go vertically or horizontally (2 options)), Am I right about it? And, if yes, what about others? – WannaKnow Dec 7 '17 at 19:19 • @WannaKnow 1) You are right about the $8$. 2) $4\times 7 - 8$ : there are 4 sides, each sides of seven edges but $8$ of them has be counted before (those attached to corners). 3) $4 \times 6$ : On each side, the are $6$ edges that like edge $3$ in diagram. i.e. one vertex is on the side, another vertex is the interior. – achille hui Dec 7 '17 at 19:39 • Thank you so much for your help! I totally got it! Thank you =) – WannaKnow Dec 7 '17 at 19:45 For (a): if the domino is oriented horizontally, its position is determined by the leftmost square it covers, for which there are 7$\cdot$8=56 possibilities (the rightmost file is excluded). Similar for vertical orientation. Thus, there are 2$\cdot$56=112 possibilities in total. For (b), if the dominoes are distinguishable, and I get 11,848 by going through all the cases (somewhat tedious work). Say we place the red domino first, and without loss it is placed vertically. For each of the 56 possibilities we have to consider how many possibilities for the blue domino are made impossible. Essentially this depends only how close to the boundary we are. For (c), the answer is half of the answer to (b), as each placement of two blue dominoes corresponds to two different placements of two dominoes which have different colors. The answer is thus 11 848 / 2 = 5 924. • how did you get such number in b and c? – WannaKnow Dec 7 '17 at 17:31 • I'll add some more text – Reiner Martin Dec 7 '17 at 17:31 • I still don't get how you goot 11848 in b? – WannaKnow Dec 7 '17 at 17:48
2019-11-14T13:39:54
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2555783/chessboard-8-times8-and-domino-1-times2", "openwebmath_score": 0.7193139791488647, "openwebmath_perplexity": 450.4759852990718, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9748211553734217, "lm_q2_score": 0.8615382094310357, "lm_q1q2_score": 0.8398456727159112 }
https://math.stackexchange.com/questions/1468270/how-to-interpret-the-integrand-in-this-surface-integral
# How to interpret the integrand in this surface integral? Let Ω be the region in $ℝ^3$ defined by $$Ω={(x_1,x_2,x_3):max(∣∣x_1∣∣,∣∣x_2∣∣,∣∣x_3∣∣)≤1}$$ Let ∂Ω denote the boundary of Ω. Calculate $$∫_{∂Ω}ϕF⋅ndσ$$ where n is the unit normal vector, dσ denotes integration over ∂Ω, $F_i=\large \frac{x_i}{(x_1^2+x_2^2+x_3^2)^{\frac{3}{2}}}^=\frac{x_i}{r^3}$ and $ϕ(y_1,y_2,y_3)$ is a continuously differentiable function of $\large y_i=\frac{x_i}{r}$. Assume that ϕ has unit mean over the unit sphere. I just started on this problem so I don't want solutions. My question is: how should I interpret $\phi F$? Is $\phi$ another vector field and that I should take the inner product of $\phi$ with $F$? This wouldn't make much sense since; I'd end up with a scalar, and then scalar.$\vec n$ wouldn't really make sense either. Any hints or suggestions are welcome. Thanks, EDIT: I'd welcome solutions at this point. I am getting weird computations -- such as an integral that is equal to zero. I tried using the "product rule" that I found on Wolfram Alpha to compute the divergence of $\phi F$. I notice first that divF=0, so F alone is divergence-free. But I honestly do not know whether I have the correct vector field after multiplication with $\phi$. So, when computing the divergence of $\phi F$, I might be using an incorrect vector field. • As you said, $\phi$ is actually a function, so $\phi F$ is a function times a vector fields, thus is still a vector field. Then $\phi F \cdot n$ is the inner product between these two vector fields. – user99914 Oct 7 '15 at 5:24 • Hi @JohnMa is $\phi$ a scalar-valued function? Is $\phi F$ a composition of a scalar function with a vector field? I'm a little confused with what this object is. Can you elaborate just a bit more? Thanks, – User001 Oct 7 '15 at 5:27 • For example, if $F = (F_1, F_2, F_3)$ then $\phi F$ is another vector fields given by $(\phi F_1, \phi F_2, \phi F_3)$. – user99914 Oct 7 '15 at 5:28 • $\phi$ is a function with three variable, so $\phi(y_1, y_2, y_3)$ is a number. The sentence "Assume that $\phi$ has unit mean over the unit sphere" is a hint that my interpretation is correct (What does this mean if $\phi$ is a vector fields?) – user99914 Oct 7 '15 at 5:36 • It's not composition, just multiplication. – mrf Oct 7 '15 at 6:17 First of all, the expression is $$\int_{\partial \Omega} \phi F \cdot \vec n d\sigma.$$ To use divergence theorem, you better need to calculate $$\text{div} (\phi F) = \nabla \phi \cdot F + \phi \text{div} F.$$ Now there are two terms on the right hand side. Note that the second term is zero as $\text{div} F = 0$. The first term is zero too, as $F = \frac{1}{r^3} (x_1, x_2, x_3)$ and $\phi$ is constant along this direction. Thus you actually have $\text{div}(\phi F) = 0$. Now because you know almost nothing about $\phi$, you only know that it's average on the unit sphere is $1$. Thus you want to change $\partial \Omega$ to the unit sphere. Now let $B$ be the unit ball in $\mathbb R^3$ centered at $0$. So $\partial B$ is the unit sphere. Note that $B \subset \Omega$. Let $M = \Omega\setminus B$. Then $\partial M = \partial \Omega - \partial B$. By the divergence theorem, $$\int_{\partial M} \phi F \cdot \vec n d\sigma = \pm \int_M \text{div} (\phi F) dx = 0.$$ This imply $$\int_{\partial \Omega} \phi F \cdot \vec n d\sigma = \int_{\partial B} \phi F \cdot \vec n d\sigma$$ Now on the sphere $\partial B$, the normal vector is $(x_1, x_2, x_3)$, thus $F\cdot \vec n =1$ and so $$\int_{\partial B} \phi F \cdot \vec n d\sigma = \int_{\partial B} \phi d\sigma = \text{Area of the unit sphere} = 4\pi.$$ • Note that $\phi (x) = \phi (\frac{x_1}{r}, \frac{x_2}{r}, \frac{x_3}{r})$, so $\phi(tx) = \phi (\frac{tx_1}{tr}, \frac{tx_2}{tr}, \frac{tx_3}{tr}) = \phi (\frac{x_1}{r}, \frac{x_2}{r}, \frac{x_3}{r}) = \phi(x)$. Thus the value of $\phi$ is the same along each ray $\{tx : t>0\}$. @LebronJames – user99914 Oct 8 '15 at 11:11 • No! @LebronJames it is not known if $\nabla \phi = 0$, I only know that along the $r$ direction, $\nabla_r \phi = 0$, but it is sufficient to show that $\nabla \phi \cdot F = 0$ as $F$ is parallel to the $r$-direction. – user99914 Oct 9 '15 at 0:33 • $\nabla \phi$ is a vector, and it has no $F$ component as $\phi$ is constant along that direction. Basically we are using the formula $\nabla_V \phi = \nabla \phi \cdot V$ for all fixed vector $V$ ($\nabla_V \phi$ is the directional derivative of $\phi$ along $V$. @LebronJames – user99914 Oct 9 '15 at 0:47 • Ahhhh...that's so pretty. Yes, of course. That is an awesome argument. Thanks a ton for your time and patience @JohnMa. I learned a lot from you on this problem. Have a great night :-) – User001 Oct 9 '15 at 0:51 • In Euclidean space, if you have a function $\phi$ defined on an open set in $\mathbb R^n$, then as a vector $\nabla \phi$ is given by $\nabla \phi = (\partial_1 \phi, \partial_2 \phi, \cdots, \nabla_n \phi)$. It will also satisfies $\nabla \phi \cdot V = \partial_V \phi$. @LebronJames – user99914 Oct 9 '15 at 1:39
2019-10-13T20:47:29
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1468270/how-to-interpret-the-integrand-in-this-surface-integral", "openwebmath_score": 0.9602752327919006, "openwebmath_perplexity": 179.66033735338357, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9748211575679041, "lm_q2_score": 0.8615382058759129, "lm_q1q2_score": 0.8398456711409327 }
https://math.stackexchange.com/questions/3108648/h%C3%B6lder-norm-of-the-hilbert-transform
# Hölder norm of the Hilbert Transform Let $$\mathcal{H}$$ the Hilbert transform defined by $$\mathcal{H}f(x)= p.v.\int_{-\infty}^{+\infty}\frac{f(x-y)}{y}dy.$$ We know that, for each $$1, it is true that $$||\mathcal{H}f||_{L^p}\leq C_p||f||_{L^p}$$ for some positive constant depending only of $$p$$. My question is: Consider $$0<\alpha<1$$ and $$||f||_{C^{\alpha}}$$ is the $$\alpha^{th}$$-Holder norm, e.g, $$||f||_{C^{\alpha}(\Omega)}=\sup_{x\neq y\in\Omega}\frac{|f(x)-f(y)|}{|x-y|^{\alpha}}.$$ Is it true that $$||\mathcal{H}{f}||_{C^{\alpha}}\leq C||f||_{C^{\alpha}}?$$ • Yes, take $C=1$. – supinf Feb 11 at 12:03 • adjusted, @supinf. – VVCM Feb 11 at 12:08 • The $L^\infty\to L^\infty$ estimate fails, so there must be some explicit example of a sequence $f_n$ such that $\|Hf_n\|_{L^\infty}/\|f_n\|_{L^\infty}\to \infty$. I guess that the same counterexample would make the $C^\alpha \to C^\alpha$ estimate fail as well. Can you please check? I am interested. – Giuseppe Negro Feb 11 at 12:23 • @GiuseppeNegro Your Idea does not work if the function $f_n$ is not continuous. And i think the heaviside function could be a counterexample for $L^\infty$, but i did not check it. – supinf Feb 11 at 14:18 • @orange, $p.v.$ is the principal value. – VVCM Feb 11 at 19:53 Adding another answer because this really has little to do with my previous answer; instead it's a comment on how one might "interpret" things to reconcile the contradiction between my "yes" and supinf's "no". We need to be a little careful. Let $$H_{\epsilon, A}f(x)=\int_{\epsilon<|y|so $$H=\lim_{\epsilon\to0,\\A\to\infty}H_{\epsilon, A}.$$ supinf gave a simple example of $$f\in C^\alpha$$ such that $$H_{\epsilon, A}f(0)\to-\infty$$. In fact his example has $$Hf(x)=-\infty$$ for every $$x$$, so if we want to talk about the Hilbert transform on $$C^\alpha$$ we need to modify the definition. Look at it this way: Of course the $$C^\alpha$$ norm is just a seminorm. It's clear that $$||f||=0$$ if and only if $$f$$ is constant, so we do have a norm on the quotient space $$X_\alpha=C^\alpha/\Bbb C$$, consisting of $$C^\alpha$$ modulo constants. When I said that $$H$$ was bounded on $$C^\alpha$$ I should have said it was bounded on $$X_\alpha$$. In that context we shouldn't expect pointwise convergence; instead we have this: True Fact. If $$f\in C^\alpha$$ there exist $$g\in C^\alpha$$ and constants $$c_{\epsilon,A}$$ such that $$H_{\epsilon, A}f(x)-c_{\epsilon, A}\to g(x)$$ for every $$x$$. I'm not going to show that $$g\in C^\alpha$$ here; that's contained in my previous answer. But I will show that the limit $$g(x)$$ exists (and is finite) for every $$x$$; this resolves the contradiction given by supinf: If he'd defined $$Hf=g$$ then he would not have obtained $$Hf=-\infty$$. Define $$H=\int f(x-y)\frac{dy}y=\int_{-\infty}^{-1}+\int_{-1}^1+\int_1^\infty=H^{-}+H^0+H^+.$$ First, $$H^0$$ is no problem. If we say $$H_\epsilon^0=\int_{\epsilon<|y|<1}$$ then $$H^0f(x)-H_\epsilon^0f(x)=\int_0^\epsilon (f(x-y)-f(x+y)\frac{dy}y;$$since $$f(x-y)-f(x+y)=O(y^\alpha)$$ this shows that in fact $$H_\epsilon^0 f\to H^0f$$ uniformly. Now say $$H^+_A=\int_1^A$$. We do need to subtract a constant $$c_A^+$$ to get this to converge. The obvious choice is $$c_A^+=H_A^+f(0)$$, since that certainly gives convergence for $$x=0$$. If I did the calculus correctly we have \begin{align}H_A^+f(x)-H_A^+(0)&=\int_{1-x}^1f(-y)\frac1{y-x}dy \\&+\int_{1}^{A-x}f(-y)\left(\frac1{y-x}-\frac1y\right)dy \\&-\int_{A-x}^Af(-y)\frac{dy}y.\end{align}The first integral on the RHS is independent of $$A$$ , while the second integral tends to somethhing finite as $$A\to\infty$$, since $$f(y)=O(y^\alpha)$$ and $$1/(y+x)=1/y=O(1/y^2)$$; similarly the tird integral tends to $$0$$. Similarly if $$H_A^-=\int_{-A}^{-1}$$ there exists $$c^-_A$$ such that $$H_A^--c_A^-$$ is pointwise convergent; hence $$H_{\epsilon,A}-(c^+_A+c^-_A)$$ is pointwise convergent. • This is an issue that also appears for other function spaces; for example, I read in the book of Tao on nonlinear wave equations that negative order Sobolev spaces should be interpreted as "modulo polynomials". I never understood what he meant but now that you write this I think I get it. Thanks! – Giuseppe Negro Feb 12 at 18:15 • Indeed. In any space where $f=\sum f_n$ as "above" the convergence is at best modulo polynomials. Because $\sum\widehat f_n$ can't see what $\hat f$ does at the origin; a distribution with Fourier transform supported at the origin is precisely a polynomial. Here the only polynomials in $C^\alpha$ are the constants. – David C. Ullrich Feb 12 at 19:53 I believe the answer is yes. Going to cheat, pulling out a big gun. If $$0<\alpha<1$$ then $$C^\alpha$$ is in fact a Besov space; we have $$f\in C^\alpha$$ if and only if $$f=\sum_{n\in\Bbb Z} f_n,$$where $$\widehat{f_n}$$ is supported in the annulus $$A_n=\{\xi:2^{n-1}<|\xi|<2^{n+1}\}$$and $$2^{n\alpha}||f_n||_\infty\le c.$$This sort of decomposition of a Besov space often makes it trivial to determine whether a convolution operator is bounded. Edit: No, it's not quite right to say $$C^\alpha$$ is a Besov space. What's actually a Besov space is the quotient $$X_\alpha=C^\alpha/\Bbb C$$, the space of $$C^\alpha$$ functions modulo constants. I was trying to avoid technical details, but given the other answer showing that taken literally $$H$$ does not map $$C^\alpha$$ to $$C^\alpha$$ it seems we cannot ignore the issue. Here for example we're done if we can show that $$||Hf_n||_\infty\le c||f_n||_\infty,$$and that's actually true, even though $$H$$ is not bounded on $$L^\infty$$. Recall that up to an irrelevant constant $$\widehat{Hf}(\xi)=sgn(\xi)\hat f(\xi).$$Choose a Schwarz function $$\phi_0$$ with $$\widehat\phi_0(\xi)=sgn(\xi)\quad(\xi\in A_0).$$If $$\phi_n$$ is an appropriate dilate of $$\phi_0$$ we have $$\widehat{\phi_n}(\xi)=sgn(\xi)\quad(\xi\in A_n)$$and $$||\phi_n||_1=||\phi_0||_1.$$Hence $$Hf_n=\phi_n*f_n,$$and hence $$||Hf_n||_\infty\le||\phi_n||_1||f_n||_\infty=||\phi_0||_1||f_n||_\infty.$$ (The inequality fails for $$\alpha=1$$; one explanation for why is that $$Lip_1$$ is not a Besov space...) Why is that, I've been asked. First, $$H$$ is certainly not bounded on $$L^\infty$$; if $$f=\chi_{(0,\infty)}$$ then $$Hf$$ is not bounded. Hence $$H$$ is not bounded on $$Lip_1$$. Because, in the sense of distributions, $$f\in Lip_1$$ if and only if $$f'\in L^\infty$$. It's clear, say from the Fourier transform, that $$H$$ commutes with the derivative. So $$||Hf||_{Lip_1}=||(Hf)'||_\infty=||H(f')||_\infty \not\le c||f'||_\infty=c||f||_{Lip_1}.$$ • This is a great answer, very interesting. It would be even greater if you could give some details on why the estimate fails for $\alpha=0$ (the $L^\infty$ case) and $\alpha=1$. – Giuseppe Negro Feb 11 at 14:25 • @orange Why yes. – David C. Ullrich Feb 12 at 14:15 • @DavidC.Ullrich, can I make this Palley-Littlewood characterization for the $L^p$ spaces? – VVCM Feb 13 at 13:05 • Yes, There is a Littlewood-Paley theory for $L^p$, but only for $1 < p < \infty$. Nice answer. The fact that the Hilbert transform is bounded between Hölder classes can also be proved without using that the Hilbert transform is a Fourier multiplier. It holds that Calderón-Zygmund operators are bounded over those classes. – Adrián González-Pérez Feb 13 at 21:23 It is not true. We take the function $$f(x) = \begin{cases} 1 &:& x\geq 1, \\ x &:& -1 First, let us verify that $$\|f\|_{C^\alpha} \leq 3$$. Let $$x,y\in\mathbb [-1,1]$$ be given (the other cases for $$x,y$$ are not that interesting, since $$f$$ has the same value as $$f(1)$$ or $$f(-1)$$). Then $$\frac{|f(x)-f(y)|}{|x-y|^\alpha} = |x-y|^{1-\alpha} \leq 1+|x-y| \leq 3.$$ Thus $$f\in C^\alpha$$, i.e. $$\|f\|_{C^\alpha}$$ is finite. Calculating $$\mathcal Hf$$ at $$x=0$$ yields $$\mathcal (Hf)(0) = p.v.\int_{-\infty}^\infty \frac{f(-y)}{y} \mathrm dy = \int_{-\infty}^{-1} \frac1y + p.v.\int_{-1}^1 (-1) \mathrm dy + \int_1^\infty \frac{-1}y \mathrm dy = -\infty -2 -\infty = -\infty.$$ Hence $$\mathcal Hf$$ is not in $$C^\alpha$$ because it is not continuous. Therefore $$\|\mathcal Hf\|=\infty$$. • I have a question, in what sense is $\mathcal H f$ defined, since $f$ is not a usual test function? – Calvin Khor Feb 11 at 14:55 • The function $f$ must also decay at infinity for the inequality to hold. This decay is implicit in the Besov decomposition of David. – Giuseppe Negro Feb 11 at 14:57 • @CalvinKhor I used the definition given by VVCM in the original question. – supinf Feb 11 at 15:02 • Oh, the PV includes a cutoff at infinity. thanks – Calvin Khor Feb 11 at 15:04 • @GiuseppeNegro It was not a requirement that the function decays at infinity. Even if the functions vanish at infinity, it might be possible to find a sequence that leads to a contradiction to the inequality conjectured in the original post. – supinf Feb 11 at 15:07
2019-04-20T18:31:58
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3108648/h%C3%B6lder-norm-of-the-hilbert-transform", "openwebmath_score": 0.9600426554679871, "openwebmath_perplexity": 342.0821256858989, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9748211553734217, "lm_q2_score": 0.8615382076534742, "lm_q1q2_score": 0.8398456709831067 }
https://math.stackexchange.com/questions/3745665/probability-of-the-sex-of-a-child
# Probability of the Sex of a Child In this Probability Theory course, the question A girl I met told me she has one sibling. What is the probability that her sibling is a boy? is asked, with the answer stated as $$\frac{2}{3}$$. I'm confident that the correct answer considering the wording is actually $$\frac{1}{2}$$, but this may have been a small typo in the question. Then the followup claim Somebody told me that one of the children is a girl, and that girl was born on a Saturday. Now the probability of the other child being a boy is not $$50\%$$; it's not even $$\frac{2}{3}$$. is made, which gets restated as One of my $$2$$ children is a girl; she was born on a Saturday. What is the probability that the other child is a boy? If the first quote was intended to be worded similarly to the latter two, then $$\frac{2}{3}$$ would have been the answer to the first question, since "one of my $$2$$ children is a girl" selectively refers to whichever child is a girl, in the event there is exactly $$1$$, whereas meeting a girl gives no indication of this intelligent selection. However I can't figure out how one arrives an answer other than $$\frac{2}{3}$$ or $$\frac{1}{2}$$ once the Saturday bit is added. Someone in the comment section guessed $$\frac{14}{27}$$. How does this new information, on either the "one of the children" or "the child I met" wording, produce a new answer? If (as I suspect may be the case) it actually doesn't, what is the argument for becoming falsely convinced of the wrong answer, and how is it rebutted? ## 1 Answer Suppose you meet a girl with one sibling. The probability that the sibling is a boy is $$\frac12$$ because the gender of the sibling is independent of the girl you know about. Now someone tells you they have two children and one of them is girl. There are three equally likely possibilities $$GB, BG, GG$$ and two of them involve the other child being a boy, so the probability of a boy is $$\frac23$$. The point here is that the girl you know about is not distinguished from the sibling you do not know about. If you were told that the elder child was a girl, then you would know nothing about the other one, and the probability of the other child being a boy would be $$\frac12$$ again. In the first problem you met the girl which distinguished her from her sibling, so the probability of the sibling being a boy was $$\frac12$$. Finally, if you are told that one of two siblings is a girl born on a Saturday, then you are between the two cases. The sibling is not completely distinguished from the girl you know about, because they may both be born on a Saturday. If you are told that the other child was not born on a Saturday, then the probability of the other child being a boy is $$\frac12$$ because the genders of the Saturday child and the non-Saturday child are independent. Conversely if you were told that both children were born on a Saturday, then the probability that the other child is a boy would be $$\frac23$$. As you are not told either way if the other child is born on a Saturday, you expect an answer between $$\frac12$$ and $$\frac23$$, but much closer to $$\frac12$$, as the other child is most likely to not be born on a Saturday. That is why an answer of $$14/27$$ should not surprise you. Now for the calculation: There are 14 possibilities for the first child (gender and day of week) and 14 possibilities for the second. However one of them must be a girl born on a Saturday, so there are 27 valid combinations. 14 of them have the sibling being a boy so the probability of a boy is $$\frac{14}{27}$$.
2021-01-16T06:27:08
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/3745665/probability-of-the-sex-of-a-child", "openwebmath_score": 0.4171859920024872, "openwebmath_perplexity": 143.68508408128167, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9748211568364099, "lm_q2_score": 0.8615382040983515, "lm_q1q2_score": 0.839845668777918 }
https://gmatclub.com/forum/if-a-b-0-is-b-2-1-1-a-1-2-2-1-a-1-b-244108.html
GMAT Question of the Day - Daily to your Mailbox; hard ones only It is currently 24 May 2019, 08:33 ### GMAT Club Daily Prep #### Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email. Customized for You we will pick new questions that match your level based on your Timer History Track every week, we’ll send you an estimated GMAT score based on your performance Practice Pays we will pick new questions that match your level based on your Timer History # If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1 Author Message TAGS: ### Hide Tags Intern Joined: 18 Apr 2013 Posts: 34 If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 06 Jul 2017, 06:58 4 00:00 Difficulty: 95% (hard) Question Stats: 46% (02:20) correct 54% (02:02) wrong based on 192 sessions ### HideShow timer Statistics If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1 Target Test Prep Representative Status: Founder & CEO Affiliations: Target Test Prep Joined: 14 Oct 2015 Posts: 6229 Location: United States (CA) Re: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 30 Jul 2017, 17:27 5 2 roastedchips wrote: If a>b>0, is b <2? 1) 1/a >1/2 2) (1/a) + (1/b) =1 We are given that a > b > 0 and need to determine whether b < 2. Statement One Alone: 1/a > 1/2 Taking the reciprocal of each side and reversing the direction of the inequality, we get: a < 2 We see that a is less than 2, and thus b must also be less than 2. Statement one is sufficient to answer the question. Statement Two Alone: (1/a) + (1/b) = 1 Multiplying the entire inequality by ab (which is non-zero because a > b > 0), we have: b + a = ab b = ab - a b = a(b - 1) a = b/(b - 1) Substituting for a in the inequality given in the question stem, a > b > 0, we have: b/(b - 1) > b > 0 Since b > 0, we can divide each side of the inequality by b without changing the inequality sign: 1/(b - 1) > 1 Taking the reciprocal of each side and reversing the direction of the inequality, we get: b - 1 < 1 b < 2 Statement two is sufficient to answer the question. _________________ # Scott Woodbury-Stewart Founder and CEO [email protected] 122 Reviews 5-star rated online GMAT quant self study course See why Target Test Prep is the top rated GMAT quant course on GMAT Club. Read Our Reviews If you find one of my posts helpful, please take a moment to click on the "Kudos" button. ##### General Discussion Senior PS Moderator Joined: 26 Feb 2016 Posts: 3386 Location: India GPA: 3.12 Re: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 06 Jul 2017, 12:07 2 1) 1/a >1/b This is possible if and only if a < 2. Since we have relation a>b>0, and b <2 is definitely true. Sufficient 2) (1/a) + (1/b) =1 For relation a>b>0, this is possible when b=3/2 and a=3, or when b=4/3 and a=4..... and so on. At b=2, a must be equal to 2, which is not possible as a>b>0. Thereafter, for every value of b, we will not be able to find a such that a>b. Sufficient (Option D) _________________ You've got what it takes, but it will take everything you've got Intern Joined: 16 Apr 2017 Posts: 45 Re: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 16 Jul 2017, 04:05 roastedchips wrote: If a>b>0, is b <2? 1) 1/a >1/2 2) (1/a) + (1/b) =1 I think the question should mention for statement 2 that "a" is not equal to 1, since at that point b becomes infinite or undefined.Rest is fine. _________________ KUDOS please, if you like the post or if it helps SVP Joined: 26 Mar 2013 Posts: 2182 Re: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 18 Jul 2017, 04:33 If a>b>0, is b <2? 1) 1/a >1/2 As 'a' is positive then we can safely reverse the fraction but flip the inequality sign The a < 2. For certain we know that b < 2 as a > b. Sufficient 2) (1/a) + (1/b) =1 $$\frac{1}{a}$$ + $$\frac{1}{b}$$ =1 $$\frac{ab}{b+a}$$= 1 a +b = ab Let a =4.......then b= 4/3 < 2 let a =10...... then b= 10/9 < 2 let a = 12......then b = 12/11 <2 There is a pattern. Always the numerator is greater than denominator by 1 making the fraction 1.xy <2 Sufficient Intern Joined: 15 Aug 2012 Posts: 42 Schools: AGSM '19 Re: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 30 Jul 2018, 11:13 ScottTargetTestPrep Bunuel I did the same thing for statement 2 but I replaced b. a + b= ab a = ab - b = b(a-1) b = a/(a-1) Now we have a > a/(a-1) > 0 a > a/(a-1) 1 > 1/(a-1) 1 < a-1 a > 2 But this conflicts with what we got in statement 1 i.e. a < 2. Doesn't GMAT have the same answers when both statements are sufficient on their own? Intern Joined: 27 Aug 2018 Posts: 13 Re: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 06 Sep 2018, 15:53 roastedchips wrote: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1 In the version of the question I encountered, and the version that was archived here, (2) is the following: 1/a+a/b=1. (Difference is a/b and not 1/b). Does this change the analysis? Intern Joined: 22 Jul 2018 Posts: 15 Location: Turkey GMAT 1: 710 Q49 V36 GPA: 2.9 Re: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 19 Dec 2018, 12:57 pzone123 wrote: roastedchips wrote: If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1 In the version of the question I encountered, and the version that was archived here, (2) is the following: 1/a+a/b=1. (Difference is a/b and not 1/b). Does this change the analysis? I think that must be a mistaken version of this question. because a/b is definitely bigger than 1 and 1/a is definitely positive. therefore, the combination of the two would be bigger than 1. no way it would be equal to 1. I also saw that one and couldn't figure out. Retired Moderator Joined: 27 Oct 2017 Posts: 1225 Location: India GPA: 3.64 WE: Business Development (Energy and Utilities) If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1  [#permalink] ### Show Tags 01 Mar 2019, 23:59 " in this question when we see the condition of b<1 then the question falls apart . please check and let me know 1<b<2 must be the range of b" RESPONSE Even if the b is better 1 and 2, b is less than 2. Hence the Question is Correct and it does not fall apart. _________________ If a > b > 0, is b < 2? (1) 1/a > 1/2 (2) 1/a + 1/b = 1   [#permalink] 01 Mar 2019, 23:59 Display posts from previous: Sort by
2019-05-24T15:33:56
{ "domain": "gmatclub.com", "url": "https://gmatclub.com/forum/if-a-b-0-is-b-2-1-1-a-1-2-2-1-a-1-b-244108.html", "openwebmath_score": 0.8125951290130615, "openwebmath_perplexity": 3503.8377243034543, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. Yes\n2. Yes", "lm_q1_score": 0.9465966702001758, "lm_q2_score": 0.8872046056466901, "lm_q1q2_score": 0.839824925491417 }
https://mathematica.stackexchange.com/questions/77668/is-there-an-inequality-operator-less-greater-for-lists-of-elements-as-oppose/77670
# Is there an inequality operator (Less, Greater) for lists of elements (as opposed to elements)? Like multi-column sorting. For example, {1,3,5} > {1,2,5} would return True, while {1,3,5} > {1,5,2} would return False. I'm betting there's a simple term for this and that term would lead straight to some function, but I can't think of the term. It'd be a trivial function to write, but there must be something built-in... (I'm looking for a predicate I can supply to this PriorityQueue implementation.) • Tiebreaking is a term that just came to mind, but searching it yields no results. – Andrew Cheong Mar 19 '15 at 6:29 • Look at OrderedQ... – ciao Mar 19 '15 at 6:35 • Agh, that was what I was looking for. Still not well-versed in $Mathematica$. I didn't think to read through the *Q functions, even after thinking the word "Predicate"—I guess I'd only seen more primitive *Q functions so didn't think I'd find my answer there. In case this question might help someone else searching the terms I've used, could you post your comment as an answer? Thanks. – Andrew Cheong Mar 19 '15 at 6:38 • It's been a long day. Thanks, I'll fix. – Andrew Cheong Mar 19 '15 at 8:07 • what about {1,3,5} > {1,2,7}? You could make a case for either answer. Or {1,3,5} > {1,1,3,5} ? – ControlAltDel Mar 19 '15 at 12:21 I propose using Order, assuming equal-length lists. Order[{1, 3, 5}, {1, 3, 4}] Order[{1, 3, 5}, {1, 5, 2}] Order[{1, 3, 5}, {1, 3, 5}] -1 1 0 You can assign an infix operator if you wish: CirclePlus = Order; {1, 3, 5} ⊕ {1, 3, 4} {1, 3, 5} ⊕ {1, 5, 2} {1, 3, 5} ⊕ {1, 3, 5} -1 1 0 You can convert the numeric output to Boolean as needed, but often it is faster to use it numerically. An example of conversion: Star = Composition[Negative, Order]; {1, 3, 5} ⋆ {1, 3, 4} {1, 3, 5} ⋆ {1, 5, 2} {1, 3, 5} ⋆ {1, 3, 5} True False False listGreater[l1_, l2_] := OrderedQ@{l2, l1}&& l1 =!= l2 listLess[l1_, l2_] := OrderedQ@{l1, l2}&& l1 =!= l2 listGreaterEqual[l1_, l2_] := OrderedQ@{l2, l1} listLessEqual[l1_, l2_] := OrderedQ@{l1, l2} {1, 3, 5}~listGreater~{1, 3, 4} (* True *)
2020-09-24T20:47:03
{ "domain": "stackexchange.com", "url": "https://mathematica.stackexchange.com/questions/77668/is-there-an-inequality-operator-less-greater-for-lists-of-elements-as-oppose/77670", "openwebmath_score": 0.38250893354415894, "openwebmath_perplexity": 3468.9200969363237, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9465966641739773, "lm_q2_score": 0.8872045981907006, "lm_q1q2_score": 0.839824913087131 }
https://classes.areteem.org/mod/forum/discuss.php?d=976
## Online Course Discussion Forum ### Why can't there be a negative root for a radical function? Why can't there be a negative root for a radical function? This topic is referring to Math Challenge II-A Algebra Lecture 7 Radical Equations. Why can't we also assume that there is a negative solution for a square root when the equation has two distinct real roots? e.g. if the square root of x's absolute value is 3, then why can't the equivalent of the square root of x be negative three? My description might be inaccurate since I can't give the best case I can, but it's just that I'm confounded that sometimes we only solve x for a positive solution. Why is it? Re: Why can't there be a negative root for a radical function? This is a very good question.  We need to be very clear about the meanings of the definition of square roots and the notation we use for them. Each positive number $a$ has two square roots, one positive and one negative.  The number $0$ has only one square root, of course, which is $0$.  When we write the notation $\sqrt{a}$, it represents the nonegative one.  So the square roots of positive number $a$ are $\sqrt{a}$ and $-\sqrt{a}$.  This way, there is no confusion for the expression. Therefore, whenever you see the expression such as $\sqrt{x^2-3x+2}$, it means the nonnegative square root of $x^2-3x+2$.  It is the same with radicals with even index, such as $\sqrt[4]{m+1}$ and $\sqrt[20]{y^3-3}$: it is required that the value underneath the radical is nonnegative, and the result is also nonnegative.  So $\sqrt[4]{16}=2$, and $\sqrt[6]{-64}$ is undefined in real numbers. For radicals with odd index, there is no such restriction: $\sqrt[3]{-8}=-2$. Re: Why can't there be a negative root for a radical function? Thanks a lot for the clear explanation! Sorry for pestering with one following question, referring to this line of reply:  So $\sqrt[4]{16}=2$164=2, and $\sqrt[6]{-64}$, though, undefined in real numbers? 2 to the fourth power is 16, and so does -2, which looks mathematically plausible. I do understand that there is no solution for $\sqrt[6]{-64}$ as its index is not an odd number, but so does the former one. Again, thanks a lot for the quick reply! Areteem courses are gearing me up for the upcoming AMC 10 Exam. Thanks to Instructor John and David for the fantastic tuition (Edited by Areteem Professor - original submission Monday, August 23, 2021, 5:51 AM) Re: Why can't there be a negative root for a radical function? Sorry I didn't make it clear: "$\sqrt[4]{16}=2$" means "$\sqrt[4]{16}$" is well defined and is equal to $2$ (the positive value of the 4th roots).  It was not intended to be combined with "$\sqrt[6]{-64}$ is undefined in real numbers" . (fixed the mathematical expressions in the question) Thanks a lot! I got it. Thanks a lot! I got it.
2021-09-18T06:55:17
{ "domain": "areteem.org", "url": "https://classes.areteem.org/mod/forum/discuss.php?d=976", "openwebmath_score": 0.8859012722969055, "openwebmath_perplexity": 389.53478431016197, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357628519819, "lm_q2_score": 0.8577681122619883, "lm_q1q2_score": 0.8397856581385202 }
https://math.stackexchange.com/questions/122916/what-is-the-inverse-cycle-of-permutation/122920
What is the inverse cycle of permutation? Given cyclic permutations, for example, $$σ = (123)$$, $$σ_{2} = (45)$$, what are the inverse cycles $$σ^{-1}$$, $$σ_2^{-1}$$? Regards. • To find the inverse of a permutation just write it backwards. If $\tau = (1243)(67)$ then $\tau^{-1}=(76)(3421)$ [which can then be rewritten as $\tau^{-1}=(1342)(67)$ ] – Bill Cook Mar 21 '12 at 15:46 • @BillCook : Thanks , can you give me a hint regarding how to prove it ? – JAN Mar 21 '12 at 15:49 To elaborate on my comment: To find the inverse of a permutation just write it backwards. If $\tau = (1243)(67)$ then $\tau^{-1}=(76)(3421)$ which can then be rewritten as $\tau^{-1}=(1342)(67)$. For for the above question: $(123)^{-1}=(321)=(132)$. How does one prove this? First consider a single cycle: $\sigma=(a_1a_2\dots a_k)$. If $b \not\in \{a_1,\dots,a_k\}$, then $\sigma(b)=b$ so $\sigma^{-1}(b)=b$. Thus $b$ shouldn't appear in the inverse. Next $\sigma(a_i)=a_{i+1}$ so $\sigma^{-1}(a_{i+1})=a_i$. Thus if $\sigma$: $a_1 \mapsto a_2 \mapsto a_3 \mapsto \cdots \mapsto a_k \mapsto a_1$, then $\sigma^{-1}$: $a_k \mapsto a_{k-1} \mapsto a_{k-2} \mapsto \cdots \mapsto a_1 \mapsto a_k$. This is precisely the cycle $(a_k,a_{k-1}\dots,a_2, a_1)$ which is nothing more than $\sigma$ written backwards. Now what about a list of cycles? Say $\sigma=\sigma_1\cdots \sigma_\ell$. Recall that $\sigma^{-1}=(\sigma_1\cdots \sigma_\ell)^{-1}=\sigma_\ell^{-1}\cdots \sigma_1^{-1}$. So we reverse the list of cycles and then write each one backwards -- thus the inverse is just the whole thing written backwards. One thing to note: This still works even if $\sigma$ is not written in terms of disjoint cycles. • $\sigma^{-1}=(\sigma_1\cdots \sigma_\ell)^{-1}=\sigma_\ell^{-1}\cdots \sigma_1^{-1}$. Do we need to reverse the order of these cycles? I think the multiplication of the cycles are commutative. – user398843 Jan 26 '19 at 20:40 • If they are disjoint cycles, they commute and the order doesn't have to be reversed. However, if the cycles aren't disjoint (like the permutation hasn't been "simplified"), they need to be reversed. – Bill Cook Jan 26 '19 at 22:01 So, you have that $\sigma_1$ is the cycle such that, \begin{align} 1 \mapsto 2 \\ 2 \mapsto 3 \\ 3 \mapsto 1\end{align} It's inverse, $\sigma_1^{-1}$ is a cycle such that composition, $\sigma_1 \circ \sigma_1^{-1}=\sigma_1^{-1} \circ \sigma_1$ is identity. So, the inverse cycle should look like : \begin{align} 2 \mapsto 1 \\ 3 \mapsto 2 \\ 1 \mapsto 3\end{align} What is this in cycle notation? $\sigma_1^{-1} \equiv(213)$ I'll let you try the other one. A particularly easy way of doing this, once you understand what the inverses do is: just to write the cycle backwards! Note that for $(123)$, this is just $(321)$. Now, recall, that set of all permutations form a group. In a group, inverses are unique. So, can you tell me why $(321)$ and $(213)$ are the same? • Got it , then the inverse of $(123)$ is $(321)$ – JAN Mar 21 '12 at 15:53 • Right. See my edit as well. – user21436 Mar 21 '12 at 16:00 Another way to look at Bill Cook's fifth paragraph in his answer: First consider a single cycle: $\sigma=(a_1a_2\dots a_k)$. If $b \not\in \{a_1,\dots,a_k\}$, then $\sigma(b)=b$ so $\sigma^{-1}(b)=b$. Thus $b$ shouldn't appear in the inverse. Next $\sigma(a_i)=a_{i+1}$ so $\sigma^{-1}(a_{i+1})=a_i$. Thus if $\sigma$: $a_1 \mapsto a_2 \mapsto a_3 \mapsto \cdots \mapsto a_{k - 1} \mapsto a_k \mapsto a_1$, then $\sigma^{-1}$: $a_1 \color{aqua}{\leftarrow} a_2 \color{aqua}{\leftarrow} a_3 \color{aqua}{\leftarrow}\cdots \color{aqua}{\leftarrow} a_{k - 1} \color{aqua}{\leftarrow} a_k \color{aqua}{\leftarrow} a_1 \iff$ $a_k \color{aqua}{\mapsto} a_{k-1} \color{aqua}{\mapsto} a_{k-2} \color{aqua}{\mapsto} \cdots \color{aqua}{\leftarrow} a_2 \color{aqua}{\mapsto} a_1 \color{aqua}{\mapsto} a_k$. This is precisely the cycle $(a_k,a_{k-1}\dots,a_2, a_1)$ which is nothing more than $\sigma$ written backwards. Every permutation n>1 can be expressed as a product of 2-cycles. And every 2-cycle (transposition) is inverse of itself. Therefore the inverse of a permutations is Just reverse products of its 2-cycles (ab)^-1 = b^-1 a^-1
2020-11-30T11:04:28
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/122916/what-is-the-inverse-cycle-of-permutation/122920", "openwebmath_score": 0.9935685992240906, "openwebmath_perplexity": 425.0484502994969, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357610169274, "lm_q2_score": 0.8577681104440172, "lm_q1q2_score": 0.8397856547846102 }
http://mathhelpforum.com/differential-geometry/170636-properly-divergent-series-still-properly-divergent-under-rearrangement.html
# Math Help - Is properly divergent series still properly divergent under rearrangement? 1. ## Is properly divergent series still properly divergent under rearrangement? For series $\sum\limits_{n = 1}^\infty a_n$, it is said to be properly divergent if its partial sum $\sum\limits_{i = 1}^n a_i$ approaches $+\infty$ (or $-\infty$) as $n\to \infty$. Then, is it true that any properly divergent series is still properly divergent under arbitrary rearrangement? Could you please given a proof if it is true or a counterexample if it does not always hold? Thanks! 2. Originally Posted by zzzhhh For series $\sum\limits_{n = 1}^\infty a_n$, it is said to be properly divergent if its partial sum $\sum\limits_{i = 1}^n a_i$ approaches $+\infty$ (or $-\infty$) as $n\to \infty$. Then, is it true that any properly divergent series is still properly divergent under arbitrary rearrangement? Could you please given a proof if it is true or a counterexample if it does not always hold? Thanks! Let's consider the two series... $\displaystyle 1 - \frac{1}{\sqrt{2}} + \frac{1}{\sqrt{3}} - \frac{1}{\sqrt{4}} + ... + \frac{1}{\sqrt{2n-1}} - \frac{1}{\sqrt{2n}} + ...$ (1) $\displaystyle 1 + \frac{1}{\sqrt{3}} - \frac{1}{\sqrt{2}} + \frac{1}{\sqrt{5}} + \frac{1}{\sqrt{7}} - \frac{1}{\sqrt{4}} + ... + \frac{1}{\sqrt{4n -3}} + \frac{1}{\sqrt{4n-1}} - \frac{1}{\sqrt{2n}} + ...$ (2) ... each of them can be derived from the other rearranging the terms. The series (1) is convergent according to the Leibnitz's rule. Now we indicate with $\sigma_{2n}$ the sum of the first 2n terms of (1) and with $\sigma_{3n}$ the sum of the first 3n of (2), so that is... $\displaystyle \sigma_{3n} = \sigma_{2n} + \frac{1}{\sqrt{2n+1}}+ \frac{1}{\sqrt{2n+3}} +...+ \frac{1}{\sqrt{4n-1}}$ (3) ... and from (3) we derive that is... $\displaystyle \sigma_{3n} > \sigma_{2n} + \frac{n}{\sqrt{4n-1}}$ (4) But is... $\displaystyle \lim_{n \rightarrow \infty} \frac{n}{\sqrt{4n-1}} = \infty$ (5) ... so that the series (2) diverges... Kind regards $\chi$ $\sigma$ 3. An ingenious answer! thank you very much, chisigma! :-) This also shows that the countable additivity condition of signed measure is really a stringent requirement. 4. Although the question has been solved, I'd like to comment that for any $S\in [-\infty,+\infty]$ and for any conditionally conergent series there exists an arrangement whose sum is $S$ (Riemann's arrangement theorem) . Fernando Revilla
2014-08-23T02:44:27
{ "domain": "mathhelpforum.com", "url": "http://mathhelpforum.com/differential-geometry/170636-properly-divergent-series-still-properly-divergent-under-rearrangement.html", "openwebmath_score": 0.909970760345459, "openwebmath_perplexity": 469.69603357667097, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357600994, "lm_q2_score": 0.857768108626046, "lm_q1q2_score": 0.8397856522177256 }
https://math.stackexchange.com/questions/1403750/finding-the-probability-of-whether-it-would-rain-on-weekends
# Finding the probability of whether it would rain on weekends The probability that it will rain on Saturday is 25% and the probability that it will rain on Sunday is also 25%. Is it true that the probability that it will rain on the weekends is 50%. Explain why or why not. What i tried I know that it is not true. Let $P(A)$ represent the probability that it will rain on Saturday, while $P(B)$ represent the probability that it will rain on Sunday. Hence $P(A \cap B)$ will represent the probability that it would rain on both days (weekends) and since $$P(A \cap B)=P(A)+P(B)-P(A\cup B)$$ From the formula above we can see that the sum of $P(A)$ and $P(B)$ alone would not add up to $P(A \cap B)$ which means that we simply could not just add the two probabilities together to get $50$%. Since i find this rather counterintutive could anyone provide a simpler and more clearer explanation to this problem.Thanks • It means the same thing? Its just a rearrangement of the formula? Aug 20, 2015 at 10:33 • If the probability of the event "raining on Sat. and Sun." is $=0$ then the probability of the event "raining on weekends" is 50%. Aug 20, 2015 at 10:33 • "the probability that it will rain on the weekends" is unclear because the plural doesn't seem to make sense. Did you mean "on the weekend" (i.e. on at least one of the weekend days) or "on the weekend days" (i.e. on both of them)? Aug 20, 2015 at 10:41 • I meant on both days. Aug 20, 2015 at 10:42 • You may just write all the possible outcomes and thus check your answer: let former correspond to Saturday and latter correspond to Sunday: P(rain+rain) = 0.25*0.25, P(no rain + no rain) = 0.75*0.75, P(rain+no rain) = 0.25*0.75, P(no rain+rain) = 0.75*0.25; The sum = 1 ! Thus probability of rain on both days = (0.25)^2, on one of the days = 2*0.25*0.75 = 0.375 Aug 20, 2015 at 10:49 I will copy my comment here and continue: All the possible outcomes: let former correspond to Saturday and latter correspond to Sunday: $P(rain+rain) = 0.25*0.25$, $P(norain + norain) = 0.75*0.75$, $P(rain+norain) = 0.25*0.75$, $P(norain+rain) = 0.75*0.25$; The sum = 1 ! Thus probability of rain on both days $= (0.25)^2$, on one of the days $= 2*0.25*0.75 = 0.375$ You are interested in the event: $P(rain+rain)+P(no rain + rain)+P(rain+no rain) = 0.25^2+0.375=0.4375$; Let's check the formula: $P(A)=P(B)=0.25$, $P(A\cap B)= P(A)P(B) = 0.25^2$, $P(A\cup B) = P(A)+P(B)-P(A\cap B) = 0.5 - 0.25^2 = 0.4375$; Why is this true? $P(A\cup B) = P(A \backslash B) + P(B \backslash A) + P(A\cap B) = P(rain+norain)+P(norain+rain)+P(rain+rain)$; Inclusion-exclusion formula that you have used counts $P(A \cap B)$ twice, as $P(A) = P(A \backslash B) + P(A \cap B)$ $P(B) = P(B \backslash A) + P(A \cap B)$ so it need to be substracted. You write that "the sum of $P(A)$ and $P(B)$ alone would not add up to $P(A\cup B)$" – but note that the remaining term is subtracted, so it's not just that they don't add up alone, but a probability gets subtracted that's at least $\max(P(A),P(B))$, so that $P(A\cap B)\le\min(P(A),P(B))$. A more intuitive way to think about this might be that if there's only a $25\%$ chance that it will rain on Saturday, then surely the chance that it will rain on Saturday and on Sunday can't be greater than that – the probability can't increase if you add an extra condition. You can simply calculate $1$ minus the probability of the complementary event: $$1-(1-0.25)^2=0.4375$$
2022-06-25T09:00:07
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1403750/finding-the-probability-of-whether-it-would-rain-on-weekends", "openwebmath_score": 0.7993164658546448, "openwebmath_perplexity": 324.5767591895519, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357622402971, "lm_q2_score": 0.8577681049901037, "lm_q1q2_score": 0.8397856504944013 }
https://math.stackexchange.com/questions/696662/partial-fractions
# Partial fractions Im working on some partial fraction calculus 2 homework problems and I am having some issues with one problem. The question reads: Evaluate the integral $\displaystyle \int\dfrac{2-(5x^2+x)\;dx}{(x-1)(x+1)^2}$ I approached it by splitting it into the form $$\dfrac{2-(5x^2+x)}{(x-1)(x+1)^2} = \dfrac A{x-1}+\dfrac B{x+1}+\dfrac C{(x+1)^2}.$$ Then I solved for $A,B$ and $C$ to get $A=-1, B=-2$ and $C=1$. Then I plugged those values back into the form I set up and started to solve for $$\displaystyle \int\dfrac{2-(5x^2+x)\;dx}{(x-1)(x+1)^2} = - \ln|x-1|-2 \ln|x+1|-\dfrac 1{x+1}+C.$$ When I entered that answer to my online homework it said that it was incorrect and I don't understand why. Hopefully someone can point out where I when wrong and possibly explain how to answer this problem correctly. Thank you! • Your partial fractions expansion is incorrect, you should have $B=-4$. – youler Mar 2 '14 at 20:11 • user124539: In case you don't know about accepting an answer to the questions you ask: you can accept at most one answer per question asked. To accept an answer, simply click on the grey $\large \checkmark$ to the left of the answer you'd like to accept. It turns green when you click on it. And you receive 2 reputation points for each accepted answer. – Namaste Mar 3 '14 at 13:37 Your answer is very close except the constant multiplied by $\ln|x + 1|$. First, look at $$\dfrac{2 - x - 5x^2}{(x - 1)(x + 1)^2} = \dfrac{A}{x - 1} + \dfrac{B}{x + 1} + \dfrac{C}{(x + 1)^2}$$ Multiply both sides by $(x - 1)(x + 1)^2$ to get $$2 - x - 5x^2 = A(x + 1)^2 + B(x - 1)(x + 1) + C(x - 1)$$ If $x = 1$, then $A = -1$. If $x = -1$, then $C = 1$. Finally, $B = -4$ because \begin{aligned} A(x + 1)^2 + B(x - 1)(x + 1) + C(x - 1) &= Ax^2 + 2Ax + A + Bx^2 - B + Cx - C\\ &= x^2(A + B) + x(2A + C) + (A - B - C) \end{aligned} which implies that if $A + B = -5$, then $B = -4$ (also works for $A - B - C = 2$). So we get $$\int \left(-\dfrac{1}{x - 1} - \dfrac{4}{x + 1} + \dfrac{1}{(x + 1)^2} \right)\,dx$$ $$-\ln|x - 1| - 4\ln|x + 1| - \dfrac{1}{x + 1} + \mbox{C}$$
2019-08-23T22:46:39
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/696662/partial-fractions", "openwebmath_score": 0.9394798874855042, "openwebmath_perplexity": 191.48292460518562, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357607110848, "lm_q2_score": 0.8577681049901037, "lm_q1q2_score": 0.8397856491826918 }
https://www.mathworks.com/help/matlab/ref/bandwidth.html?nocookie=true
# bandwidth Lower and upper matrix bandwidth ## Syntax • [lower,upper] = bandwidth(A) example ## Description example B = bandwidth(A,type) returns the bandwidth of matrix A specified by type. Specify type as 'lower' for the lower bandwidth, or 'upper' for the upper bandwidth. example [lower,upper] = bandwidth(A) returns the lower bandwidth, lower, and upper bandwidth, upper, of matrix A. ## Examples collapse all ### Find Bandwidth of Triangular Matrix Create a 6-by-6 lower triangular matrix. A = tril(magic(6)) A = 35 0 0 0 0 0 3 32 0 0 0 0 31 9 2 0 0 0 8 28 33 17 0 0 30 5 34 12 14 0 4 36 29 13 18 11 Find the lower bandwidth of A by specifying type as 'lower'. B = bandwidth(A,'lower') B = 5 The result is 5 because every diagonal below the main diagonal has nonzero elements. Find the upper bandwidth of A by specifying type as 'upper'. B = bandwidth(A,'upper') B = 0 The result is 0 because there are no nonzero elements above the main diagonal. ### Find Bandwidth of Sparse Block Matrix Create a 100-by-100 sparse block matrix. B = kron(speye(25),ones(4)); View a 10-by-10 section of elements from the top left of B. full(B(1:10,1:10)) ans = 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 B has 4-by-4 blocks of ones centered on the main diagonal. Find both the lower and upper bandwidths of B by specifying two output arguments. [lower,upper] = bandwidth(B) lower = 3 upper = 3 The lower and upper bandwidths are both 3. ## Input Arguments collapse all ### A — Input matrix2-D numeric matrix Input matrix, specified as a 2-D numeric matrix. A can be either full or sparse. Data Types: single | double Complex Number Support: Yes ### type — Bandwidth type'lower' | 'upper' Bandwidth type, specified as 'lower' or 'upper'. • Specify 'lower' for the lower bandwidth (below the main diagonal). • Specify 'upper' for the upper bandwidth (above the main diagonal). Data Types: char ## Output Arguments collapse all ### B — Lower or upper bandwidthnonnegative integer scalar Lower or upper bandwidth, returned as a nonnegative integer scalar. • If type is 'lower', then 0 ≤ B ≤ size(A,1)-1. • If type is 'upper', then 0 ≤ B ≤ size(A,2)-1. ### lower — Lower bandwidthnonnegative integer scalar Lower bandwidth, returned as a nonnegative integer scalar. lower is in the range 0 ≤ lower ≤ size(A,1)-1. ### upper — Upper bandwidthnonnegative integer scalar Upper bandwidth, returned as a nonnegative integer scalar. upper is in the range 0 ≤ upper ≤ size(A,2)-1. expand all ### Upper and Lower Bandwidth The upper and lower bandwidths of a matrix are measured by finding the last diagonal (above or below the main diagonal, respectively) that contains nonzero values. That is, for a matrix A with elements Aij: • The upper bandwidth B1 is the smallest number such that ${A}_{ij}=0$ whenever $j-i>{B}_{1}$. • The lower bandwidth B2 is the smallest number such that ${A}_{ij}=0$ whenever $i-j>{B}_{2}$. Note that this measurement does not disallow intermediate diagonals in a band from being all zero, but instead focuses on the location of the last diagonal containing nonzeros. By convention, the upper and lower bandwidths of an empty matrix are both zero. ### Tips • Use the isbanded function to test if a matrix is within a specific lower and upper bandwidth.
2015-12-01T00:52:41
{ "domain": "mathworks.com", "url": "https://www.mathworks.com/help/matlab/ref/bandwidth.html?nocookie=true", "openwebmath_score": 0.6982374787330627, "openwebmath_perplexity": 789.0306402973528, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357616286123, "lm_q2_score": 0.8577681031721324, "lm_q1q2_score": 0.8397856481898587 }
https://math.stackexchange.com/questions/1400631/lu-factorization-why-cant-i-get-a-unit-lower-triangular-matrix
LU-factorization: why can't I get a unit lower triangular matrix? I want to find an $LU$-factorization of the following matrix: \begin{align*} A = \begin{pmatrix} 3 & -6 & 9 \\ -2 & 7 & -2 \\ 0 & 1 & 5 \end{pmatrix} \end{align*} This matrix is invertible (the determinant is $33$), so I should be getting a $LU$ decomposition where $L$ is a lower triangular matrix with only $1s$ on the diagonal. But that's not what I'm getting. Here is what I did: \begin{align*} \begin{pmatrix} 3 & -6 & 9 \\ -2 & 7 & -2 \\ 0 & 1 & 5 \end{pmatrix} & \begin{matrix} \xrightarrow{R_1 \rightarrow 1/3 R_1} \end{matrix} \begin{pmatrix} 1 & -2 & 3 \\ -2 & 7 & -2 \\ 0 & 1 & 5 \end{pmatrix} \begin{matrix} \xrightarrow{R_2 \rightarrow R_2 + 2R_1} \end{matrix} \begin{pmatrix} 1 & -2 & 3 \\ 0 & 3 & 4 \\ 0 & 1 & 5 \end{pmatrix} \\ & \begin{matrix} \xrightarrow{R_2 \rightarrow 1/3 R_2} \end{matrix} \begin{pmatrix} 1 & -2 & 3 \\ 0 & 1 & \frac{4}{3} \\ 0 & 1 & 5 \end{pmatrix} \begin{matrix} \xrightarrow{R_3 \rightarrow R_3 - R_2} \end{matrix} \begin{pmatrix} 1 & -2 & 3 \\ 0 & 1 & \frac{4}{3} \\ 0 & 0 & \frac{11}{3} \end{pmatrix} = U. \end{align*} This matrix is now in echelon form. The elementary matrices corresponding to the operations are: \begin{align*} E_1 & = \begin{pmatrix} \frac{1}{3} & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix} \qquad (R_1 \rightarrow 1/3 R_1) \quad E_2 = \begin{pmatrix} 1 & 0 & 0 \\ 2 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix} \qquad (R_2 \rightarrow R_2 + 2R_1) \\ E_3 &= \begin{pmatrix} 1 & 0 & 0 \\ 0 & \frac{1}{3} & 0 \\ 0 & 0 & 1 \end{pmatrix} \qquad (R_2 \rightarrow 1/3 R_2) \quad E_4 = \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & -1 & 1 \end{pmatrix} \qquad (R_3 \rightarrow R_3 - R_2) \end{align*} Hence we have $E_4 E_3 E_2 E_1 A = U$. Now \begin{align*} E_4 E_3 E_2 E_1 = M = \begin{pmatrix} \frac{1}{3} & 0 & 0 \\ \frac{2}{9} & \frac{1}{3} & 0 \\ - \frac{2}{9} & - \frac{1}{3} & 1 \end{pmatrix} \end{align*} is a lower triangular matrix. Now we can write \begin{align*} A = (E_4 E_3 E_2 E_1)^{-1} U = M^{-1} U = LU, \end{align*} with \begin{align*} M^{-1} = L = \begin{pmatrix} 3 & 0 & 0 \\ -2 & 3 & 0 \\ 0 & 1 & 1 \end{pmatrix} \end{align*} But why does my matrix $L$ not have $1s$ on the diagonal? I thought an $LU$-factorization of an invertible matrix is unique, and that in that case $L$ is an unit lower triangular matrix? Did I overlook something or made a mistake? I haven't interchanged any rows. Please help! • An LU decomposition exists and can be found by rewriting $A=LU$ as $L=AU^{-1}$ and $U$ is certainly invertible – imranfat Aug 17 '15 at 19:54 In the framework of the Gaussian elimination procedure, you get $L$ with all $1$s on the diagonal by never truly rescaling rows. You rescale them in the intermediate step before you add them to another row, but then you "scale them back" so that you're only changing the row that you actually added to. You can always perform Gaussian elimination in this way. (By contrast, you may not always be able to perform Gaussian elimination without exchanging rows to obtain your next pivot, so an $LU$ decomposition may not always exist.) • I see. So if I want an $L$ with only $1s$ on the diagonal, I can never use elementary row operations of the form $R_i \rightarrow \lambda R_i$ ? – Kamil Aug 17 '15 at 19:53 Uniqueness is only for such $L$ that $L_{ii} = 1$ for all $i$. To achieve this, move the scaling factors to $U$ like this: $$A = LU = (LS)(S^{-1}U) = \tilde L \tilde U$$ Here you need $$S = \pmatrix{\frac13&&\\&\frac13&\\&&1}$$
2019-07-16T10:16:35
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1400631/lu-factorization-why-cant-i-get-a-unit-lower-triangular-matrix", "openwebmath_score": 1.000009536743164, "openwebmath_perplexity": 79.8200728256398, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357573468175, "lm_q2_score": 0.8577681068080749, "lm_q1q2_score": 0.8397856480767895 }
https://brilliant.org/discussions/thread/how-to-count-squares/
× # How to Count Squares! Let me go grab a hamburger real quick... Ok, I'm back. How many squares are there in the 6$$\times$$4 grid below? That's a reaallly good question! Let's start by counting the smallest 1$$\times$$1 squares, this is just the same as counting the number of unit squares in a 6$$\times$$4 grid, there are $$6\times4=24$$ 1 by 1 squares in the grid. Now let's move on to the 2$$\times$$2 squares, notice that counting the number of 2$$\times$$2 squares in a 6$$\times$$4 grid is just the same as counting the number of unit squares in a 5$$\times$$3 grid. So the number of 2 by 2 squares in the grid is $$5\times3=15$$. Now the 3$$\times$$3 squares, similarly, counting the number of 3$$\times$$3 squares in a 6$$\times$$4 grid is just the same as counting the number of unit squares in a 4$$\times$$2 grid, which is $$4\times2=8$$. And again the number of 4$$\times$$4 squares in a 6$$\times$$4 grid is equal to the number of unit squares in a 3$$\times$$1 grid, which is $$3\times1=3$$. Add up all the number of squares together: $$24+15+8+3=50$$. Tada! We now have our answer! There are 50 squares in a 6$$\times$$4 grid. Mmm... the hamburger is really good... Back on topic, in general, what is the total number of squares in an $$a\times b$$ grid (where $$a$$ is the width of the grid and $$b$$ is the height of the grid), given $$a\geqslant b$$? Again let's start from the 1$$\times$$1 squares, that's trivial, there's $$ab$$ of them. Now moving on to the 2$$\times$$2 squares, the number of 2$$\times$$2 squares in an $$a\times b$$ grid is equal to the number of unit squares in an $$(a-1)\times(b-1)$$ grid. Notice the pattern? Counting the number of $$n\times n$$ squares in an $$a\times b$$ grid is the same as counting the number of unit squares in an $$(a-n+1)\times(b-n+1)$$ grid. The largest square that can contain in an $$a\times b$$ grid given that $$a\geqslant b$$ is $$b\times b$$. Hence, the total number of squares in an $$a\times b$$ grid is $ab+(a-1)(b-1)+(a-2)(b-2)+\ldots+[a-(b-2)][b-(b-2)]+[a-(b-1)][b-(b-1)]$ Or $\sum_{i=0}^{b-1}{(a-i)(b-i)}$ This is ugly, we don't like sigma symbols sitting around, so why not we simplify this a little bit... \begin{align} \sum_{i=0}^{b-1}{(a-i)(b-i)}&=\sum_{i=0}^{b-1}{[ab-(a+b)i+i^2]} \\&=ab^2-\frac{(a+b)b(b-1)}{2}+\frac{b(b-1)(2b-1)}{6} \\&=b\left[ab-\frac{ab-a+b^2-b}{2}+\frac{2b^2-3b+1}{6}\right] \\&=\frac{b}{6}\left[6ab-3ab+3a-3b^2+3b+2b^2-3b+1\right] \\&=\frac{b}{6}\left[3ab+3a-b^2+1\right] \\&=\frac{b(b+1)(3a-b+1)}{6} \end{align} BOOM! There we have it! *Round of applause* *Fireworks* *Pancakes* The total number of squares in an $$a\times b$$ grid (where $$a$$ is the width of the grid and $$b$$ is the height of the grid), given $$a\geqslant b$$ is $\frac{b(b+1)(3a-b+1)}{6}$ If $$a<b$$, then we just swap the $$a$$ and $$b$$ around. Special case: If $$a=b$$, the above equation becomes $\frac{a(a+1)(2a+1)}{6}$ which is the formula of the sum of squares from 1 to $$a$$. Done! Now let me finish my burger... This is one part of Quadrilatorics. Note by Tan Kenneth 1 year, 7 months ago Sort by: You should add this to the Brilliant wiki. Great note! - 1 year, 7 months ago Cool! Thanks for that note bro, you're awesome! - 1 year, 7 months ago Hope you finished your burger peacefully :P - 1 year, 7 months ago Thanks, I'm glad you like the note. Well unfortunately, I think my hamburger has become stale. XD - 1 year, 7 months ago Nice simple way of explaining complex situation. So many thanks. - 1 year, 5 months ago are you a robot, cos I need some real friends? Humanity is a lie, the computer generation is upon us. Support the cause m64^(1/2) - 1 year, 7 months ago No, i am 100.1% sure I'm not a robot. - 1 year, 7 months ago What a note @Tan Kenneth:) - 1 year, 7 months ago HEY tankenneth, you hyped? - 1 year, 7 months ago Oh yes I am! $$1+1=3$$ - 1 year, 7 months ago جميلة - 1 year, 7 months ago Translation: beautiful! - 1 year, 7 months ago ×
2017-10-23T15:31:45
{ "domain": "brilliant.org", "url": "https://brilliant.org/discussions/thread/how-to-count-squares/", "openwebmath_score": 0.8395243883132935, "openwebmath_perplexity": 1118.0468866480182, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.9790357591818726, "lm_q2_score": 0.8577681049901036, "lm_q1q2_score": 0.8397856478709822 }
http://math.stackexchange.com/questions/18778/convergence-of-sets-topology-on-a-powerset-of-a-set
# Convergence of Sets? (Topology on a Powerset of a Set?) Given a sequence of sets, is there some well-defined notion of a limit of a set? That is, given some universe set $U$, is there topology on $2^U$ (powersets of $U$) such that the usual intersection and the union limits converge to what they normally converge to in that topology? For instance, if I were to take the following sequence of sets for $U=\mathbb{N}$, $S_n = \{x\in \mathbb{N} | n< x \le 2n \}$, or even simpler, something like: $T_n = \{x\in \mathbb{N} | n\le x < n+1 \} =\{n\}$. I'm wondering whether there is a notion of convergence that can say whether the limit of such a sequence makes sense or not. On one hand, it feels like the limit of both sequences above should be the empty set, by the following type of argument: \begin{align} S_n &\subset (n,\infty) \\ \lim_{n\to\infty} S_n &\subset \lim_{n\to\infty} (n,\infty) = \cap_{n\in\mathbb{N}} (n,\infty) = \emptyset \end{align} And of course, the same for $T_n$. On the other hand, I don't see why I should be able to pass a set inclusion to the limit. (I feel like I'm just declaring that this should be a property of limits of sets...) - The natural topology on $2^U$ is the compact-open topology, which here is the product topology. This is precisely the topology of pointwise convergence of indicator functions $U \to 2$. Thus a sequence $S_1, S_2, ...$ of sets converges in this topology if and only if, for every $u \in U$, either all but finitely many $S_i$ contain $u$ (so that $u$ is in the limit set) or all but finitely many $S_i$ do not contain $u$ (so that $u$ is not in the limit set). So both of the sequences you describe have limit the empty set as desired. 1) Yes; 2) You can always take the discrete topology on $U$. – Asaf Karagila Jan 24 '11 at 19:17 @Braindead: The set $2=\{0,1\}$ has the discrete topology; the set $2^U$ is naturally bijectable with a direct product of copies of $2$ indexed by $U$, and the product has a natural topology (the product topology) since it is a product of topological spaces. As Qiaochu is noting, if you do this, then it turns out to coincide with the compact-open topology if you give $U$ the discrete topology (which makes all maps $U\to 2$ continuous). – Arturo Magidin Jan 24 '11 at 19:25 @Braindead: If you choose the indiscrete topology on $U$ instead, then the only continuous maps are the constant maps; but to identify $2^U$ with $\mathcal{P}(U)$ you need all maps, not just the constant ones. So if you place that topology on $U$, you are essentially just looking at $\emptyset$ and $U$ instead of all of $\mathcal{P}(U)$; similarly if you place other topologies: you are restricting yourself to a subset of $\mathcal{P}(U)$. The discrete topology is the only one that gives you all of $\mathcal{P}(U)$. – Arturo Magidin Jan 24 '11 at 19:28 @Braindead: Not at all: for the compact-open topology to be defined, you need a topological structure on both sets. But if you have "all functions from $X$ to $Y$", and $Y$ is a topological space, then you can take the product topology on $Y^X$, which happens to coincide with the compact-open topology if you give $X$ the discrete topology. It's not a silly question, and the coincidence of the two topologies is something you may want to prove for yourself, just to make sure and get more comfortable with both. – Arturo Magidin Jan 24 '11 at 19:44
2013-05-22T21:04:04
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/18778/convergence-of-sets-topology-on-a-powerset-of-a-set", "openwebmath_score": 0.9636873602867126, "openwebmath_perplexity": 162.5363315562746, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357549000773, "lm_q2_score": 0.857768108626046, "lm_q1q2_score": 0.8397856477579125 }
https://www.physicsforums.com/threads/probability-question-on-questionnaire.767142/
# Probability question on questionnaire 1. Aug 22, 2014 ### mjordan2nd 1. The problem statement, all variables and given/known data When sent a questionnaire, 50% of the recipients respond immediately. Of those who do not respond, 40% respond when sent a follow-up letter. If the questionnaire is sent to 4 persons and a follow-up letter is sent to any of the 4 who do not respond immediately, what is the probability that at least 3 never respond? 2. Relevant equations $$P\left[ \geq \mbox{ 3 never respond} \right] = P \left[ \mbox{none respond} \right] + P \left[ \mbox{1 responds, 3 don't} \right]$$ 3. The attempt at a solution The probability of any individual not responding is 0.3. So $$P \left[ \mbox{none respond} \right] = (0.3)^4$$. On the other hand $$P \left[ \mbox{1 responds, 3 don't} \right] = P \left[ \mbox{1 response on 1st round, 0 on second} \right] + P \left[ \mbox{ 0 responses on 1st round, 1 response on 2nd} \right ]$$ $$P \left[ \mbox{1 responds, 3 don't} \right] = (.5)^4(.6)^3 + (.5)^4(.6)^3(.4) = (.3)^3(.7).$$ Therefore, based on what I calculate my answer should be $$P\left[ \geq \mbox{ 3 never respond} \right] = (.3)^4 + (.3)^3(.7).$$ However, the closest answer choice I have available is $$P\left[ \geq \mbox{ 3 never respond} \right] = (.3)^4 + 4(.3)^3(.7),$$ where the second term in the answer has a factor of 4 that I did not get. My guess is I'm getting confused somewhere and only getting the probability for one person and not four, but I'm having a hard time seeing why this is. Why is their a factor of 4 on the second term? And if that's supposed to be there, why is there not another factor of 4 on the first term? Thanks. 2. Aug 22, 2014 ### da_nang What's the probability of the first person responding and the others don't? What's the probability of the second person responding and the others don't? You should be able to notice something from those answers. 3. Aug 22, 2014 ### Orodruin Staff Emeritus Apart from what da_nang just said, the probability of any particular person responding is 0.3 as you have seen. You do not need to go through the middle steps of splitting the cases into who responds when. 4. Aug 23, 2014 ### HallsofIvy Staff Emeritus 50% of the people respond immediately. Of the 50% who don't, 40%, or (.5)(.4)= .2 so 20% of the original number respond on a second mailing. That is a total of 70% of the original number. Now it becomes a "binomial" distribution with p= 0.7 and q= 1- p= 0.3. 5. Aug 23, 2014 ### Ray Vickson Or, you can look at the non-responders, whose first- and second-stage non-response probabilities are 0.5 and 0.6, giving an overall p = 0.30 of never responding.
2017-11-22T15:39:00
{ "domain": "physicsforums.com", "url": "https://www.physicsforums.com/threads/probability-question-on-questionnaire.767142/", "openwebmath_score": 0.6075131893157959, "openwebmath_perplexity": 563.1606335484046, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357616286122, "lm_q2_score": 0.8577681013541611, "lm_q1q2_score": 0.8397856464099998 }
https://math.stackexchange.com/questions/1191923/second-countable-first-countable-and-separable-spaces
# Second Countable, First Countable, and Separable Spaces Upon further studying Topological Spaces, I understand: • If a space $X$ has a countable dense subset, then $X$ is a separable space. • A space $X$ is first countable provided that there is a countable local basis at each point of $X$. • A space $X$ is second countable if and only if its topology of $X$ has a countable basis. My question is: Why would a space $X$ that is second countable also be first countable and separable? Why would a space $X$ that is first countable not necessarily be considered a separable space and vice versa? I do have a rough idea as to why a second countable space is also a first countable space. A second countable space has a countable basis $\mathcal{B}$ $-$ which consist of a countable family of open sets $-$ then the members of $\mathcal{B}$ which contain a particular point $a$ form a countable local basis at $a$. Thus each second countable space is first countable. Now if the space $X$ is second-countable, to also be separable, there needs to exists a countable dense subset of $X$. It has been established that if $X$ is a second countable space, it has a countable basis $B$. This is where I get stuck. I am not sure as to why spaces that are first countable do not imply they are separable and vice verse. Does it have to do with the fact first countable spaces deal with countable local basis that may or may not be dense? Am I on the right track? Sorry for the rather long question. If is it rather confusing, let me know so I can clarify. I want to thank you in advance for taking the time to read this question. I greatly appreciate any assistance you provide. Your proof that a second countable space $X$ is first countable is correct. To show that it’s also separable, let $\mathscr{B}$ be a countable base for it. For each $B\in\mathscr{B}$ let $x_B\in B$; clearly $\{x_B:B\in\mathscr{B}\}$ is a countable subset of $X$, and it’s pretty straightforward to show that it’s dense in $X$. For the negative results, let $\tau$ be the discrete topology on $\Bbb R$. Then $\langle\Bbb R\tau\rangle$ is first countable, because for each $x\in\Bbb R$ the finite set $\big\{\{x\}\big\}$ is a local base at $x$. Now show that the only dense subset of $\Bbb R$ in this topology is $\Bbb R$ itself; since $\Bbb R$ is uncountable, the space cannot be separable, and therefore, of course, it can’t be second countable, either. • The definition for 2nd countable topological space is that "the topological space has a countable basis." My confusion is whether or not they mean countably infinite basis only. Or do they include finite basis as well? May 7 '20 at 23:30 • The latter: countable means finite or countably infinite. May 8 '20 at 2:22
2021-09-27T07:00:25
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1191923/second-countable-first-countable-and-separable-spaces", "openwebmath_score": 0.9565712809562683, "openwebmath_perplexity": 85.93434972791563, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9790357610169274, "lm_q2_score": 0.8577680995361899, "lm_q1q2_score": 0.8397856441054572 }
http://ufgh.nauticalsas.it/polar-coordinates-example-problems-with-solutions.html
### Polar Coordinates Example Problems With Solutions I For x ∈ [−2,0], we have 0 6 y and y 6 √ 4 − x2. The first proof can be paralleled exactly, replacing x by and y by r. The radial variable r gives the distance OP from the origin to the point P. Polar Coordinates A vector in the plane can be identified by its x-andy-coordinates. DeTurck Math 241 002 2012C: Laplace in polar coords 2/16. Double integrals are sometimes much easier to evaluate if we change rectangular coordinates to polar coordinates. Do not show that the cartesian incompressible continuity relation [Eq. Converting between polar and Cartesian coordinates is really pretty simple. These sides have either constant -values and/or constant -values. For example, camera $50. Solutions to Laplace's Equation in Polar Coordinates. Syllabus and Lecture Notes. Practice what you have learned with example. Ancient Theatres in Jerash Essay Modern technology has changed matters in documentation significantly and promises to continue to bring change. Example problems 1) Change (3, 4) to polar coordinates. Example sheet 2 – Stream Functions and the Principle of Superposition. " In elementary math, the term "polar vector" is used to refer to a representation of a vector as a vector magnitude (length) and angle, which is equivalent to specifying its endpoints in polar coordinates (illustrated above). We take the wave equation as a special case: ∇2u = 1 c 2 ∂2u ∂t The Laplacian given by Eqn. Objectives. Evaluate RR D (x+3y)dA if D is the circle centered at the origin of radius 2. The rectangular coordinate system is drawn lightly under the polar coordinate system so that the relationship between the two can be seen. Together Apart is a new Orion web series of letters from isolation. NASA Astrophysics Data System (ADS) Xu, Yan; Shen, Yunzhong; Xu, Guochang. It gives a more in-depth discussion with some very good examples, some unique, which will help you a lot. 5 Polar Coordinates. 23} \right)\). 1 Problem 28E. For example, the behavior of the drum surface when you hit it by a stick would be best described by the solution of the wave equation in the polar coordinate system. In your careers as physics students and scientists, you will. Polar Coordinates. Solution to Example 1. Example Find the polar equation of xy = 4. Stack Exchange network consists of 175 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. The UN was established as a result of a conference in San Francisco in June 1945 by 51 countries committed to preserving peace through international cooperation and. Solution: First sketch the integration region. Ancient Theatres in Jerash Essay Modern technology has changed matters in documentation significantly and promises to continue to bring change. Charrassin, J. Development of Polar Coordinates and three Examples Plotting points - Duration:. , measured in radians, indicates the direction of r. The polar coordinate system is very useful for describing rounded curves, like circles. 45) is a conic section defined as the locus of all points P in the plane the difference of whose distances r_1=F_1P and r_2=F_2P from two fixed points (the foci F_1 and F_2) separated by a distance 2c is a given positive constant k, r_2-r_1=k (1) (Hilbert and Cohn-Vossen 1999, p. A thoughtful choice of coordinate system can make a problem much easier to solve, whereas a poor choice can lead to unnecessarily complex calculations. 3 Problem 39E. Replace and with the actual values. Is a vertical line units to the right of the pole if a ≥ 0. About Coordinate Systems: To determine the position of a certain point/s, one uses coordinate system, which uses one or more. Problems: Polar Coordinates and the Jacobian 1. Find the ratio of. from cartesian to cylindrical coordinates y2 + z. We know point B is 50 units from the origin, so we can solve for its coordinates using a right triangle with angle pi/3 and a hypotenuse of 50. This is the motivation for changing to polar coordinates, since we can describe D in the much simpler form r = 2! x y We then have: Z2ˇ =0 Z2 r=0 (cos +3sin )r2drd. 8) and that the pair (r, 8 + 2an) represents the same point as (r, 0), for any integer n. Solution: Given: Polar coordinates of the form (r, theta) is (-4, 30o). ; Rintoul, S. Since the Laplace operator appears in the heat equation, one physical interpretation of this problem is as follows: fix the temperature on the boundary of the domain according to the given specification of the boundary condition. Equations in two variables can have more than one solution. Southern Ocean frontal structure and sea-ice formation rates revealed by elephant seals. Use and to convert an integral in rectangular coordinates to an integral in polar coordinates. Double Integrals in Polar Coordinates. An interactive tutorial on how to plot points given by their polar coordinates. In a polar coordinate system using (r, θ), (r, \theta), (r, θ), the value r r r gives "distance from the origin when facing angle θ. 2 Write down an expression for the change in position vector due to an infinitesimal change in the. Worked Example Polar Coordinates Problem: Convert from Solution: Answer: to Cartesian coordinates. A polar rectangle is a region in the $$xy$$-plane defined by the inequalities $$a \le r \le b$$ and $$\alpha\le\theta\le\beta$$ in polar coordinates. Find the length of the curve using polar coordinates. An example of such a pair of points would be and. Double integrals in polar coordinates (Sect. EXAMPLE 12: Convert x. In polar coordinates, we describe points as being a certain distance (r) from the pole (the origin) and at a certain angle (θ) from the positive horizontal axis (called the polar axis). In polar coordinates the versors are:$\hat \rho$oriented along the radius pointing outwards of the origin; and$\hat \phi$which is a vector tangential to the circle formed by the counter clockwise rotation of$\rho$in the point where$\rho$is pointing. Explanation:. Visit Stack Exchange. A coordinate system is a scheme that allows us to identify any point in the plane or in three-dimensional space by a set of numbers. We use the radius r and the angle θ for describing the location of a point in polar coordinates. Example $$\PageIndex{3}$$: Graphing a Function in Polar Coordinates Graph the curve defined by the function $$r=4\sin θ$$. To find a class of such functions in the plane, write the Laplace's equation in polar coordinates. Write down an expression for the change df in f due to an infinitesimal change in the three coordinates , to first order in. Rotate to landscape screen format on a mobile phone or small tablet to use the Mathway widget, a free math problem solver that answers your questions with step-by-step explanations. These are called Cartesian coordinates. Something as simple as changing to polar coordinates is cumbersome; finding the equations of motion of a particle acting under a "central force" in polar coordinates is tedious. To specify relative coordinates, precede the coordinate values with an @ sign. Use your calculator set to degree mode, the answer is: 53. This gives two solutions on interval [0,2pi]: (2pi)/3 and (4pi)/3, so there will be two tangent lines at (0,0). com Passion for books. If we restrict rto be nonnegative, then = describes the. In this problem, we have obtained the governing equation using the modi fied polar coordinate and applied it in two-dimensional steady-state he at conduction problem. PRACTICE PROBLEMS: Convert the following rectangular coordinates to polar coordinates. Enter a problem Precalculus Examples. In real life, an exact solution generally cannot be obtained. NASA Technical Reports Server (NTRS) Brucker, Ludovic; Cavalieri, Donald J. As with parametric curves there are curves that have several tangent line at one point. (As a teacher, one of my favorite questions on homework or exams will be to ask what happens when $$r$$ is negative. This paper attempts to present:1-How should we understand documentation of archaeological Sites, historic buildings and monuments according to their particularities, categories, types, components of documentation, taking into account the. Answer: Because we are familiar with the change of variables from rectangular to polar. + y' and above Solution The region D for the integration is the base of the cone, which appears to be a circle on the ty-plane (see the following figure). Answers for "Custom coordinate system for EPSG:3275" Hi @ paalsund , I'm sorry, but FME currently has an issue converting Polar Stereo projections from Esri WKT to Csmap definitions. Citizenship to all members of the people living. Also, the value of r. States DeMoivre's Theorem and shows how to use DeMoivre's Theorem to raise a complex number to an integer power. And the second coordinate represents how much are we moving in the vertical direction. Kuriscak, pers. For example, camera$50. AREA IN THE PLANE EXAMPLE 1: Find the area bounded by the curve r = 2 - 2 sin . The polar coordinate system is based on a circle. An example of such a pair of points would be and. Precalculus. Example Find the polar equation of xy = 4. Polar solutes dissolve in polar solvents, forming polar bonds or hydrogen bonds. Is a vertical line units to the right of the pole if a ≥ 0. Therefore, the point with polar coordinates (−2, 4 π 3) also represents the point (1, 3) in the rectangular system, as we can see by. Then we count out a distance of three units along the. NASA Technical Reports Server (NTRS) Lissauer, Jack; DeVincenzi, Donald (Technical Monitor) 2001-01-01. However, the circle is only one of many shapes in the set of polar curves. I don't know, I'm just building it from the ∏/2 example. Polar solutes dissolve in polar solvents, forming polar bonds or hydrogen bonds. This in the third quadrant. 927 is plotted at rectangular coordinates (3,4) and polar coordinates (5,0. Search within a range of numbers Put. The difference is the way in which you points on the coordinate grid. This paper attempts to present:1-How should we understand documentation of archaeological Sites, historic buildings and monuments according to their particularities, categories, types, components of documentation, taking into account the. It gives a more in-depth discussion with some very good examples, some unique, which will help you a lot. In each example, we first present the general solutions and then show some particular cases. Let r = x2 −1. The Cartesian coordinate plane's 0° axis is the non-negative x-axis (due east, just like in the polar plane) and we progress counter-clockwise 360° around the axes as before. FINDING POINTS WHERE POLAR GRAPHS INTERSECT There are two types of intersection points. Polar Coordinates • Rectangular coordinates are the usual (x,y) coordinates. 24 Solving planar heat and wave equations in polar coordinates As a second example consider the problem with the initial condition is given by u and these are the only solutions to my problem that are periodic. Include some real-world examples of how polar coordinates are used. Notice that this rose has 16 loops. States DeMoivre's Theorem and shows how to use DeMoivre's Theorem to raise a complex number to an integer power. DeTurck Math 241 002 2012C: Laplace in polar coords 2/16. Solution The complex template from the header provides functions for conversion to and from polar … - Selection from C++ Cookbook [Book]. 3 Polar Coordinates The Cartesian coordinate system is not the only one. Find the length of the curve using polar coordinates. Concept explanation. They’re called polar. 11) ( , ), ( , ) 12) ( , ), ( , ) Critical thinking question: 13) An air traffic controller's radar display uses polar coordinates. Notice that this solution can be transformed back into rectangular coordinates but it would be a mess. For example, entering @1<45 specifies a point at a distance of 1 unit from the last point specified at an angle of 45 degrees from the X axis. Plot Points in Polar Coordinates. We begin by recalling that polar coordinates are expressed in the form , where is the radius (the distance from the origin to the point) and is the angle formed between the postive x-axis and the radius. Kuriscak, pers. This gives two solutions on interval [0,2pi]: (2pi)/3 and (4pi)/3, so there will be two tangent lines at (0,0). This thing has divined went over there if traditional publishing houses to looking at. It can make life easier more often than you think. Since the x and y coordinates indicate the same distance, we know that the triangle formed has two angles measuring. We use the radius r and the angle θ for describing the location of a point in polar coordinates. com has a library of over 1,000,000+ questions and answers for your. For example, the polar coordinates (2, π 3) and (2, 7 π 3) both represent the point (1, 3) in the rectangular system. Use the tangent ratio for polar coordinates: The reference angle for this value is. Volume =integral^2_-2 integral^squareroo. PubMed Central. (As a teacher, one of my favorite questions on homework or exams will be to ask what happens when $$r$$ is negative. Compare this with the given equation. These countries have joined together to work for world peace and against poverty and injustice. Rectangular to polar coordinates worksheet keyword after analyzing the system lists the list of keywords related and the list of websites with related content, in addition you can see which keywords most interested customers on the this website. Examining the polar solutions is something to return to. Different types of matrices discussed. Problem 12. About Coordinate Systems: To determine the position of a certain point/s, one uses coordinate system, which uses one or more. 6 Wave equation in spherical polar coordinates We now look at solving problems involving the Laplacian in spherical polar coordinates. Polar Coordinates: This activity allows the user to explore the polar coordinate system. We have step-by-step solutions for your textbooks written by Bartleby experts! Write the equation in spherical coordinates. 12 by plotting points. Attempts Remaining: 25 attempts Help Entering Answers (1 point) Evaluate the double integral circles x2 +y 4 and x2 y 16 NOTE: When typing your answers use 'th" for 0 ,23 dA by changing to polar coordinates. A point P in the plane can be uniquely Solution: (a) z =r =) z2=r2 =) z 2=x +y This a cone with its axis on z ¡axis: (b). Solution: The following formulas for a and b (i. Polar coordinates (and exponential form) are very useful when working with complex numbers. Polar coordinates represent points in the coordinate plane, not with the usual Cartesian ordered pair (x, y), but with two different coordinates (r, phi) that are functionally related to (x, y). The ratio of the legs to the hypotenuse is always , so since the legs both have a distance of 6, the hypotenuse/ radius for our polar coordinates is. We take the wave equation as a special case: ∇2u = 1 c 2 ∂2u ∂t The Laplacian given by Eqn. I r = 6sin(θ) is a circle, since r2. 3 Polar Coordinates Example 1. However, if you really want to understand polar coordinates, then this video clip is good to watch. And because tan(θ) = y / x, we relate θ to x and y using the inverse tangent. For the Love of Physics - Walter Lewin - May 16, 2011 - Duration: 1:01:26. 3 Polar Coordinates. The polar representation of a point is not unique. 12 by plotting points. In spherical polar coordinates, Poisson's equation takes the form: but since there is full spherical symmetry here, the derivatives with respect to θ and φ must be zero, leaving the form Examining first the region outside the sphere, Laplace's law applies. the result for "cmath. For example, the polar coordinates $(3, 6)$ would be plotted as a point 3 units from the pole on the 6 ray. Use your calculator set to degree mode, the answer is: 53. Therefore, the point with polar coordinates (−2, 4 π 3) (−2, 4 π 3) also represents the point (1, 3) (1, 3) in the rectangular system, as we can see by using Equation 7. The approach adopted is entirely analogous to the one. 2 , 53 o) to rectangular coordinates to three decimal places. 3 Find the equation of the line y = 3x+ 2 in polar coordinates. 927 is the angle in radians measured counterclockwise from the positive real axis (try it). Examples, videos, worksheets, solutions, and activities to help PreCalculus students learn how to convert between polar coordinates and rectangular coordinates (or Cartesian coordinates) The following diagrams show how to convert between Polar coordinates and Rectangular or Cartesian coordinates. Solution This is the equation of a rectangular hyperbola, in Cartesian co-ordinates, so let us see what it looks like in polar co-ordinates. Polar coordinates have a special quality not found with Cartesian coordinates. The Center Formulas Consider the plane with a polar coordinate system. Chaotic Motion in the Solar System and Beyond. P = (3, 1) on the coordinate plane in Figure 1. And polar coordinates, it can be specified as r is equal to 5, and theta is 53. Directly calculate the Jacobian = x ∂(x, y) r. 9) ( , ) 10) ( , ) Two points are specified using polar coordinates. NASA Astrophysics Data System (ADS) Gralla, Samuel E. There are two different definitions of "polar vector. Combine searches Put "OR" between each search query. The Cartesian coordinate of a point are (−8,1). One classic example is the plan-position indicator (PPI), familiar from many movies. Systems with a radial force are also good candidates for the use of the polar coordinate system. 8: strains in cylindrical coordinates Plane Problems and Polar Coordinates The stresses in any particular plane of an axisymmetric body can be described using the two-dimensional polar coordinates (r,θ) shown in Fig. 3 Find the equation of the line y = 3x+ 2 in polar coordinates. This is the motivation for changing to polar coordinates, since we can describe D in the much simpler form r = 2! x y We then have: Z2ˇ =0 Z2 r=0 (cos +3sin )r2drd. A scalar harmonic function is called a scalar potential, and a vector harmonic function is called a vector potential. Free math problem solver answers your algebra, geometry, trigonometry, calculus, and statistics homework questions with step-by-step explanations, just like a math tutor. 13 Graphing a polar function in Example 9. Plotting this, Example 2 Plot the polar. There is another type of coordinates that are commonly used to identify vectors in the plane. Evaluate the following integral by first converting to an integral in polar coordinates. Spatially non-uniform, but time-independent, volumetric heat sources are assumed in each layer. Do not show that the cartesian incompressible continuity relation [Eq. Problems: Polar Coordinates and the Jacobian 1. Examples are hydrocarbons such as oil and grease that easily mix with each other, while being incompatible with water. Problem: Find the Jacobian of the transformation $(r,\theta,z) \to (x,y,z)$ of cylindrical coordinates. In polar coordinates, we describe points as being a certain distance (r) from the pole (the origin) and at a certain angle (θ) from the positive horizontal axis (called the polar axis). The user can mark points, draw straight lines and read off the coordinates of the cursor position. 2 = 4 into a polar equation. 3 Polar Coordinates 665 5 −5 Pole p P =()3, 4 d Figure 6. from cartesian to spherical polar coordinates 3x + y - 4z = 12 b. We move counterclockwise from the polar axis by an. a b = 1 2 Since the ratio is less than 1, it will have both an inner and outer loop. a x w w0 sin. The region that is shaded red is bounded by the radial lines θ = 2π/3 and θ = π and the cardioid. To graph function given in polar form we will need to load a graphics package into Mathematica first: <:). In polar coordinates, the region of integration $$R$$ is the polar rectangle $$\left({\text{Figure }5}\right):$$. abstract = "Closed form analytical double-series solution is presented for the multi-dimensional unsteady heat conduction problem in polar coordinates (2-D cylindrical) with multiple layers in the radial direction. This point will be a distance of 3 from the origin, at an angle of 6 5π. To plot the point (5)4 A = 10, π we need to recognize that polar ordered pairs haveform (r, θ), so (5)4 A = 10, π implies that. So all that says is, OK, orient yourself 53. I Changing Cartesian integrals into polar integrals. Search for wildcards or unknown words Put a * in your word or phrase where you want to leave a placeholder. com has a library of over 1,000,000+ questions and answers for your. The rectangular coordinate system (or Cartesian plane) provides a means of mapping points to ordered pairs and ordered pairs to points. Polar coordinates give us the position of a point with a radius value and angle value, with the radius being a distance away from the origin, and the angle value being measured counterclockwise off the positive x-axis. Particular Solution; Math Problem Solver (all calculators) Polar/Rectangular Coordinates Calculator. You'll be able to enter math problems once our session is over. First are certain classic problems that have simple solutions. Volume =integral^2_-2 integral^squareroo. Combine searches Put "OR" between each search query. 3 (Integral Formula for Dirichlet Problem in a Disk). A hyperbola (plural "hyperbolas"; Gray 1997, p. Spherical coordinates system (or Spherical polar coordinates) are very convenient in those problems of physics where there no preferred direction and the force in the problem is spherically symmetrical for example Coulomb's Law due to point. You could not lonely going subsequent to book store or library or borrowing from your friends to retrieve them. Convert the polar coordinates to rectangular form. ; Lupsasca, Alexand. SOLUTION: This is a graph of a horizontal line with y-intercept at (0, 10). Citizenship to all members of the people living. Examining the polar solutions is something to return to. Development of Polar Coordinates and three Examples Plotting points - Duration:. For example, marathon. Therefore, the point with polar coordinates (−2, 4 π 3) also represents the point (1, 3) in the rectangular system, as we can see by. In certain problems, like those involving circles, it is easier to define the location of a point in terms of a distance and an angle. Write a big long sheet of as many as you think you need and work them. Examples on Converting Polar and Rectangular Coordinates Example 1 Convert the polar coordinates (5 , 2. Perihelion precession caused by solar oblateness variation in equatorial and ecliptic coordinate systems. 4) Example Transform to. Many of these plots use the gsn_csm_contour_map_polar high-level plot interface. Points are. For example, "tallest building". 3 Polar Coordinates 685 5 −5 Pole p P =()3, 4 d Figure 7. For now, let’s avoid that region. B) To nd the polar coordinates of a point when the Cartesian coordinates are known, use: r 2= x + y2 tan = y x Derivatives. Convert each pair of rectangular coordinates to polar coordinates where r and. An equation whose variables are polar coordinates. Solution: Identify the type of polar equation. 01 and is in radians. For example, the vertical and horizontal lines in the first graph below are what we could call "native" to the rectilinear (made up of lines and 90˚ angles) Cartesian coordinate system. Show Step-by-step Solutions Converting Between Polar and Rectangular (Cartesian) Coordinates, Ex 3. Precalculus Problems Website (The development of this website was supported by a UIIP grant from the Teaching Resources Center at the University of California, Davis. I am planning to write more post on Define Angle with example, Right Angles. Stack Exchange network consists of 175 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers. If $$r<0$$, the point is units (like a radius) in the. However, before we describe how to make this change, we need to establish the concept of a double integral in a polar rectangular region. A little follow up too, will this double integration w/ polar coordinates can solve integrals like, say, ∫e-x 2 dx from -6 to 3? I wanted accurate answers, but if it's too much hassle I guess I'm better off with the trapezoidal technique with very small stepsizes. The bottom line here is this: Don’t fear the Polar Coordinate System. 3 shows that, given the original data, either of these is a valid solution. Therefore, r = 5 Using property 4 from above, tan 0 = (4/3). Polar coordinates give us the position of a point with a radius value and angle value, with the radius being a distance away from the origin, and the angle value being measured counterclockwise off the positive x-axis. Conic Sections: Ellipse with Foci example. 927 is plotted at rectangular coordinates (3,4) and polar coordinates (5,0. For now, let’s avoid that region. What Are Some Examples of Real-Life Uses of Polar Coordinates? Some of the real-life uses of polar coordinates include avoiding collisions between vessels and other ships or natural obstructions, guiding industrial robots in various production applications and calculating groundwater flow in radially symmetric wells. Since the x-coordinate is negative but the y-coordinate is positive, this angle is located in the second quadrant. 3 Polar Coordinates. The corresponding value(s) of theta we can find by solving equation 1+2cos(theta)=0. An interrogative word or question word is a function word used to ask a question, such as what, when, where, who, whom, why, and how. Even though the two are somewhat interchangeable, it is generally not a good idea to use the same type to represent different concepts. Since the Laplace operator appears in the heat equation, one physical interpretation of this problem is as follows: fix the temperature on the boundary of the domain according to the given specification of the boundary condition. Why? We convert the function given in this question to rectangular coordinates to see how much simpler it is when written in polar coordinates. Laplace's equation in polar coordinates Boundary value problem for disk: u = urr + ur r + u r2 get linearly independent solutions 1 and lnr. This paper attempts to present:1-How should we understand documentation of archaeological Sites, historic buildings and monuments according to their particularities, categories, types, components of documentation, taking into account the. For example, "largest * in the world". View Notes - 11. 2 Plate Equations for Axisymmetric Problems When the loading and geometry of the plate are axisymmetric, the plate equations given. a b w(x,y) is the displacement in z-direction x y z. abstract = "Closed form analytical double-series solution is presented for the multi-dimensional unsteady heat conduction problem in polar coordinates (2-D cylindrical) with multiple layers in the radial direction. 13 Graphing a polar function in Example 9. The line segment starting from the center of the graph going to the right (called the positive x-axis in the Cartesian system) is the polar axis. ; Markus, Thorsten. defines the surface as a function of r and t. You can construct the Lagrangian by writing down the kinetic and potential energies of the system in terms of Cartesian coordinates. And you'll get to the exact same point. Calculus: Learn Calculus with examples, lessons, worked solutions and videos, Differential Calculus, Integral Calculus, Sequences and Series, Parametric Curves and Polar Coordinates, Multivariable Calculus, and Differential, AP Calculus AB and BC Past Papers and Solutions, Multiple choice, Free response, Calculus Calculator. Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. These countries have joined together to work for world peace and against poverty and injustice. We worked this example in the last section using rectangular coordinates. In general, Laplace's equation in any polar rectangle fa vcjtav0k4jnvda 0wn0gnekoc4ewo whmocdcw3vn sozsxfffw63rcq mxbaip31pxmf 42mwwtclkkl bw30ryu79y1 vx361g8qwuh zj8tex03psu nm502gmpbdq hju6acdrma64i dwowiysuye8f3 7t0xdr7pzgbhda z1ky2iqg5k mgveixsheugvj 1qcj2cfjt8dd8s3 ra1hs97nebxl61o h1byl7tm1tckwq0 qc9zl4a4kan19u k2d0yey06n p522jvk4tk3mza z66xa4z4u6 qrcq7vygx5ry vsz1a0v3bt27gi1 acoweppbrgyw hdkuz30h6tv 0lbxyrxar8xu5u
2020-07-06T06:01:32
{ "domain": "nauticalsas.it", "url": "http://ufgh.nauticalsas.it/polar-coordinates-example-problems-with-solutions.html", "openwebmath_score": 0.871985673904419, "openwebmath_perplexity": 720.6369601036652, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES\n\n", "lm_q1_score": 0.9790357549000774, "lm_q2_score": 0.8577680995361899, "lm_q1q2_score": 0.8397856388586185 }
http://math.stackexchange.com/questions/330471/proving-that-the-product-of-two-different-odd-integers-is-odd
# Proving That The Product Of Two Different Odd Integers Is Odd Okay, here is how I begin my proof: Let $q$ and $r$ be odd integers, then $q = 2k+1$ and $r = 2m+1$, where $k,m \in Z$. $q \times r = (2k+1)(2m+1) \implies q \times r = 4mk + 2k + 2m + 1 \implies q \times r = 2(2mk + k + m) + 1$ I would then conclude that $q \times r$ results in an odd number, because 2 times an integer with one added to it is, by definition, an odd number. However, how can I conclude this? Is $(2mk + k + m)$ in fact an integer? How do I know if the product of any two integers is an integer; similarly, does adding any two integers yield another integer? Now, obviously, I have an intuitive notion that these are true, but is there a way to prove them? Side note: I would also appreciate it if someone could critique my proof. - Note that you haven't used the hypothesis that the integers are different anywhere in the proof; and indeed that hypothesis isn't required. –  joriki Mar 14 '13 at 17:40 You can just state that Z is closed under multiplication and addition. If you want to prove that, check out the proof for addition and multiplication here. –  Nik Bougalis Mar 14 '13 at 18:40 The question in the second paragraph, "how do I know that the product of any two integers is an integer?", should be promoted to the title. The side-note request to assess the proof has a trivial answer: CORRECT! –  zyx Mar 14 '13 at 18:40 Slightly more generally, note that multiplying $\rm\:m\, =\, k+an\:$ by any integer of the form $\rm\:1+bn\:$ doesn't change the remainder that $\rm\,m\,$ leaves when divided by $\rm\,n,\,$ i.e. the remainder stays = $\rm k,\,$ by $$\rm (k+an)(1+bn)\, =\, k+n(a+b(k+an))$$ This is a special case $\rm\,j=1\,$ of $\rm\ mod\ n\!:\ \ \begin{eqnarray} x &\equiv&\,\rm k\\ \rm y &\equiv&\,\rm j\end{eqnarray}\ \Rightarrow\ xy\equiv\, k\, j,\ \$ the Congruence Product Rule That $\rm\: a+b(k+an)\in \Bbb Z\:$ follows from the fact that $\rm\:a,b,c\in \Bbb Z\:\Rightarrow\: a + b\,c\in \Bbb Z,\:$ since integers are closed under multiplication, thus $\rm\:bc\in \Bbb Z,\:$ and also under addition, hence $\rm\:a + bc\in\Bbb Z.\:$ Finally, that $\rm\,\Bbb Z\,$ is closed under the operations of addition and multiplication follows from the recursive definitions of addition and multiplication in Peano arithmetic. Your proof is correct. - Your proof is fine, and it is true that the product of two integers is also an integer. You can't prove this, as this is one of the axioms of integers. I recommend that you now prove this: Let $p\in \mathbb{Z}$ and $p^2$ even. Then $p$ is even. Note this isn't the same as saying $p$ even $\Longrightarrow$ $p^2$ even, which is also true. - What axioms of integers ? –  jca Mar 14 '13 at 17:45 You can't prove that the integers are closed under multiplication? That's fresh. –  Nik Bougalis Mar 14 '13 at 18:40 Yes I'm sorry, that was a mistake. I was using the set of "axioms" from a calculus book. Still, like Math Gems said, using the peano axioms, you can prove the closure. My point was integers are closed under addition and multiplication, so the OP didn't have to worry about that part being incorrect. Still, I should have been more careful. –  Orlando Mar 14 '13 at 18:45 A simple way of doing this is as follows. Let $p, q \in \mathbb{Z}$ be odd. Then suppose that $2 | pq$. Then, as $2$ is prime, we must have that $2 |p$ or $2 |q$.But either of these cases is impossible as both $p$ and $q$ are odd. - I think your proof assumes that if a prime number divides a product, it necessarily divides one of the factors. This is provable (via the Fundamental Theorem of Arithmetic), but you'd have to prove it. –  Malvolio Oct 27 '14 at 15:13 Of course it does. I assumed that the student knew this fact. Maybe that was a mistake. –  Chris Dugale Oct 28 '14 at 0:24 I was thinking that, but it strikes me as less obvious than the proposition you are trying to prove. (Apparently, this is exactly Euclid's lemma.) –  Malvolio Oct 28 '14 at 4:31 Really? To me it is more clear. Primes are defined with that algebraic property –  Chris Dugale Oct 28 '14 at 5:16 Obviousness is, I suppose, in the eye of the beholder. In fact, I proved Eulid's lemma (in my head) with the Fundamental Theorem, but later learned that the standard proof for the Fundamental Theorem depends on the lemma. A non-circular proof requires Bézout's identity, which I find unintuitive. –  Malvolio Oct 28 '14 at 6:53
2015-05-28T04:39:29
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/330471/proving-that-the-product-of-two-different-odd-integers-is-odd", "openwebmath_score": 0.9445431232452393, "openwebmath_perplexity": 260.1404362682639, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9626731126558706, "lm_q2_score": 0.8723473680407889, "lm_q1q2_score": 0.8397853561089826 }
https://math.stackexchange.com/questions/1832424/two-blocks-and-a-frictionless-pulley-problem
# Two blocks and a frictionless pulley problem Block B ($m_{B}$=0.36 kg) is connected to a lightweight rope that passes over a lightweight, low-friction pulley.The other end of the rope is connected to Block A ($m_{A}$=0.72 kg), which is on a low-friction surface inclined at an angle θ above the horizontal. The pulley is attached to the top of the inclined plane. If the two blocks remain at rest when released, what is the incline angle? If the mass of Block B is increased, does Block A slide up the incline, down the incline, or remain at rest? What if the mass of Block A is increased instead? If the masses of Blocks A and B remain fixed at the values given in the problem statement above, for what range of incline angles will Object A move up the incline? Down the incline? So far, I've drawn the free body diagrams and go the following equations based on Newton's Second Law: For Block B: $$T-m_{B}g=m(-a)$$ For Block A: $$F_{x}=T-m_{A}\sin\theta g=m_{A}a$$ and $$N-m_{A}g \cos\theta=0$$ To me it seems like the same question is being asked twice but I'm not sure how to approach it. Can I get some help? • Your equations are right (apart you should write $m_B$ instead of $m$ in the first one). What's the problem then? Jun 19 '16 at 19:41 • I'm having trouble finding ways to answer: 1)If the two blocks remain at rest when released, what is the incline angle? If the mass of Block B is increased, does Block A slide up the incline, down the incline, or remain at rest? What if the mass of Block A is increased instead? If the masses of Blocks A and B remain fixed at the values given in the problem statement above, for what range of incline angles will Object A move up the incline? Down the incline? Jun 19 '16 at 19:57 Subtracting the first equation from the second yields: $$m_Bg - m_Ag \sin\theta = (m_A + m_B)a$$ Note that $m_A = 2m_B$, so we have: $$m_Bg - 2m_Bg \sin\theta = 3m_Ba$$ Now if the blocks remain at rest when released, then $a = 0$, so: \begin{align*} m_Bg - 2m_Bg \sin\theta &= 0 \\ m_Bg &= 2m_Bg \sin\theta \\ \frac{1}{2} &= \sin\theta \\ \theta &= 30^\circ \end{align*} • Now, would it be fair to say that if $m_Asin30$ is less than $m_B$ then a moves positively which means that B will weigh downwards, and $m_Asin30$ is greater than $m_B$ then a moves negatively meaning B will move upwards and A will move down the slope? Is that how to interpret all this? Jun 20 '16 at 3:05
2022-01-16T22:52:51
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1832424/two-blocks-and-a-frictionless-pulley-problem", "openwebmath_score": 0.9891146421432495, "openwebmath_perplexity": 204.44459031741374, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9857180681726683, "lm_q2_score": 0.8519528076067261, "lm_q1q2_score": 0.839785275688383 }
http://math.stackexchange.com/questions/61982/trouble-setting-up-double-integrals
# Trouble setting up double integrals I am studying for an entrance exam and have troubles to set up double integrals appropriately. Actually my biggest problem is that I don't get the notation. $$A = \{(x,y) | 0 \leq x + y \leq 1, 0 \leq x-y \leq \pi\}$$ $$\iint_A e^{x+y} \sin(x-y)\mathrm dx\mathrm dy$$ and for another example: $$R = \{(x,y) | 1 \leq x^2 + y^2 \leq 4, y \geq 0\}$$ $$\iint_R \frac{\mathrm dx\mathrm dy}{(x^2+y^2)^2}$$ Normally I would go draw a picture of something like a line or circle. When I have an equation like $x+y=z$ for example. I tried interpreting the inequality as an area so for the first one I came up with the between 0 and the line $y=1-x$ which seemed reasonable for I failed to connect this to the other inequality. I hope somebody can point out how to set this up or give some hints how to interpret this notation. Any help is greatly appreciated! - Picture is almost always necessary. Second integral is natural for polar coordinates, replace the (missing!) $dx\,dy$ by $r\,dr\,d\theta$, $r$ $1$ to $2$, $\theta$ $-\pi/2$ to $\pi/2$. For first integral, draw $x+y=0$, $x+y=1$, $x-y=0$, $x-y=1$. Make natural change of variable $u=x+y$, $v=x-y$. But integral is not terrible to evaluate "as is." –  André Nicolas Sep 5 '11 at 9:50 I (almost) take back picture part of comment for first integral, if you are stressed for time. Even without picture $u$ $0$ to $1$, $v$ $0$ to $\pi$ is clear. Don't forget the Jacobian. –  André Nicolas Sep 5 '11 at 10:07 Don't take it back; if anything, I would omit the "almost". Always draw a picture. –  Robert Israel Sep 5 '11 at 18:33 Thank you somehow it clicked after reading your comments! Sometimes I just need to read the right words and it all comes together. –  entrance_exam Sep 6 '11 at 10:20 The first inequality, $0 \le x+y \le 1$, is equivalent to $-x \le y \le 1-x$ (just subtract $x$ everywhere). Hence it represents all points $(x,y)$ lying on or between the two straight lines $y=-x$ and $y=1-x$. Can you do something similar with the second inequality? In the end you should find that $A$ is a region bounded by a quadrilateral. (Another hint: Try changing variables to $u=x+y$ and $v=x-y$.) - Thank you for teaching me about those inequalities! Appreciated! –  entrance_exam Sep 6 '11 at 10:19 For the first example. The double inequality $0\leq x+y\leq 1$ means that $$\left\{ \begin{array}{c} 0\leq x+y \\ x+y\leq 1 \end{array} \right. \Leftrightarrow \left\{ \begin{array}{c} y\geq -x \\ y\leq 1-x \end{array} \right.$$ and $0\leq x-y\leq \pi$ means that $$\left\{ \begin{array}{c} 0\leq x-y \\ x-y\leq \pi \end{array} \right. \Leftrightarrow \left\{ \begin{array}{c} y\leq x \\ y\geq x-\pi. \end{array} \right.$$ So the conditions $0\leq x+y\leq 1$ and $0\leq x-y\leq \pi$ are equivalent to the system of four inequalities $$\left\{ \begin{array}{c} y\geq -x \\ y\leq 1-x \\ y\leq x \\ y\geq x-\pi. \end{array}\tag{1} \right.$$ The region $A$ is a rectangle limited by the four lines $y=-x$, $y=1-x$, $y=x$, $y=x-\pi$ (see figure). To evaluate $$I:=\iint_{A}e^{x+y}\sin (x-y)\;\mathrm{d}x\mathrm{d}\tag{2}y$$ we may consider the rotated system of coordinates $x',y'$ with respect to the $x,y$ system, the rotation angle being $\theta =-\pi /4$, as shown in the figure. This corresponds to the following transformation of coordinates $$\begin{eqnarray*} x^{\prime } &=&x\cos \left( -\frac{\pi }{4}\right) +y\sin \left( -\frac{\pi }{4}\right) =\frac{1}{2}\sqrt{2}x-\frac{1}{2}\sqrt{2}y \\ y^{\prime } &=&-x\sin \left( -\frac{\pi }{4}\right) +y\cos \left( -\frac{\pi }{4}\right) =\frac{1}{2}\sqrt{2}x+\frac{1}{2}\sqrt{2}y, \end{eqnarray*}$$ whose inverse is $$\begin{eqnarray*} x &=&x^{\prime }\cos \left( -\frac{\pi }{4}\right) -y^{\prime }\sin \left( - \frac{\pi }{4}\right) =\frac{1}{2}\sqrt{2}x^{\prime }+\frac{1}{2}\sqrt{2}% y^{\prime } \\ y &=&x^{\prime }\sin \left( -\frac{\pi }{4}\right) +y^{\prime }\cos \left( - \frac{\pi }{4}\right) =-\frac{1}{2}\sqrt{2}x^{\prime }+\frac{1}{2}\sqrt{2}% y^{\prime }. \end{eqnarray*}$$ Since $\frac{\partial (x,y)}{\partial (x^{\prime },y^{\prime })}=1$, the integral $I$ is transformed into $$\begin{eqnarray*} I &=&\int_{y^{\prime }=0}^{\sqrt{2}/2}\left( \int_{x^{\prime }=0}^{\pi \sqrt{ 2}/2}e^{\sqrt{2}y^{\prime }}\sin (\sqrt{2}x^{\prime })\mathrm{d}x^{\prime }\right) \mathrm{d}y^{\prime } \\ &=&\int_{y^{\prime }=0}^{\sqrt{2}/2}\sqrt{2}e^{y^{\prime }\sqrt{2}}\mathrm{d} y^{\prime } \\ &=&e-1,\tag{3} \end{eqnarray*}$$ because $$\begin{eqnarray*} x-y &=&\frac{1}{2}\sqrt{2}x^{\prime }+\frac{1}{2}\sqrt{2}y^{\prime }-\left( - \frac{1}{2}\sqrt{2}x^{\prime }+\frac{1}{2}\sqrt{2}y^{\prime }\right) =\sqrt{2 }x^{\prime } \\ x+y &=&\frac{1}{2}\sqrt{2}x^{\prime }+\frac{1}{2}\sqrt{2}y^{\prime }-\frac{1 }{2}\sqrt{2}x^{\prime }+\frac{1}{2}\sqrt{2}y^{\prime }=\sqrt{2}y^{\prime }. \end{eqnarray*}$$ Alternatively we could split $A$ into three regions, a triangle ($0\le x\le 1/2$), a quadrilateral ($1/2\le x\le π/2$) and a triangle ($\pi/2\le x\le (1+\pi)/2$), and evaluate $I$ in the original variables $x,y$: $$\begin{eqnarray*} I &=&\int_{0}^{1/2}\left( \int_{-x}^{x}e^{x+y}\sin (x-y)\mathrm{d}y\right) \mathrm{d}x \\ &&+\int_{1/2}^{\pi /2}\left( \int_{-x}^{1-x}e^{x+y}\sin (x-y)\mathrm{d} y\right) \mathrm{d}x \\ &&+\int_{\pi /2}^{(1+\pi )/2}\left( \int_{x-\pi }^{1-x}e^{x+y}\sin (x-y) \mathrm{d}y\right) \mathrm{d}x. \end{eqnarray*}$$ As for the second example $R$ is the semi-annulus centered at $(0,0)$ with outer radius equal to 2, inner radius 1 and $y\ge 0$. The Jacobian of the transformation of Cartesian to polar coordinates is $\frac{\partial \left( x,y\right) }{\partial \left( r,\theta \right) }=\sqrt{x^{2}+y^{2}}=r$. Hence $$\begin{eqnarray*} \iint_{R}\frac{\mathrm{d}x\mathrm{d}y}{\left( x^{2}+y^{2}\right) ^{2}} &=&\int_{r=1}^{2}\int_{\theta =0}^{\pi }\frac{1}{r^{4}}r\;\mathrm{d}r\mathrm{ d}\theta \\ &=&\int_{0}^{\pi }\left( \int_{1}^{2}\frac{1}{r^{3}}\mathrm{d}r\right) \mathrm{d} \theta \\ &=&\int_{0}^{\pi }\frac{3}{8}\mathrm{d}\theta \\ &=&\frac{3}{8}\pi. \end{eqnarray*}$$ - I just glanced at the sketch, and thought "Wow, this person must be Américo" :-) –  Srivatsan Sep 6 '11 at 23:28 @Srivatsan: I tried another one before but was not so informative. Thanks! –  Américo Tavares Sep 6 '11 at 23:42
2014-04-16T16:00:22
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/61982/trouble-setting-up-double-integrals", "openwebmath_score": 0.9517147541046143, "openwebmath_perplexity": 384.07049080502577, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9857180681726683, "lm_q2_score": 0.8519528019683105, "lm_q1q2_score": 0.8397852701304949 }
http://math.stackexchange.com/questions/86316/is-this-matrix-obviously-positive-definite
# Is this matrix obviously positive definite? Consider the matrix $A$ whose elements are $A_{ij} = a^{|i-j|}$ for $-1<a<1$ and $i,j=1,\dots,n$ e.g. for $n=4$ the matrix is $$A = \left[ \begin{matrix} 1 & a & a^2 & a^3 \\ a & 1 & a & a^2 \\ a^2 & a & 1 & a \\ a^3 & a^2 & a & 1 \end{matrix} \right]$$ Is this matrix always positive definite? If so, what is the simplest way to see that? I strongly suspect that the matrix is positive definite for all $n$ and $a$, but am having trouble coming up with a proof. Extra credit: The eigenvalues seem to lie within an interval $[\lambda_{\rm min}, \lambda_{\rm max}]$ which is a function of $a$ but not of $n$. For example, for $a=1/2$ all eigenvalues lie in $[1/3, 3]$. Is it true for for general $a$, the eigenvalues lie in $[\lambda(a)^{-1}, \lambda(a)]$? If so, what is $\lambda(a)$? Also, the eigenvectors seem to have a particularly regular form. In particular, they look like that could be expressed as simple combinations of trigonometric functions. Is this the case? - The matrix is a symmetric Toeplitz matrix and you can find several results with these buzzwords. Probably this helps. –  Dirk Nov 28 '11 at 9:54 It is positive-definite for all $n$. The way I see it is by noting that it has Cholesky decomposition $$A = LL^\top$$ where $$L = \begin{bmatrix} 1 & & & \\a & \sqrt{1-a^2} & & &\\a^2 & a\sqrt{1-a^2} & \sqrt{1-a^2} & &\\a^3 & a^2\sqrt{1-a^2} & a\sqrt{1-a^2} & \sqrt{1-a^2} &\\\vdots & \vdots & \vdots & \vdots & \ddots\end{bmatrix}.$$ It's not hard (though not "obvious", perhaps) to see that this decomposition is correct: the dot product of a row with itself telescopes to 1, and of two different rows, to the appropriate power of $a$. - +1. Using the Cholesky decomposition for testing positive definiteness is so underutilized, it's sad... –  J. M. Nov 28 '11 at 10:58 What are the methods to guess the form of the Cholesky decomposition? –  Did Nov 28 '11 at 19:27 It's easy to compute the first few terms, from which you can then look for a pattern. Clearly $L_{1,1}^2 = A_{1,1}$. Then $L_{r,1} L_{1,1} = A_{r,1}$, which gives you the whole first column of $L$. From there you can start on the second column: $L_{2,1}^2+L_{2,2}^2 = A_{2,2}$, then $L_{r,1} L_{2,1} + L_{r,2} L_{2,2} = A_{r,2}$ gives you the rest of the second column, etc. –  user7530 Nov 28 '11 at 19:32 Is this matrix always positive definite? If so, what is the simplest way to see that? Yes. A simple way is to note this is the covariance matrix of any process $(x_n)$ such that, for every integer $n$, $x_n=ax_{n-1}+z_n$ where $(z_n)$ is i.i.d. with variance $1-a^2$. An alternative formulation is that, for every $n$, $$x_n=\sum_{k\geqslant0}a^kz_{n-k}.$$ When one computes the covariance of $x_n$ and $x_{n+m}$ every product $z_iz_j$ with $i\ne j$ disappears because the $z_k$ are independent and every product $z_i^2$ yields $1-a^2$ hence $$\mathrm{Cov}(x_n,x_{n+m})=\sum_{k,\ell\geqslant0}(1-a^2)a^{k+\ell}\cdot[n-k=n+m-\ell],$$ that is, $$\mathrm{Cov}(x_n,x_{n+m})=(1-a^2)\sum_{k,\ell\geqslant0}a^{k+\ell}\cdot[\ell=m+k]=(1-a^2)\sum_{k\geqslant0}a^{m+2k}=a^m.$$ In other words, the infinite dimensional vectors $\mathbb x=(x_n)$ and $\mathbb z=(z_n)$ are such that $\mathbb x=\mathbb T\cdot \mathbb z$ where $\mathbb T$ is the lower triangular infinite dimensional matrix defined by $T_{n,n+k}=0$ if $k\geqslant1$ and $T_{n,n-k}=a^k$ if $k\geqslant0$. The infinite dimensional matrix $\mathbb A$ whose every finite dimensional matrix $A$ is a submatrix, is $$\mathbb A=\mathrm{Cov}(\mathbb T\mathbb z,\mathbb T\mathbb z)=\mathbb T\cdot\mathrm{Cov}(\mathbb z,\mathbb z)\cdot \mathbb T^*=\mathbb T\cdot \mathbb T^*.$$ In particular for every vector $y$ of size $n$, extending $y$ to an infinite dimensional vector $\mathbb y$ by adding zeroes, one gets $$y^*\cdot A\cdot y=\mathbb y^*\cdot \mathbb A\cdot \mathbb y=\mathbb y^*\cdot \mathbb T\cdot \mathbb T^*\cdot \mathbb y=\|\mathbb T^*\cdot \mathbb y\|^2\geqslant0.$$ - Quick checks in Maple show that for the first cases, the determinant of $A$ is $(1-a^2)^{n-1}$, which is positive. I think this can be proved recursively. This proves that all the diagonal submatrices have positive determinant, which means that $A$ is positive definite.. - Are you relying on this criterion? : en.wikipedia.org/wiki/Sylvester%27s_criterion –  Patrick Da Silva Dec 19 '11 at 6:56 @PatrickDaSilva: Yes, that is the criterion I use. –  Beni Bogosel Dec 19 '11 at 8:32 (Too long for a comment.) What you have is in fact a family of well studied matrices: the Kac-Murdock-Szegő (KMS) matrices. They are generated for instance by the MATLAB command gallery('kms',n,a). In Grenander and Szegő, and in William Trench's note, there are explicit expressions for the eigenvalues of the KMS matrix $\mathrm{KMS}_{i,j}(a)=a^{|i-j|}$: $$\lambda_k=\frac{1-a^2}{1+a^2-2a\chi_k}$$ where the $\chi_k$ are the $n$ roots of the polynomial $$U_n(x)-2a U_{n-1}(x)+a^2 U_{n-2}(x)$$ and $U_n(x)$ is the Chebyshev polynomial of the second kind. (I have observed that Chebyshev polynomials do tend to figure prominently in the theory of Toeplitz matrices.) It is also noted in those references that the inverse of a KMS matrix is tridiagonal. The $\chi_k$ are shown to satisfy the inequality $-1 < \chi_k < 1$ (they're cosines of angles); it can then be shown from this that the $\lambda_k$ are always positive. - Thanks, that's really useful. –  Chris Taylor Nov 30 '11 at 8:26 Gershgorin circles give you an upper bound on the eigenvalues which is $1+a +a^2+\dots a^{n-1}$. Using the Cholesky decomposition user7530 provided one finds the inverse of $A$ in closed form $$A^{-1} = \begin{bmatrix} \frac{1}{1-a^2} & -\frac{a}{1-a^2} & 0 & \dots \\ -\frac{a}{1-a^2} & \frac{1}{1-a^2} & -\frac{a}{1-a^2} & \ddots\\ 0 & \ddots & \ddots & \ddots \end{bmatrix}.$$ Now, Gershgorin disks give you an upper bound on the largest eigenvalue of $A^{-1}$ and hence, a lower bound on the smallest eigenvalue. Since the Gershgorin disc theorem is that every eigenvalue lies within at least one of the Gershgorin discs, wouldn't the upper bound be $1 + 2(a + a^2 + \cdots + a^{(n-1)/2})$? For the case of $a=1/2$ you'd then have $\lambda_{\rm max} = 1 + 2(.5 + .25 + \cdots)$ which tends to 3 as $n\to\infty$, as I observed in the question? –  Chris Taylor Nov 28 '11 at 14:26
2014-03-15T11:20:08
{ "domain": "stackexchange.com", "url": "http://math.stackexchange.com/questions/86316/is-this-matrix-obviously-positive-definite", "openwebmath_score": 0.9403307437896729, "openwebmath_perplexity": 181.85469375045406, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9857180685922241, "lm_q2_score": 0.8519527982093666, "lm_q1q2_score": 0.8397852667826777 }
https://mathematica.stackexchange.com/questions/87734/union-sorting-after-ignoring-some-digits
Union sorting after ignoring some digits I have a list with its bellow elements: {-0.7071067811865476, -0.7071067811865475, 0.7071067811865475, 0.7071067811865476} If I use Union, but there is no change. Because the numbers are different. I want to use of Union for keeping just -0.707 and 0.707 and other digits after third (I mean ...10678....) are not important. How can I apply this aim in Union function. Is there another function for this goal? • Use Round before or put it as a test in DeleteDuplicates. – Kuba Jul 7 '15 at 19:08 • Union has the option SameTest: Union[list, SameTest -> (Abs[#1 - #2] < 10^-4 &)] – Bob Hanlon Jul 7 '15 at 19:16 • With thanks to Kuba, but I think the second comment is more flexible. I have 200 lists, all of them are not similar and if I choose "round" I just have to select a number for rounding which is not useful for other lists – Unbelievable Jul 7 '15 at 19:24 • A comment in favour of rounding: using the SameTest option will slow down Union. Without SameTest, Union relies on sorting, which is of $O(n \log n)$ complexity. SameTest forces comparing each pair, i.e. $O(n^2)$ complexity. – Szabolcs Jul 7 '15 at 19:53 • Alternatively, Sort[Mean /@ FindClusters[list]] – Bob Hanlon Jul 8 '15 at 15:22 Try the following shory code: DeleteDuplicatesBy[lst,Floor[#,10^-4]&] Will this help? Therefore, by all means, study all the answers in the comments assiduously. The Example @Daniel Lichtblau I like most. lst = {-0.7071067811865476, -0.7071067811865475, 0.7071067811865475, 0.7071067811865476} Rationalize[lst, 0.001] $\left\{-\frac{29}{41},-\frac{29}{41},\frac{29}{41},\frac{29}{41}\right\}$ DeleteDuplicates[{-(29/41), -(29/41), 29/41, 29/41}] $\left\{-\frac{29}{41},\frac{29}{41}\right\}$ • Will DeleteDuplicatesBy be a better solution? – Wjx Jun 27 '16 at 15:24
2019-09-18T12:48:23
{ "domain": "stackexchange.com", "url": "https://mathematica.stackexchange.com/questions/87734/union-sorting-after-ignoring-some-digits", "openwebmath_score": 0.3202305734157562, "openwebmath_perplexity": 3902.2599212740092, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9416541626630937, "lm_q2_score": 0.8918110425624792, "lm_q1q2_score": 0.839777580537872 }
https://math.stackexchange.com/questions/1578526/probability-of-winning-the-game
# Probability of winning the game [closed] Alice and Bob are playing a game. Each of them have 2 candies. Here's how the game goes like: Alice and Bob flip a coin. If it is heads then Bob gives a candy to Alice. If it is tails then Alice gives a candy to Bob. The player who has all the candies wins. If $P(heads)=2/3$ and $P(tails)=1/3$ find the probability the Alice wins the game. ## closed as off-topic by TMM, user91500, SchrodingersCat, BLAZE, user223391 Dec 23 '15 at 5:40 This question appears to be off-topic. The users who voted to close gave this specific reason: • "This question is missing context or other details: Please improve the question by providing additional context, which ideally includes your thoughts on the problem and any attempts you have made to solve it. This information helps others identify where you have difficulties and helps them write answers appropriate to your experience level." – TMM, user91500, SchrodingersCat, BLAZE, Community If this question can be reworded to fit the rules in the help center, please edit the question. • "the player who has the most candies wins" Does the game end once someone has no candies? After one turn? After 10 turns? – JMoravitz Dec 16 '15 at 16:15 • It ends when one person has no candy. – Sophia Dec 16 '15 at 16:16 • What have you tried? Have you considered analyzing all the games where Alice wins and adding probabilities? – Anguepa Dec 16 '15 at 16:22 • You can describe this problem using an absorbing Markov Chain. See similar question here. You will have five states: 4-0(alice wins), 3-1, 2-2, 1-3, 0-4(bob wins). If in state 4-0 or 0-4 then it will remain in that state with probability 1. Otherwise, it will be $\frac{2}{3}$ probability or $\frac{1}{3}$ probability for alice or bob to take another candy respectively. – JMoravitz Dec 16 '15 at 16:23 • I'm really confused in this problem, i know the different ways possible sale 4-0,3-1,2-2,1-3 and 0-4 so my belief was that the answer should be 1/5. But then there must be something about P(heads)=2/3 right? – Sophia Dec 16 '15 at 16:26 It is reasonably clear that with probability $1$, one of Alice or Bob must win. Let $p$ be the probability Alice (ultimately) wins. We look at the result of the first two tosses. Alice wins outright if these are HH. If the results are HT, or TH, then they are tied after two rounds, and the probability Alice ultimately wins, given that they are tied after two rounds, is $p$. Note that the probability of HH is $\frac{4}{9}$, and the probability of HT or TH is $\frac{4}{9}$. Thus $$p=\frac{4}{9}+\frac{4}{9}p.$$ Solve this linear equation for $p$. We get $p=\frac{4}{5}$. Another way: If Alice is to win, it must be after an even number of tosses. So divide the sequence of tosses into pairs. Let D be the event two heads, and let M (mixed) be the event head then tail or tail then head. Each of D and M has probability $\frac{4}{9}$. The ways Alice wins are D, MD, MMD, MMMD, and so on. So the probability Alice wins is $$\frac{4}{9}+\left(\frac{4}{9}\right)^2+\left(\frac{4}{9}\right)^3+\left(\frac{4}{9}\right)^4+\cdots.$$ This infinite geometric series has sum $\frac{4}{5}$. Remark: We can use either analysis to find the probability Alice wins if the probability of head is $h$, where $0\lt h\lt 1$. There are 5 possible states for this game: \begin{align} (C_A, C_B)= \begin{cases} (2,2)\\ (1,3)\\ (3,1)\\ (4,0)\\ (0,4)\\ \end{cases} \end{align} This writes a Markov Chain with \begin{align} P((C_A, C_B) \mapsto (C_A, C_B)+(i,j))= \begin{cases} 2/3 \qquad &\text{if } (i,j)=(1,-1) \;\&\&\; C_B \geq 1\\ 1/3 \qquad &\text{if } (i,j)=(-1,1) \;\&\&\; C_A \geq 1\\ 1 \qquad &\text{if } i=j \;\&\&\; (C_A =0 || C_B=0) \\ 0 \qquad &\text{Otherwise} \end{cases} \end{align} Which writes \begin{align} P=\left( \begin{matrix} 1 & 0 & 0 & 0 & 0 \\ \frac{1}{3} & 0 & \frac{2}{3} & 0 & 0 \\ 0 & \frac{1}{3} & 0 & \frac{2}{3} & 0 \\ 0 & 0 & \frac{1}{3} & 0 & \frac{2}{3} \\ 0 & 0 & 0 & 0 & 1 \\ \end{matrix} \right) \end{align} We can calculate the invariant measure of this Chain as $\pi = \lim_{k\to\infty} P^k = U^{-1} \Sigma^k U,$. However, as it's periodic, we need to input $v(0)=(0,0,1,0,0)$ where the matrix $U$ is composed by the eigenvectors of $P$ and $\Sigma$ is the diagonal matrix with the eigenvalues of $P$. And the nice thing about $\Sigma$ is that $\Sigma^m= \left(\sigma_{i,j}^m \;;\; (i,j) \in |s|^2\right),$ where $\sigma_{i,j} = 0$ if $i \neq j$. It writes: \begin{align} \lim\limits_{k \to +\infty} P^k=\left( \begin{matrix} 1. & 0 & 0 & 0 & 0 \\ 0.466667 & 0 & 0 & 0 & 0.533333 \\ 0.2 & 0 & 0 & 0 & 0.8 \\ 0.0666667 & 0 & 0 & 0 & 0.933333 \\ 0 & 0 & 0 & 0 & 1. \\ \end{matrix} \right) \end{align} So, we have $\pi = v(0) \lim\limits_{k \to +\infty} P^k = (0.2, 0., 0., 0., 0.8)$. This result shows that Alice wins 80% of times they play, and Bob only 2o%, due to the bias in the coin. • What if P(heads)=3/5 and P(tails)=2/5 ? – Sophia Dec 16 '15 at 16:58 • It just inverts probabilities of winning and losing of bob and Alice – Guilherme Thompson Dec 16 '15 at 19:05
2019-06-20T05:36:35
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/1578526/probability-of-winning-the-game", "openwebmath_score": 0.9979198575019836, "openwebmath_perplexity": 425.468828550359, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9902915226589475, "lm_q2_score": 0.8479677622198946, "lm_q1q2_score": 0.8397352864144397 }
https://mathematica.stackexchange.com/questions/109488/using-deletecases-to-ignore-term-of-product
# Using DeleteCases to ignore term of Product I'd like to calculate $\int_{-\infty}^{\infty}\mathrm{d}x/(1+x^6)$ through a variation of the residue formula, which is $\int_{-\infty}^{\infty}f(x)\mathrm{d}x=2\pi i\sum \text{Res }f$ for Residues in the upper half plane. To calculate this, I've reached the below formula, which I believe to be correct. $$\int_{-\infty}^{\infty}\frac{\mathrm{d}x}{1+x^6}=2\pi i\sum_{k=0}^{5}\prod_{\substack{j=0\\j\neq k}}^5\frac{1}{e^{\pi i(2k+1)/6}-e^{\pi i(2j+1)/6}}$$ I'd like my Mathematica code to incorporate the $j\neq k$ part of the product, which from this question appears possible with the function DeleteCases. The code I used is displayed below. RootOfUnity[k_] := Exp[2 \[Pi] I k/6] Simplify[2 \[Pi] I Sum[Product[1/(RootOfUnity[2 k + 1] - RootOfUnity[2 j + 1]), {j, DeleteCases[Range[0, 5], k]}], {k, 0, 5}]] This gives me the answer $0$, which disagrees with WolframAlpha calculating the integral to be $2\pi/3$. The problem might be with my derivation of the residues, but does my Mathematica code (specifically the DeleteCases part of it) work how I want it to (based off of my LaTeX equation)? • Why not do it as 2 π I Total[Residue[1/(1 + t^6), {t, #}] & /@ (t /. Solve[{Denominator[1/(1 + t^6)] == 0, Im[t] >= 0}, t])] // FullSimplify? – J. M.'s discontentment Mar 9 '16 at 2:33 • This is part of a complex analysis problem set, and while the professor said using Mathematica to simplify the algebra at the end is acceptable, I'd prefer the code follows clearly from my derivation. – Mark Mar 9 '16 at 2:35 • Welcome to Mathematica.SE! I suggest the following: 1) As you receive help, try to give it too, by answering questions in your area of expertise. 2) Take the tour! 3) When you see good questions and answers, vote them up by clicking the gray triangles, because the credibility of the system is based on the reputation gained by users sharing their knowledge. Also, please remember to accept the answer, if any, that solves your problem, by clicking the checkmark sign! – Michael E2 Mar 9 '16 at 3:20 • Then, does 2 π I Sum[Product[1/(Exp[π I (2 j - 1)/6] - Exp[π I (2 k - 1)/6]), {k, Delete[Range[6], j]}], {j, 1, 3}] // Simplify suit your needs? – J. M.'s discontentment Mar 9 '16 at 3:20
2020-10-23T21:59:02
{ "domain": "stackexchange.com", "url": "https://mathematica.stackexchange.com/questions/109488/using-deletecases-to-ignore-term-of-product", "openwebmath_score": 0.4249785840511322, "openwebmath_perplexity": 1491.937080594635, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9902915232319998, "lm_q2_score": 0.8479677583778258, "lm_q1q2_score": 0.8397352830956014 }
https://math.stackexchange.com/questions/2999669/different-methods-to-calculate-the-limit-of-fraca-nb-0-a-0b-nn
# Different methods to calculate the limit of $\frac{a_nb_0+…+a_0b_n}{n}$ I'm given that $$\displaystyle\lim_{n \to \infty} a_n = a$$ and $$\displaystyle\lim_{n \to \infty} b_n = b$$ and I need to prove that $$\lim_{n\to \infty} \dfrac{a_nb_0+...+a_0b_n}{n} = ab.$$ I'm wondering what are the different kind of proof for this problem. I know a proof using $$\epsilon$$ - $$N$$ definition and I'm interested in more. So the proof goes like this: Because $$a_n$$ and $$b_n$$ converges, we know they are therefore bounded by some constant $$M>|a|$$. Now, $$\forall \epsilon >0$$, there exist $$N_1$$ such that $$\forall n>N_1$$, $$|a_n-a|<\frac{\epsilon}{4M}$$ and $$|b_n-b|<\frac{\epsilon}{4M}$$. Now let $$N >max \{N_1, \frac{2M}{\epsilon}[|a_0-a|+...+|a_{N_1}-a|+|b_0-b|+...+|b_{N_1}-b|+|b|]\}$$ so then when $$n>N$$ we have $$|\frac{a_nb_0+...+a_0b_n}{n} - ab|=|\frac{1}{n}[(a_0b_n-ab)+(a_1b_{n-1}-ab)+...+(a_nb_0-ab)+\frac{ab}{n}|$$ =$$\frac{1}{n}[(b_n(a_0-a)+a(b_n-b)+b_{n-1}(a_1-a)+a(b_{n-1}-b)+...+b_0(a_n-a)+a(b_0-b)]+\frac{ab}{n}| \leq \frac{M}{n}[|a_0-a|+...+|a_n-a|+|b_0-b|+...+|b_n-b|+|b|] \leq \frac{M}{N}[|a_0-a|+...+|a_{N_1}-a|+|b_0-b|+...+|b_{N_1}-b|+|b|]+\frac{M}{n}[|a_{N_1+1}-a|+...+|a_n-a|+|b_{N_1+1}-b|+...+|b_n-b|]<\frac{\epsilon}{2}+\frac{2M}{n}(n-N_1)\frac{\epsilon}{4M} < \epsilon.$$ • Maybe show the one that you know first in your post. I don't think "$\varepsilon$-$\delta$" is a good classifier. – xbh Nov 15 '18 at 13:28 • @mathnoob : Can you show us the proof using $\epsilon-\delta$? – Yadati Kiran Nov 15 '18 at 13:29 • Stolz theorem may help, but I tried and it didn’t lead to anything useful. – Szeto Nov 15 '18 at 13:56 you can decompose $$\frac{1}{n+1}\sum_{i=0}^na_ib_{n-i} - ab = \frac{1}{n+1}\sum_{i=0}^n(a_i-a)b_{n-i} + \frac{a}{n+1}\sum_{i=0}^n(b_{i}-b)$$ The first term converges to 0 because $$b_i$$ are bounded and the second term goes to 0 as well • it's $(b - b_i)$ in the second sum right? – mvggz Nov 15 '18 at 13:58 • nice and effective way (+1): I just corrected some typos – G Cab Nov 15 '18 at 18:37 • Not sure your edits are correct GCab ... – Ezy Nov 15 '18 at 19:11 • I edited the edits to make it correct ;) – Ezy Nov 15 '18 at 19:16 Proof without explicit $$\epsilon$$-$$N$$ argument. It suffices to prove that $$\frac{1}{n+1}\sum_{i=0}^{n} a_i b_{n-i} \to ab$$. Since both $$(a_i)$$ and $$(b_i)$$ converge, • Both $$(a_n)$$ and $$(b_n)$$ are bounded, hence we can pick $$M > 0$$ so that $$|a_n| \leq M$$ and $$|b_n| \leq M$$ for all $$n$$. • If we write $$A_n = \sup\{ |a_i - a| : i \geq n\}$$ and $$B_n = \sup\{ |b_i - b| : i \geq n\}$$, then $$A_n \to 0$$ and $$B_n \to 0$$. Then for each fixed $$N$$ and for each $$n \geq N$$, \begin{align*} \left| \frac{1}{n+1}\sum_{i=0}^{n} a_i b_{n-i} - ab \right| &\leq \frac{1}{n+1}\sum_{i=0}^{n} |a_i b_{n-i} - ab| \\ &\leq \frac{M}{n+1}\sum_{i=0}^{n} (|a_i - a| + |b_{n-i} - b|) \\ &\leq \frac{M}{n+1}\sum_{i=0}^{N} (|a_i - a| + |b_{i} - b|) + M(A_N + B_N). \end{align*} Taking $$\limsup$$ as $$n\to\infty$$, $$\limsup_{n\to\infty} \left| \frac{1}{n+1}\sum_{i=0}^{n} a_i b_{n-i} - ab \right| \leq M(A_N + B_N).$$ Since the left-hand side is independent of $$N$$, letting $$N \to \infty$$ shows that this limsup is zero, hence proves the desired convergence. A comical twist using probability theory. Let $$(\Omega, \mathcal{F}, \mathbb{P}) = \left([0, 1), \mathcal{B}([0,1)), \operatorname{Leb}|_{[0,1)}\right)$$ and define $$X_n : \Omega \to \mathbb{R}$$ by $$X_n(\omega) = \lfloor (n+1)\omega \rfloor$$. Then • Each $$X_n$$ is uniformly distributed over $$\{0, \cdots, n\}$$, • For $$\omega \in (0, 1)$$, we have $$X_n(\omega) \to \infty$$ and $$n-X_n(\omega) \to \infty$$. Now we note that $$\frac{1}{n+1}\sum_{i=0}^{n} a_i b_{n-i} = \mathbb{E}[a_{X_n}b_{n-X_n}]$$. Since $$a_{X_n}b_{n-X_n}$$ is bounded and converges to $$ab$$ for $$\mathbb{P}$$-a.e. $$\omega$$ (in fact, for all $$\omega \in (0, 1)$$), the bounded convergence theorem tells that $$\lim_{n\to\infty} \frac{1}{n+1}\sum_{i=0}^{n} a_i b_{n-i} = \mathbb{E}\left[ \lim_{n\to\infty} a_{X_n}b_{n-X_n} \right] = \mathbb{E}[ab] = ab.$$ Maybe not so bright idea, but in case if generating functions $$f$$ and $$g$$ of sequences $$\{a_n\}_{n=0}^\infty$$ and $$\{b_n\}_{n=0}^\infty$$, respectively, exist, one can show that the result by the general Leibniz rule is equal to $$f(1) \cdot g(1) = ab$$ Let us set $$c_n=(a*b)(n)=\sum_{k=0}^{n}a_k b_{n-k}$$ and $$f(x)=\sum_{n\geq 0}a_n x^n$$, $$g(x)=\sum_{n\geq 0} b_n x^n$$. The convolution implies $$f(x)\cdot g(x)=\sum_{n\geq 0}c_n x^n$$ and our assumptions are $$a=\lim_{n\to +\infty}\operatorname*{Res}_{z=0}\frac{f(z)}{z^{n+1}},\qquad b=\lim_{n\to +\infty}\operatorname*{Res}_{z=0}\frac{g(z)}{z^{n+1}}.$$ Let us say that $$h(z)=\sum_{n\geq 0}d_n z^n$$ is an approximate polynomial iff $$\lim_{n\to +\infty}d_n=0$$. Both $$f(x)-\frac{a}{1-x}$$ and $$g(x)-\frac{b}{1-x}$$ are approximate polynomials, $$f_1(x)$$ and $$g_1(x)$$, and $$f(x)g(x) = \frac{ab}{(1-x)^2}+\frac{b f_1(x)}{1-x}+\frac{a g_1(x)}{1-x}+f_1(x)g_1(x),$$ $$(1-x) f(x)g(x) = \frac{ab}{1-x}+\left(\text{approximate polynomial}\right).$$ By considering the coefficient of $$x^n$$ in both sides, the last identity implies $$\lim_{n\to +\infty}(c_{n+1}-c_n)=ab$$, hence $$\lim_{n\to +\infty}\frac{c_n}{n}=ab$$ follows from Cesàro-Stolz.
2019-05-22T07:31:38
{ "domain": "stackexchange.com", "url": "https://math.stackexchange.com/questions/2999669/different-methods-to-calculate-the-limit-of-fraca-nb-0-a-0b-nn", "openwebmath_score": 0.992768406867981, "openwebmath_perplexity": 260.5653579468107, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9902915249511566, "lm_q2_score": 0.8479677564567912, "lm_q1q2_score": 0.8397352826510067 }
https://artofproblemsolving.com/wiki/index.php?title=2013_AMC_12A_Problems/Problem_20&diff=prev&oldid=58225
# Difference between revisions of "2013 AMC 12A Problems/Problem 20" ## Problem 20 Let $S$ be the set $\{1,2,3,...,19\}$. For $a,b \in S$, define $a \succ b$ to mean that either $0 < a - b \le 9$ or $b - a > 9$. How many ordered triples $(x,y,z)$ of elements of $S$ have the property that $x \succ y$, $y \succ z$, and $z \succ x$? $\textbf{(A)} \ 810 \qquad \textbf{(B)} \ 855 \qquad \textbf{(C)} \ 900 \qquad \textbf{(D)} \ 950 \qquad \textbf{(E)} \ 988$ ## Solution Imagine 19 numbers are just 19 persons sitting evenly around a circle $C$; each of them is facing to the center. One may check that $x \succ y$ iff $y$ is one of the 9 persons on the left of $x$, and $y \succ x$ iff $y$ is one of the 9 persons on the right of $x$. Therefore, "$x \succ y$ and $y \succ z$ and $z \succ x$" implies that $x, y, z$ cuts the circumference of $C$ into three arcs, each of which has no more than $10$ numbers sitting on it (inclusive). We count the complement: where the cut generated by $(x,y,z)$ has ONE arc that has more than $10$ persons sitting on. Note that there can only be one such arc because there are only $19$ persons in total. Suppose the number of persons on the longest arc is $k>10$. Then two places of $x,y,z$ are just chosen from the two end-points of the arc, and there are $19-k$ possible places for the third person. Once the three places of $x,y,z$ are chosen, there are three possible ways to put $x,y,z$ into them clockwise. Also, note that for any $k>10$, there are $19$ ways to choose an arc of length $k$. Therefore the total number of ways (of the complement) is $$\sum_{k=11}^{18} 3\cdot 19 \cdot (19-k) = 3\cdot 19 \cdot (1+\cdots+8) = 3\cdot 19\cdot 36$$ $$3\cdot \binom{19}{3} - 3\cdot 19\cdot 36 = 3\cdot 19 \cdot (51 - 36) = 855$$ NOTE: this multiple choice problem can be done even faster -- after we realized the fact that each choice of the three places of $x,y,z$ corresponds to $3$ possible ways to put them in, and that each arc of length $k>10$ has $19$ equitable positions, it is evident that the answer should be divisible by $3\cdot 19$, which can only be $855$ from the five choices.
2022-10-03T18:12:24
{ "domain": "artofproblemsolving.com", "url": "https://artofproblemsolving.com/wiki/index.php?title=2013_AMC_12A_Problems/Problem_20&diff=prev&oldid=58225", "openwebmath_score": 0.7388883829116821, "openwebmath_perplexity": 122.05598339935703, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. YES\n2. YES", "lm_q1_score": 0.9902915223724214, "lm_q2_score": 0.8479677526147223, "lm_q1q2_score": 0.8397352766595542 }
https://gmatclub.com/forum/if-6-machines-run-at-the-same-constant-rate-they-can-104317.html?kudos=1
It is currently 21 Nov 2017, 21:16 ### GMAT Club Daily Prep #### Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email. Customized for You we will pick new questions that match your level based on your Timer History Track every week, we’ll send you an estimated GMAT score based on your performance Practice Pays we will pick new questions that match your level based on your Timer History # Events & Promotions ###### Events & Promotions in June Open Detailed Calendar # If 6 machines run at the same constant rate, they can Author Message TAGS: ### Hide Tags Intern Joined: 19 Dec 2009 Posts: 32 Kudos [?]: 74 [0], given: 9 If 6 machines run at the same constant rate, they can [#permalink] ### Show Tags 05 Nov 2010, 13:47 4 This post was BOOKMARKED 00:00 Difficulty: 25% (medium) Question Stats: 78% (01:30) correct 22% (01:51) wrong based on 436 sessions ### HideShow timer Statistics If 6 machines run at the same constant rate, they can complete a job in 8 hours. If only 5 of these machines run at this rate, how many more minutes will be required to complete the same job? A. 38 B. 72 C. 80 D. 90 E. 96 [Reveal] Spoiler: OA Kudos [?]: 74 [0], given: 9 Veritas Prep GMAT Instructor Joined: 16 Oct 2010 Posts: 7743 Kudos [?]: 17838 [9], given: 235 Location: Pune, India ### Show Tags 06 Nov 2010, 05:44 9 KUDOS Expert's post 7 This post was BOOKMARKED 6 machines can do a job in 8 hrs. 5 machines con do a job in ? Now think, will 5 machines take more than 8 hrs, or less? Of course more than 8 hrs since fewer machines are working. So number of hours 5 machines will take = $$8 * (\frac{6}{5})$$ Basically, you need hours so given hours term i.e. $$8 * \frac{6 machines}{5 machines}$$ to get 9.6 hours. We multiply by 6/5 to increase 8 since more hours are required. It is actually a Variation question (Inverse Variation here) but it is just easier to think in terms of more/less. Another e.g. 10 people make 5 chairs in a day. How many people do we need to make 12 chairs. Simply multiply 10 (the number that you want to change) by 12/5 because you want to increase the number of people to make more chairs: $$10 * (\frac{12}{5}) = 24$$ people Yet another e.g. 10 people need 4 hours to complete a job. How many hours do 18 people need to complete the same job? $$4 * (\frac{10}{18})$$ = 2.2 hrs If there are more people, they will need fewer hours so multiply by 10/18 (not 18/10). _________________ Karishma Veritas Prep | GMAT Instructor My Blog Get started with Veritas Prep GMAT On Demand for \$199 Veritas Prep Reviews Kudos [?]: 17838 [9], given: 235 Senior Manager Affiliations: SPG Joined: 15 Nov 2006 Posts: 320 Kudos [?]: 896 [3], given: 28 ### Show Tags 15 Jan 2011, 08:01 3 KUDOS a simpler way to tackling such questions is to convert the information into man-hours or, in this case, machine-hours. 6 machines in 8 hours = 6*8= 48 machine-hours 5 machines will take = 48/5= 9.6 hrs so 1.6hrs more or $$\frac{8}{5}$$ hrs = $$\frac{8*60}{5} mins = 96mins$$ HTH _________________ press kudos, if you like the explanation, appreciate the effort or encourage people to respond. Kudos [?]: 896 [3], given: 28 Math Expert Joined: 02 Sep 2009 Posts: 42286 Kudos [?]: 132984 [2], given: 12399 Re: If 6 machines run at the same constant rate, they can [#permalink] ### Show Tags 23 Feb 2012, 09:44 2 KUDOS Expert's post 1 This post was BOOKMARKED rtaha2412 wrote: If 6 machines run at the same constant rate, they can complete a job in 8 hours. If only 5 of these machines run at this rate, how many more minutes will be required to complete the same job? A. 38 B. 72 C. 80 D. 90 E. 96 The question can be answered in 30 sec if you have a fundamental understanding of simple principle: Time, rate and job in work problems are in the same relationship as time, speed (rate) and distance in rate problems. $$time*speed=distance$$ <--> $$time*rate=job \ done$$. So, if you decrease the rate of work 5/6 times (from 6 to 5 machines) the time needed to complete the same job will increase 6/5 times. Time needed for 6 machines = 80*60 = 480 minutes; Time needed for 5 machines = 480*6/5 = 576 minutes; Difference: 576-480=96 minutes. For more on Work/Rate Problems check this: two-consultants-can-type-up-a-report-126155.html#p1030079 Hope it helps. _________________ Kudos [?]: 132984 [2], given: 12399 Manager Joined: 10 Sep 2010 Posts: 127 Kudos [?]: 40 [1], given: 7 ### Show Tags 05 Nov 2010, 14:17 1 KUDOS 1 This post was BOOKMARKED My guess is E. Six machines can do 1/8 of the job within an hour. => 1 machine can do 1/48 of the job within a hour. => 5 machines can do 5/48 of the job within a hour. => 5 machines can do a full job in 48/5 hours. The difference between 48/5 hours and 5 hours is 8/5, which is 96 minutes (the answer to the question). Kudos [?]: 40 [1], given: 7 Manager Joined: 08 Sep 2011 Posts: 68 Kudos [?]: 5 [0], given: 5 Concentration: Finance, Strategy ### Show Tags 23 Feb 2012, 09:33 I agree with E next divide 48/5 which =9.6 so it takes 9.6 hours but you need to convert that to minutes so .6=36 mins so it takes 1 hour and 36 mins more or 96 mins. so E Kudos [?]: 5 [0], given: 5 Intern Joined: 29 Aug 2011 Posts: 22 Kudos [?]: 14 [0], given: 3 Re: If 6 machines run at the same constant rate, they can [#permalink] ### Show Tags 26 Feb 2012, 08:56 rtaha2412 wrote: If 6 machines run at the same constant rate, they can complete a job in 8 hours. If only 5 of these machines run at this rate, how many more minutes will be required to complete the same job? A. 38 B. 72 C. 80 D. 90 E. 96 On the same lines as Bunuel. The new rate is 5/6 of the earlier. The new total time will be 6/5 of original. To get the extra time 6/5 - 1 = 1/5. It will take 1/5 (20%) of original time to complete the same task. 1/5 * 480 = 96mins Kudos [?]: 14 [0], given: 3 Senior Manager Joined: 23 Oct 2010 Posts: 381 Kudos [?]: 403 [0], given: 73 Location: Azerbaijan Concentration: Finance Schools: HEC '15 (A) GMAT 1: 690 Q47 V38 Re: If 6 machines run at the same constant rate, they can [#permalink] ### Show Tags 01 Jul 2012, 01:18 if 6 machines need 8 h, then 1 machine needs 6*8=48 hours 48/5 -8=9 3/5-8=8/5 h 8/5h*60=96 _________________ Happy are those who dream dreams and are ready to pay the price to make them come true I am still on all gmat forums. msg me if you want to ask me smth Kudos [?]: 403 [0], given: 73 Senior Manager Joined: 13 Aug 2012 Posts: 458 Kudos [?]: 558 [0], given: 11 Concentration: Marketing, Finance GPA: 3.23 Re: If 6 machines run at the same constant rate, they can [#permalink] ### Show Tags 15 Nov 2012, 01:40 Setup the rate equation for 6 machines working for 8 hours to finish a job: $$(\frac{1}{m}+\frac{1}{m}+\frac{1}{m}+\frac{1}{m}+\frac{1}{m}+\frac{1}{m})(8hours)=1==>m=48hours$$ Setup the rate equation for 5 machines to finish the same job: $$\frac{5}{48}t=1==>t=\frac{48}{5}=9.6hours$$ ANswer: 9.6 - 8 = 1.6 hours or 96 minutes (E) _________________ Impossible is nothing to God. Kudos [?]: 558 [0], given: 11 Manager Joined: 23 Dec 2014 Posts: 50 Kudos [?]: 11 [0], given: 53 Re: If 6 machines run at the same constant rate, they can [#permalink] ### Show Tags 20 Feb 2015, 10:23 rtaha2412 wrote: If 6 machines run at the same constant rate, they can complete a job in 8 hours. If only 5 of these machines run at this rate, how many more minutes will be required to complete the same job? A. 38 B. 72 C. 80 D. 90 E. 96 6 machine rate = 1/8 1 machine rate = 1/48 5 machine rate = 5/48 Rate x Time = Job 5/48 x T = 1 T= 48/5 = 9.6 > 9 hour 36 minutes so extra time = 9 Hour 36 minutes - 8 hour = 1 hour 36 minute = 96 minutes Kudos [?]: 11 [0], given: 53 Non-Human User Joined: 09 Sep 2013 Posts: 15580 Kudos [?]: 283 [0], given: 0 Re: If 6 machines run at the same constant rate, they can [#permalink] ### Show Tags 24 Oct 2017, 14:35 Hello from the GMAT Club BumpBot! Thanks to another GMAT Club member, I have just discovered this valuable topic, yet it had no discussion for over a year. I am now bumping it up - doing my job. I think you may find it valuable (esp those replies with Kudos). Want to see all other topics I dig out? Follow me (click follow button on profile). You will receive a summary of all topics I bump in your profile area as well as via email. _________________ Kudos [?]: 283 [0], given: 0 Re: If 6 machines run at the same constant rate, they can   [#permalink] 24 Oct 2017, 14:35 Display posts from previous: Sort by
2017-11-22T04:16:14
{ "domain": "gmatclub.com", "url": "https://gmatclub.com/forum/if-6-machines-run-at-the-same-constant-rate-they-can-104317.html?kudos=1", "openwebmath_score": 0.5079233050346375, "openwebmath_perplexity": 5015.803186675143, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. Yes\n2. Yes\n\n", "lm_q1_score": 1, "lm_q2_score": 0.8397339676722393, "lm_q1q2_score": 0.8397339676722393 }
https://gmatclub.com/forum/if-a-portion-of-a-half-water-half-alcohol-mix-is-replaced-100271.html
Summer is Coming! Join the Game of Timers Competition to Win Epic Prizes. Registration is Open. Game starts Mon July 1st. It is currently 20 Jul 2019, 04:51 ### GMAT Club Daily Prep #### Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email. Customized for You we will pick new questions that match your level based on your Timer History Track every week, we’ll send you an estimated GMAT score based on your performance Practice Pays we will pick new questions that match your level based on your Timer History # If a portion of a half water/half alcohol mix is replaced Author Message TAGS: ### Hide Tags Intern Joined: 09 Feb 2010 Posts: 41 If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags Updated on: 31 May 2012, 04:18 6 67 00:00 Difficulty: 65% (hard) Question Stats: 59% (01:53) correct 41% (02:04) wrong based on 929 sessions ### HideShow timer Statistics If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? A. 3% B. 20% C. 66% D. 75% E. 80% Originally posted by zest4mba on 02 Sep 2010, 08:24. Last edited by Bunuel on 31 May 2012, 04:18, edited 1 time in total. Edited the OA Veritas Prep GMAT Instructor Joined: 16 Oct 2010 Posts: 9443 Location: Pune, India ### Show Tags 23 Dec 2010, 20:11 26 1 11 rtaha2412 wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% Question on Mixtures can be easily solved using weighted averages concept discussed here: http://gmatclub.com/forum/tough-ds-105651.html#p828579 I would also recommend that you go through the complete theory from some standard book if you are not comfortable. This question involves replacement rather than simply mixing two solutions hence it has one extra step at the end which I will discuss later. First of all consider, you have a solution with 50% alcohol. Part of it is removed and mixed with a 25% alcohol solution. In effect, this is similar to mixing two solutions, one of 25% alcohol and other of 50% alcohol. Attachment: Ques1.jpg [ 3.8 KiB | Viewed 26676 times ] So 25% alcohol solution volume : 50% alcohol solution volume is 20:5 which is 4:1. Since out of 5 parts of 50% alcohol solution, 4 parts were removed to replace them with 4 parts 25% alcohol solution, the portion of 50% alcohol solution replaced was 4/5 = 80%. The question asks: what percentage of original alcohol was replaced? Since the solution is homogenous, it you replace 80% of it, 80% of the original amount of alcohol in the solution will be replaced. To understand this, lets say I have 100 liters of 50% alcohol solution. When I remove 80% of it, I remove 80 liters solution. In the solution I remove, I have 40 liters alcohol and 40 liters water. In the 20 liters solution that is remaining, 10 liters is alcohol and 10 liters is water. So amount of alcohol removed (and replaced) is 40/50 = 80% _________________ Karishma Veritas Prep GMAT Instructor Manager Joined: 11 Jul 2010 Posts: 180 Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 19 Sep 2010, 10:51 16 6 Hi Financier It will work if you consider it as follows: 50% ---------------- 25% ------------30%--------- 5%------------------20% so ratio is 1:4 in final mixture Earlier type 1 alcohol was 1 Now it is 1/5 ----> so loss of 4/5 = 80%... ##### General Discussion Math Expert Joined: 02 Sep 2009 Posts: 56303 Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 02 Sep 2010, 08:52 11 14 zest4mba wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% Question can be solved algebraically or using allegation method. Algebraic approach: Initial solution is "half water/half alcohol mix" means it's 50% (0.5) alcohol solution. Let the portion replaced be $$x$$ and the volume of initial solution be 1 unit. Then the amount of alcohol after removal of a portion will be $$0.5(1-x)$$ and the amount of alcohol added will be $$0.25x$$, so total amount of alcohol will be $$0.5(1-x)+0.25x$$. On the other hand as in the end 30% alcohol solution was obtained then the amount of alcohol in the end was $$0.3*1$$. So $$0.5(1-x)+0.25x=0.3$$ --> $$x=0.8$$, or 80%. _________________ Intern Joined: 06 Jul 2010 Posts: 6 Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 02 Sep 2010, 10:11 zest4mba wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% I think the answer B can be considered only if the question was rephrased as what percentage of alcohol was replaced in the original solution with water. (20/100*100). Else the answer should be E as explained by other above. Manager Status: Keep fighting! Joined: 31 Jul 2010 Posts: 186 WE 1: 2+ years - Programming WE 2: 3+ years - Product developement, WE 3: 2+ years - Program management Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 02 Sep 2010, 17:55 4 1 Yup. It is E indeed. - If V is volume of the mixture then V/2 is alc and V/2 is water. - Take Xml of the solution away (it takes X/2 alc with it). So the alc level now is (V-X)/2. - Add X ml back but this solution only has X/4 alc. So new alc content = (V-X)/2 + X/4 - New alc content = 3V/10 as it is 30%. Solving it gives X as 80%. More or less the same approach that Bunuel took. Thank you, Hemanth Senior Manager Joined: 18 Jun 2010 Posts: 262 Schools: Chicago Booth Class of 2013 Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 19 Sep 2010, 09:52 Guys, I'm trying to apply a shortcut provided by KillerSquirrel in this thread mixture-55090.html, but getting a wrong answer Could you please elaborate this Mystery? Manager Status: Current MBA Student Joined: 19 Nov 2009 Posts: 96 Concentration: Finance, General Management GMAT 1: 720 Q49 V40 ### Show Tags 24 Dec 2010, 12:50 1 rtaha2412 wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% If you need additional instruction on these problem types, refer to the Jeff Sackmann Total Math handout p.158-159. He gives a more detailed explanation of Bunuel's method (which I think is the quickest approach to solving these problem types). Senior Manager Joined: 29 Jan 2011 Posts: 276 Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 27 Sep 2011, 02:17 gmat1011 wrote: Hi Financier It will work if you consider it as follows: 50% ---------------- 25% ------------30%--------- 5%------------------20% so ratio is 1:4 in final mixture Earlier type 1 alcohol was 1 Now it is 1/5 ----> so loss of 4/5 = 80%... I am not sure how can we write 50% ---------------- 25% here ? Can someone explain this ? Current Student Joined: 26 May 2005 Posts: 484 Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 27 Sep 2011, 02:46 2 siddhans wrote: gmat1011 wrote: Hi Financier It will work if you consider it as follows: 50% ---------------- 25% ------------30%--------- 5%------------------20% so ratio is 1:4 in final mixture Earlier type 1 alcohol was 1 Now it is 1/5 ----> so loss of 4/5 = 80%... I am not sure how can we write 50% ---------------- 25% here ? Can someone explain this ? Its called Allegation... u can do google to find more about it . Intial quantity(IQ) ....................................... replaced Quantity(RQ) 50% =========================================25% ================== 30% Result=================== subtract result -RQ ============================== subtract IQ- result 30-25 ======================================= 50-30 5% ======================================== 20% Hope this will be clear PS: Pm'ng u a material on Allegation. Hope that will help Senior Manager Joined: 23 Oct 2010 Posts: 337 Location: Azerbaijan Concentration: Finance Schools: HEC '15 (A) GMAT 1: 690 Q47 V38 Re: Mixture problem-Can someone explain this  [#permalink] ### Show Tags 01 Oct 2011, 06:33 1 am I right? let x be water, y - alcohol. so we have - 0.5x+0.5y -0.25y=0.3x+0.3y x=1/4y x/y=1/4 so in a new solution y 's portion is 4/5 or 80% _________________ Happy are those who dream dreams and are ready to pay the price to make them come true I am still on all gmat forums. msg me if you want to ask me smth Manager Joined: 28 Jul 2011 Posts: 173 ### Show Tags 30 May 2012, 21:21 1 VeritasPrepKarishma wrote: rtaha2412 wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% Question on Mixtures can be easily solved using weighted averages concept discussed here: http://gmatclub.com/forum/tough-ds-105651.html#p828579 I would also recommend that you go through the complete theory from some standard book if you are not comfortable. This question involves replacement rather than simply mixing two solutions hence it has one extra step at the end which I will discuss later. First of all consider, you have a solution with 50% alcohol. Part of it is removed and mixed with a 25% alcohol solution. In effect, this is similar to mixing two solutions, one of 25% alcohol and other of 50% alcohol. Attachment: Ques1.jpg So 25% alcohol solution volume : 50% alcohol solution volume is 20:5 which is 4:1. Since out of 5 parts of 50% alcohol solution, 4 parts were removed to replace them with 4 parts 25% alcohol solution, the portion of 50% alcohol solution replaced was 4/5 = 80%. The question asks: what percentage of original alcohol was replaced? Since the solution is homogenous, it you replace 80% of it, 80% of the original amount of alcohol in the solution will be replaced. To understand this, lets say I have 100 liters of 50% alcohol solution. When I remove 80% of it, I remove 80 liters solution. In the solution I remove, I have 40 liters alcohol and 40 liters water. In the 20 liters solution that is remaining, 10 liters is alcohol and 10 liters is water. So amount of alcohol removed (and replaced) is 40/50 = 80% How have u used the weighted avg formula? w1/w2 = (c2-avg) / (avg-c1) if c1 = 25 and c2=50 and avg = 30 - here how do we calculate w1 and/ or w2? didnot understand this part "Since out of 5 parts of 50% alcohol solution, 4 parts were removed to replace them with 4 parts 25% alcohol solution, the portion of 50% alcohol solution replaced was 4/5 = 80%. " Thank you Veritas Prep GMAT Instructor Joined: 16 Oct 2010 Posts: 9443 Location: Pune, India ### Show Tags 05 Jun 2012, 05:53 2 kuttingchai wrote: How have u used the weighted avg formula? w1/w2 = (c2-avg) / (avg-c1) if c1 = 25 and c2=50 and avg = 30 - here how do we calculate w1 and/ or w2? didnot understand this part "Since out of 5 parts of 50% alcohol solution, 4 parts were removed to replace them with 4 parts 25% alcohol solution, the portion of 50% alcohol solution replaced was 4/5 = 80%. " Thank you Check out this post: http://www.veritasprep.com/blog/2012/01 ... -mixtures/ It explains how to use weighted average for such replacement questions. _________________ Karishma Veritas Prep GMAT Instructor SVP Joined: 06 Sep 2013 Posts: 1647 Concentration: Finance Re: If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags 16 Dec 2013, 06:22 zest4mba wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? A. 3% B. 20% C. 66% D. 75% E. 80% Quick way Use Smart Numbers Give 100 for the initial amount Then you will have 50-0.25x = 30 x = 80 So % is 80/100 is 80% Hope it helps Cheers! J SVP Joined: 06 Sep 2013 Posts: 1647 Concentration: Finance Re: If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags 29 May 2014, 11:41 Or one can use differentials to slve Initially 50% alcohol Then 25% alcohol Resulting mixture 30% alcohol Therefore, 20X - 5Y= 0 5X = Y X/Y = 1/4 Now, mixture is 20% over total (1/5). Therefore 80% has been replaced by water. Hope this helps Cheers J Senior Manager Status: Verbal Forum Moderator Joined: 17 Apr 2013 Posts: 463 Location: India GMAT 1: 710 Q50 V36 GMAT 2: 750 Q51 V41 GMAT 3: 790 Q51 V49 GPA: 3.3 If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags 02 Jul 2014, 17:12 Bunuel wrote: zest4mba wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% Question can be solved algebraically or using allegation method. Algebraic approach: Initial solution is "half water/half alcohol mix" means it's 50% (0.5) alcohol solution. Let the portion replaced be $$x$$ and the volume of initial solution be 1 unit. Then the amount of alcohol after removal of a portion will be $$0.5(1-x)$$ and the amount of alcohol added will be $$0.25x$$, so total amount of alcohol will be $$0.5(1-x)+0.25x$$. On the other hand as in the end 30% alcohol solution was obtained then the amount of alcohol in the end was $$0.3*1$$. So $$0.5(1-x)+0.25x=0.3$$ --> $$x=0.8$$, or 80%. Bunuel, We have assumed that X is removed from the total solution and then we have calculated the value of X, since solution is 50% alcohol and the question stem has asked us to calculate the amount of alcohol initially replaced, and that will be 50% of X, since we have taken X as the total amount of solution replaced/removed (50%+50%). _________________ Like my post Send me a Kudos It is a Good manner. My Debrief: http://gmatclub.com/forum/how-to-score-750-and-750-i-moved-from-710-to-189016.html Intern Joined: 15 Jul 2012 Posts: 32 Re: If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags 03 Jul 2014, 07:58 VeritasPrepKarishma wrote: rtaha2412 wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% Question on Mixtures can be easily solved using weighted averages concept discussed here: http://gmatclub.com/forum/tough-ds-105651.html#p828579 I would also recommend that you go through the complete theory from some standard book if you are not comfortable. This question involves replacement rather than simply mixing two solutions hence it has one extra step at the end which I will discuss later. First of all consider, you have a solution with 50% alcohol. Part of it is removed and mixed with a 25% alcohol solution. In effect, this is similar to mixing two solutions, one of 25% alcohol and other of 50% alcohol. Attachment: Ques1.jpg So 25% alcohol solution volume : 50% alcohol solution volume is 20:5 which is 4:1. Since out of 5 parts of 50% alcohol solution, 4 parts were removed to replace them with 4 parts 25% alcohol solution, the portion of 50% alcohol solution replaced was 4/5 = 80%. The question asks: what percentage of original alcohol was replaced? Since the solution is homogenous, it you replace 80% of it, 80% of the original amount of alcohol in the solution will be replaced. To understand this, lets say I have 100 liters of 50% alcohol solution. When I remove 80% of it, I remove 80 liters solution. In the solution I remove, I have 40 liters alcohol and 40 liters water. In the 20 liters solution that is remaining, 10 liters is alcohol and 10 liters is water. So amount of alcohol removed (and replaced) is 40/50 = 80% hey karishma, i have a doubt. here they have asked that only part of the mixture is replaced but why are you taking the original quantity of 50% alchohol while calculating ? Veritas Prep GMAT Instructor Joined: 16 Oct 2010 Posts: 9443 Location: Pune, India Re: If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags 03 Jul 2014, 19:46 saggii27 wrote: VeritasPrepKarishma wrote: rtaha2412 wrote: If a portion of a half water/half alcohol mix is replaced with 25% alcohol solution, resulting in a 30% alcohol solution, what percentage of the original alcohol was replaced? a 3% b 20% c 66% d 75% e 80% Question on Mixtures can be easily solved using weighted averages concept discussed here: http://gmatclub.com/forum/tough-ds-105651.html#p828579 I would also recommend that you go through the complete theory from some standard book if you are not comfortable. This question involves replacement rather than simply mixing two solutions hence it has one extra step at the end which I will discuss later. First of all consider, you have a solution with 50% alcohol. Part of it is removed and mixed with a 25% alcohol solution. In effect, this is similar to mixing two solutions, one of 25% alcohol and other of 50% alcohol. Attachment: Ques1.jpg So 25% alcohol solution volume : 50% alcohol solution volume is 20:5 which is 4:1. Since out of 5 parts of 50% alcohol solution, 4 parts were removed to replace them with 4 parts 25% alcohol solution, the portion of 50% alcohol solution replaced was 4/5 = 80%. The question asks: what percentage of original alcohol was replaced? Since the solution is homogenous, it you replace 80% of it, 80% of the original amount of alcohol in the solution will be replaced. To understand this, lets say I have 100 liters of 50% alcohol solution. When I remove 80% of it, I remove 80 liters solution. In the solution I remove, I have 40 liters alcohol and 40 liters water. In the 20 liters solution that is remaining, 10 liters is alcohol and 10 liters is water. So amount of alcohol removed (and replaced) is 40/50 = 80% hey karishma, i have a doubt. here they have asked that only part of the mixture is replaced but why are you taking the original quantity of 50% alchohol while calculating ? They haven't given the quantity of 50% alcohol at all. All we know is that 50% alcohol is mixed with 25% alcohol to give 30% alcohol so we have found the ratio in which they must be mixed. We got this ratio as 4:1 i.e. we need to mix 4 parts of 25% alcohol with 1 part of 50% alcohol to get 30% alcohol. But since originally we had all 50% alcohol, out of every 5 parts of we must have taken out 4 parts and put 25% alcohol in its place. So we must have replaced 4/5th of the 50% alcohol solution. _________________ Karishma Veritas Prep GMAT Instructor Senior Manager Status: Verbal Forum Moderator Joined: 17 Apr 2013 Posts: 463 Location: India GMAT 1: 710 Q50 V36 GMAT 2: 750 Q51 V41 GMAT 3: 790 Q51 V49 GPA: 3.3 Re: If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags 03 Jul 2014, 19:50 Karishma My point is what was the assumption, in the solution given by Bunuel what was X? X was the total amount of Mixture displaced with new mixture of different alcohol consumption. X was not the total amount of alcohol displaced. _________________ Like my post Send me a Kudos It is a Good manner. My Debrief: http://gmatclub.com/forum/how-to-score-750-and-750-i-moved-from-710-to-189016.html Veritas Prep GMAT Instructor Joined: 16 Oct 2010 Posts: 9443 Location: Pune, India Re: If a portion of a half water/half alcohol mix is replaced  [#permalink] ### Show Tags 03 Jul 2014, 20:24 1 honchos wrote: Karishma My point is what was the assumption, in the solution given by Bunuel what was X? X was the total amount of Mixture displaced with new mixture of different alcohol consumption. X was not the total amount of alcohol displaced. honchos, in the previous post, I addressed saggii27's question to me. As for your question to Bunuel, we find the value of x, which is the fraction of the 50% SOLUTION that was replaced. We found that 4/5th of the original solution was replaced. Note that we assume solutions to be homogeneous. This means that if 4/5th of the solution was replaced, 4/5th of the original alcohol was replaced and 4/5th of the original water was replaced. Say you had 100 ml solution with 50 ml each of water and alcohol. You removed 4/5th of this solution i.e. 80 ml. So you removed 40 ml of each -water and alcohol i.e. you removed 4/5th of alcohol and 4/5th of water. _________________ Karishma Veritas Prep GMAT Instructor Re: If a portion of a half water/half alcohol mix is replaced   [#permalink] 03 Jul 2014, 20:24 Go to page    1   2   3    Next  [ 42 posts ] Display posts from previous: Sort by
2019-07-20T11:51:20
{ "domain": "gmatclub.com", "url": "https://gmatclub.com/forum/if-a-portion-of-a-half-water-half-alcohol-mix-is-replaced-100271.html", "openwebmath_score": 0.8212172389030457, "openwebmath_perplexity": 3875.5569700993756, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. Yes\n2. Yes\n", "lm_q1_score": 1, "lm_q2_score": 0.839733963661418, "lm_q1q2_score": 0.839733963661418 }
http://gmatclub.com/forum/at-a-certain-university-the-ratio-of-the-number-of-teaching-79240.html
Find all School-related info fast with the new School-Specific MBA Forum It is currently 27 Jul 2016, 06:53 ### GMAT Club Daily Prep #### Thank you for using the timer - this advanced tool can estimate your performance and suggest more practice questions. We have subscribed you to Daily Prep Questions via email. Customized for You we will pick new questions that match your level based on your Timer History Track every week, we’ll send you an estimated GMAT score based on your performance Practice Pays we will pick new questions that match your level based on your Timer History # Events & Promotions ###### Events & Promotions in June Open Detailed Calendar # At a certain university, the ratio of the number of teaching Author Message TAGS: ### Hide Tags Intern Joined: 28 Jun 2008 Posts: 46 Followers: 0 Kudos [?]: 48 [1] , given: 31 At a certain university, the ratio of the number of teaching [#permalink] ### Show Tags 04 Jun 2009, 21:11 1 KUDOS 10 This post was BOOKMARKED 00:00 Difficulty: 45% (medium) Question Stats: 62% (01:54) correct 38% (01:03) wrong based on 470 sessions ### HideShow timer Statistics At a certain university, the ratio of the number of teaching assistants to the number of students in any course must always be greater than 3:80. At this university , what is the maximum number of students possible in a course that has 5 teaching assistants? A. 130 B. 131 C. 132 D. 133 E. 134 [Reveal] Spoiler: OA Last edited by Bunuel on 13 Mar 2012, 00:35, edited 1 time in total. Edited the question and added the OA Manager Joined: 12 Apr 2006 Posts: 218 Location: India Followers: 1 Kudos [?]: 25 [1] , given: 17 Re: problem solving question on ratios [#permalink] ### Show Tags 05 Jun 2009, 01:46 1 KUDOS Not sure whether this is the best possible way but just the way how I solve it. Teaching Assistants = TA Students = S Let assume the ratio of TA/S = $$3/80$$ (Just putting aside the requirement it must be greater) Let say x be the maximum no of students possible with 5 teaching assistants = $$3/80 = 5/x$$ $$x = 400/3 = 133.33$$. Now for ratio to be greater than $$3/80$$ reduce the denominator. So just rounded it to lowest integer as number of student can't be in decimal. The new ratio is $$5/133$$, which is less than $$3/80$$ thus, 133 is the maximum number of students possible. Director Joined: 25 Oct 2008 Posts: 607 Location: Kolkata,India Followers: 11 Kudos [?]: 621 [1] , given: 100 Re: problem solving question on ratios [#permalink] ### Show Tags 17 Jul 2009, 19:34 1 KUDOS $$\frac{TA}{S} > \frac{3}{80}$$ $$\frac{5}{x} > \frac{3}{80}$$ 400 > 3x where x has to be maximum. Substituting the values, if x= 133, 3x=399. hence,D:) _________________ http://gmatclub.com/forum/countdown-beginshas-ended-85483-40.html#p649902 Manager Joined: 11 Sep 2009 Posts: 109 Followers: 2 Kudos [?]: 23 [0], given: 0 Re: problem solving question on ratios [#permalink] ### Show Tags 24 Oct 2009, 00:29 TA : S > 3 : 80 5 : S > 3 : 80 S < 400 / 3 = 133 (MAX) Manager Joined: 05 Nov 2010 Posts: 63 Followers: 1 Kudos [?]: 1 [0], given: 5 Re: problem solving question on ratios [#permalink] ### Show Tags 16 Dec 2010, 14:36 can someone explain in further detail the relationship between the teaching assistants to the number of students in any course must always be greater than 3:80 and how to reason through this portion? I understand how to solve for x. Once I was at this point I think was stumped on which number to select and inevitably chose to round up. My rational being .33 of a student is not possible therefore it must represent the position of an entire student. Thoughts? Help? Math Expert Joined: 02 Sep 2009 Posts: 34090 Followers: 6091 Kudos [?]: 76623 [5] , given: 9977 Re: problem solving question on ratios [#permalink] ### Show Tags 16 Dec 2010, 14:47 5 KUDOS Expert's post 3 This post was BOOKMARKED spyguy wrote: can someone explain in further detail the relationship between the teaching assistants to the number of students in any course must always be greater than 3:80 and how to reason through this portion? I understand how to solve for x. Once I was at this point I think was stumped on which number to select and inevitably chose to round up. My rational being .33 of a student is not possible therefore it must represent the position of an entire student. Thoughts? Help? At a certain university, the ratio of the number of teaching assistants to the number of students in any course must always be greater than 3:80. At this university, what is the maximum number of students possible in a course that has 5 teaching assistants? A. 130 B. 131 C. 132 D. 133 E. 134 Given: $$\frac{assistants}{students}>\frac{3}{80}$$ --> $$assistants=5$$, so $$\frac{5}{s}>\frac{3}{80}$$ --> $$s_{max}=?$$ $$\frac{5}{s}>\frac{3}{80}$$ --> $$s<\frac{5*80}{3}\approx{133.3}$$ --> so $$s_{max}=133$$. $$\frac{assistants}{students}>\frac{3}{80}$$ relationship means that if for example # of assistants is 3 then in order $$\frac{assistants}{students}>\frac{3}{80}$$ to be true then # of students must be less than 80 (so there must be less than 80 students per 3 assistants) on the other hand if # of students is for example 80 then the # of assistants must be more than 3 (so there must be more than 3 assistants per 80 students). Hope it's clear. _________________ Manager Joined: 05 Nov 2010 Posts: 63 Followers: 1 Kudos [?]: 1 [0], given: 5 Re: problem solving question on ratios [#permalink] ### Show Tags 16 Dec 2010, 14:57 Bunuel, That is very clear. Thanks for breaking it down like that as it is more clear in order to solve future problems. Manager Joined: 23 Feb 2012 Posts: 216 Location: India Concentration: Finance, Entrepreneurship Schools: Said GMAT 1: 710 Q44 V44 GPA: 2.9 WE: Marketing (Computer Software) Followers: 5 Kudos [?]: 46 [0], given: 22 ### Show Tags 12 Mar 2012, 22:45 At a certain restaurant, the ratio of the number of chefs to the number of burgers on any day must always be greater than 3:80. At this restaurant, what is the maximum number of burgers possible on a day that has 5 chefs. A) 130 B) 131 C) 132 D) 133 E) 134 [EDIT] The same problem has been solved elsewhere: problem-solving-question-on-ratios-79240.html Sorry, I couldn't delete this post! _________________ If you like it, Kudo it! "There is no alternative to hard work. If you don't do it now, you'll probably have to do it later. If you didn't need it now, you probably did it earlier. But there is no escaping it." 710 Debrief. Crash and Burn Last edited by budablasta on 12 Mar 2012, 23:50, edited 1 time in total. Senior Manager Status: May The Force Be With Me (D-DAY 15 May 2012) Joined: 06 Jan 2012 Posts: 289 Location: India Concentration: General Management, Entrepreneurship Followers: 2 Kudos [?]: 206 [1] , given: 16 ### Show Tags 12 Mar 2012, 23:42 1 KUDOS hi, I solved it this way, any suggestions always welcome c/b > 3/80 ( from question) 5/b > 3 / 80 (80 x 5 / 3) > b This reduces to 133.3333 > b So the number of burgers have to be less than 133.33 & as u dont get 0.33 burger in Mc Donalds Max burgers is 133 Give me a Big Kudoos Meal Combo if this helps _________________ Giving +1 kudos is a better way of saying 'Thank You'. Last edited by boomtangboy on 12 Mar 2012, 23:55, edited 1 time in total. Manager Joined: 23 Feb 2012 Posts: 216 Location: India Concentration: Finance, Entrepreneurship Schools: Said GMAT 1: 710 Q44 V44 GPA: 2.9 WE: Marketing (Computer Software) Followers: 5 Kudos [?]: 46 [0], given: 22 ### Show Tags 12 Mar 2012, 23:49 boomtangboy wrote: hi, Give me a Big Kudoos Meal Combo if this helps _________________ If you like it, Kudo it! "There is no alternative to hard work. If you don't do it now, you'll probably have to do it later. If you didn't need it now, you probably did it earlier. But there is no escaping it." 710 Debrief. Crash and Burn Senior Manager Status: May The Force Be With Me (D-DAY 15 May 2012) Joined: 06 Jan 2012 Posts: 289 Location: India Concentration: General Management, Entrepreneurship Followers: 2 Kudos [?]: 206 [0], given: 16 ### Show Tags 13 Mar 2012, 00:10 budablasta wrote: boomtangboy wrote: hi, Give me a Big Kudoos Meal Combo if this helps Happy to Help _________________ Giving +1 kudos is a better way of saying 'Thank You'. Math Expert Joined: 02 Sep 2009 Posts: 34090 Followers: 6091 Kudos [?]: 76623 [0], given: 9977 ### Show Tags 13 Mar 2012, 00:40 Expert's post budablasta wrote: At a certain restaurant, the ratio of the number of chefs to the number of burgers on any day must always be greater than 3:80. At this restaurant, what is the maximum number of burgers possible on a day that has 5 chefs. A) 130 B) 131 C) 132 D) 133 E) 134 [EDIT] The same problem has been solved elsewhere: problem-solving-question-on-ratios-79240.html Sorry, I couldn't delete this post! Merging similar topics. _________________ GMAT Club Legend Joined: 09 Sep 2013 Posts: 10612 Followers: 495 Kudos [?]: 129 [0], given: 0 Re: At a certain university, the ratio of the number of teaching [#permalink] ### Show Tags 05 Apr 2015, 06:25 Hello from the GMAT Club BumpBot! Thanks to another GMAT Club member, I have just discovered this valuable topic, yet it had no discussion for over a year. I am now bumping it up - doing my job. I think you may find it valuable (esp those replies with Kudos). Want to see all other topics I dig out? Follow me (click follow button on profile). You will receive a summary of all topics I bump in your profile area as well as via email. _________________ Manager Joined: 11 Nov 2014 Posts: 230 Location: India WE: Project Management (Telecommunications) Followers: 0 Kudos [?]: 20 [0], given: 6 Re: At a certain university, the ratio of the number of teaching [#permalink] ### Show Tags 26 Jan 2016, 10:18 budablasta wrote: At a certain restaurant, the ratio of the number of chefs to the number of burgers on any day must always be greater than 3:80. At this restaurant, what is the maximum number of burgers possible on a day that has 5 chefs. A) 130 B) 131 C) 132 D) 133 E) 134 [EDIT] The same problem has been solved elsewhere: problem-solving-question-on-ratios-79240.html Sorry, I couldn't delete this post! same for me Please help. The phrase "must always be greater than" states it has to be 134 & not 133 what is the catch here? I thought I was good at ratios! Manager Joined: 09 Jul 2013 Posts: 109 GMAT 1: 750 Q V GMAT 2: 760 Q V Followers: 2 Kudos [?]: 51 [1] , given: 6 Re: At a certain university, the ratio of the number of teaching [#permalink] ### Show Tags 26 Jan 2016, 14:53 1 KUDOS The question states that the ratio must always be greater than 3:80, not the number of students (or burgers). So when you calculate the ratio $$\frac{5}{x}>\frac{3}{80}$$, increasing the value of $$x$$ will decrease the ratio $$\frac{5}{x}$$, and decreasing the value of $$x$$ will increase the ratio $$\frac{5}{x}$$. If you calculate the number of burgers to be 133.3, then decide whether to round up or down, understand what will happen to the ratio of $$\frac{5}{x}$$. If $$\frac{5}{133.33}=\frac{3}{80}$$, and that is the minimum (because $$\frac{5}{x}$$ must always be greater than $$\frac{3}{80}$$), what happens if you round $$x$$ up to 134? Is $$\frac{5}{134}$$ > or < $$\frac{3}{80}$$? As explained above, if you increase $$x$$ to 134, then the ratio $$\frac{5}{x}$$ is decreased, and it will be less than the minimum of $$\frac{3}{80}$$. If you round $$x$$ down to 133, then the ratio $$\frac{5}{x}$$ will increase, and you will not violate the condition that it must always be greater than $$\frac{3}{80}$$. Looking at it another way, if we know that the ratio of assistants to students must always be greater than 3:80, then we know that for any given number of assistants, there is a maximum number of students allowed. For every assistant, a maximum of 26.66 students are allowed (80/3). So if there is 1 assistant and 27 students, that is too many. 26 is the maximum number of students allowed if there is only 1 assistant in order to keep the ratio greater than 3:80. Using the same logic, if there are 5 assistants, then the maximum number of students allowed is 133.33. If there were 134 students that would be more than the maximum, therefore the maximum number of students allowed is 133. Does that help? Cheers _________________ Dave de Koos Manager Joined: 11 Nov 2014 Posts: 230 Location: India WE: Project Management (Telecommunications) Followers: 0 Kudos [?]: 20 [0], given: 6 Re: At a certain university, the ratio of the number of teaching [#permalink] ### Show Tags 27 Jan 2016, 06:29 Yes, davedekoos understand what will happen to the ratio that solved it 50% VP Joined: 08 Jul 2010 Posts: 1201 Location: India GMAT: INSIGHT WE: Education (Education) Followers: 46 Kudos [?]: 1052 [0], given: 40 Re: At a certain university, the ratio of the number of teaching [#permalink] ### Show Tags 27 Jan 2016, 06:59 Expert's post scorpio7 wrote: At a certain university, the ratio of the number of teaching assistants to the number of students in any course must always be greater than 3:80. At this university , what is the maximum number of students possible in a course that has 5 teaching assistants? A. 130 B. 131 C. 132 D. 133 E. 134 $$\frac{Assistant}{Student} > \frac{3}{80}$$ $$\frac{5}{Student} > \frac{3}{80}$$ $$Student < \frac{(5*80)}{3}$$ $$Student < \frac{(400)}{3}$$ i.e. $$Student < 133.33$$ i.e. Maximum value of No. of students = 133 _________________ Prosper!!! GMATinsight Bhoopendra Singh and Dr.Sushma Jha e-mail: [email protected] Call us : +91-9999687183 / 9891333772 http://www.GMATinsight.com/testimonials.html Contact for One-on-One LIVE ONLINE (SKYPE Based) or CLASSROOM Quant/Verbal FREE Demo Class GMATinsight 107, 1st Floor, Krishna Mall, Sector-12 (Main market), Dwarka, New Delhi-110075 ______________________________________________________ Please press the if you appreciate this post !! Verbal Forum Moderator Joined: 15 Apr 2013 Posts: 194 Location: India Concentration: General Management, Marketing GMAT Date: 11-23-2015 GPA: 3.6 WE: Science (Other) Followers: 14 Kudos [?]: 362 [0], given: 28 At a certain university, the ratio of the number of teaching [#permalink] ### Show Tags 25 Feb 2016, 12:56 Brute Force Method: $$\frac{3}{80}$$ As we are looking to a similar ratio for 5 assistants instead of 3, convert the both numerator (3) and denominator (80) to multiple of 5 by multiplying with 5 $$\frac{3*5}{80*5}$$equivalent to $$\frac{15}{400}$$ Now as we need ratio for 05 assistants; again divide both numerator and denominator with 3. Pay attention to denominator which we need to answer: $$\frac{5}{133.33}$$ (Post division of both numerator and denominator with 03) DONE Maximum students could be 133 because if students 134 ratio would be less. Hope it helps!!!! At a certain university, the ratio of the number of teaching   [#permalink] 25 Feb 2016, 12:56 Similar topics Replies Last post Similar Topics: In a certain company, the ratio of the number of managers to the 2 25 Jul 2016, 17:10 34 In a certain district, the ratio of the number of registered 20 12 Dec 2012, 04:38 At a certain university, the ratio of the number of teaching assistant 4 17 Mar 2011, 19:38 11 At a certain university, the ratio of the number of teaching 7 24 Oct 2010, 17:57 29 At a Certain school, the ratio of the number of second 17 16 Jul 2009, 11:59 Display posts from previous: Sort by
2016-07-27T13:53:58
{ "domain": "gmatclub.com", "url": "http://gmatclub.com/forum/at-a-certain-university-the-ratio-of-the-number-of-teaching-79240.html", "openwebmath_score": 0.5714234113693237, "openwebmath_perplexity": 2861.660479488781, "lm_name": "Qwen/Qwen-72B", "lm_label": "1. Yes\n2. Yes\n\n", "lm_q1_score": 1, "lm_q2_score": 0.839733963661418, "lm_q1q2_score": 0.839733963661418 }