URL
stringlengths 15
1.68k
| text_list
sequencelengths 1
199
| image_list
sequencelengths 1
199
| metadata
stringlengths 1.19k
3.08k
|
---|---|---|---|
https://math.stackexchange.com/questions/1171185/how-long-does-it-take-the-average-voter-to-vote | [
"# How long does it take the average voter to vote?\n\nSo I was helping my brother with his homework question as follows\n\nThe voting office can handle $50 \\space \\text {voters/hour}$ and has 20 voting stations. How long does it take the average voter to vote?\n\nHe answered saying there are $60$ minutes for each machine, so $60 \\space \\text {minutes} \\times 20 \\space \\text {machines} = 1200 \\space \\text {total voting minutes/ hour}$. Therefore there are $$= \\frac {1200 \\space \\text {minutes}}{50 \\text {votes}}$$ $$=24 \\text {minutes/vote}$$\n\nI can tell that the answer is wrong because $24$ minutes is too long for one person to vote. My answer is that since there $60$ minutes in an hour, and $50$ votes per hour then $$\\frac {60}{50}$$ $$=1.2 \\text {minutes}$$\n\nI am not really sure why my brother's answer is incorrect; his method seems correct but is probably overcounting somehow. Any insight on the problem is appreciated\n\n• Maybe I missed something in the question, but as far as I can see your brother's answer is correct. I agree that 24 minutes is a long time for voting, but mathematics questions set for schoolwork are not always realistic. This is unfortunate because it gives students a very bad impression of the subject, but sadly, that's the way it (sometimes) is. – David Mar 2 '15 at 1:01\n• +1 for checking that the answer appears to be a realistic number, though. Pity that the problem fails to give realistic input data ... – hmakholm left over Monica Mar 2 '15 at 1:06\n• I would like to add that in some German state/city elections, a voter can distribute some 80 votes to named candidates (Panachage). It can take 24 minutes if the voters have not decided beforehand which candidates exactly they want. – Alexander Mar 2 '15 at 9:11\n• Hmm, I upvoted the question and explained why. So far 5 people have upvoted my comment with the explanation, but the question has only 3 upvotes in total. What's going on here, overcounting somehow? – hmakholm left over Monica Mar 2 '15 at 11:23\n\nYour brother's answer is actually absolutely correct. In your answer, you are calculating the average voting time if there was only one single voting machine, but there are $20$.\nYour answer ignores the fact that there are $20$ voting stations, presumably being used in parallel. If each voter took $1.2$ minutes and you kept a single station busy, you could handle $50$ per hour. Your brother is correct that averaged over a two hour period, you could afford each person to take $24$ minutes. Each station would handle $5$ people for a total of $100$, or $50$ per hour."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.95305014,"math_prob":0.9610702,"size":872,"snap":"2019-51-2020-05","text_gpt3_token_len":233,"char_repetition_ratio":0.1578341,"word_repetition_ratio":0.0,"special_character_ratio":0.3027523,"punctuation_ratio":0.056962024,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9892479,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-01-29T20:45:30Z\",\"WARC-Record-ID\":\"<urn:uuid:71fcfbea-a40a-4229-9e35-4356dc5ca37e>\",\"Content-Length\":\"146059\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:9a6d64a0-b568-4a5e-8421-de8e98546aea>\",\"WARC-Concurrent-To\":\"<urn:uuid:73069ceb-046f-4d41-945c-b6f4dab9d0fc>\",\"WARC-IP-Address\":\"151.101.193.69\",\"WARC-Target-URI\":\"https://math.stackexchange.com/questions/1171185/how-long-does-it-take-the-average-voter-to-vote\",\"WARC-Payload-Digest\":\"sha1:ZMM2USE6ZYA3F7EQGXGSHOEWFJDNC5FW\",\"WARC-Block-Digest\":\"sha1:CWY2XN6V7Q2JYATCBDEXCRVRQG2WQC6T\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-05/CC-MAIN-2020-05_segments_1579251802249.87_warc_CC-MAIN-20200129194333-20200129223333-00035.warc.gz\"}"} |
https://www.slideserve.com/janice/trees-powerpoint-ppt-presentation | [
"",
null,
"Download Presentation",
null,
"Trees",
null,
"# Trees - PowerPoint PPT Presentation\n\nDownload Presentation",
null,
"##### Trees\n\nDownload Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.\n\n- - - - - - - - - - - - - - - - - - - - - - - - - - - E N D - - - - - - - - - - - - - - - - - - - - - - - - - - -\n##### Presentation Transcript\n\n1. Trees Chapter 15\n\n2. Tree Concepts Hierarchical Organizations Tree Terminology Traversals of a Tree Traversals of a Binary Tree Traversals of a General Tree Java Interfaces for Trees Interfaces for All Trees Interface for Binary Examples of Binary Trees Expression Trees Decision Trees Binary Search Trees Examples of General Trees Parse Trees Game Trees Chapter Contents\n\n3. Tree Concepts • Previous data organizations place data in linear order • Some data organizations require categorizing data into groups, subgroups • This is hierarchical classification • Data items appear at various levels within the organization\n\n4. Hierarchical Organization • Example: File directories Computer files organized into folders.\n\n5. Hierarchical Organization • Example: A university's organization A university's administrative structure.\n\n6. Hierarchical Organization • Example: Family trees Carole's children and grandchildren.\n\n7. Tree Terminology • A tree is • A set of nodes • Connected by edges • The edges indicate relationships among nodes • Nodes arranged in levels • Indicate the nodes' hierarchy • Top level is a single node called the root\n\n8. Tree Terminology A tree equivalent to the my stuff tree\n\n9. Tree Terminology • Nodes at a given level are children of nodes of previous level • Node with children is the parent node of those children • Nodes with same parent are siblings • Node with no children is a leaf node • The only node with no parent is the root node • All others have one parent each\n\n10. Tree Terminology • Empty trees? • Some authors specify a general tree must have at least the root node • This text will allow all trees to be empty • A node is reached from the root by a path • The length of the path is the number of edges that compose it • The height of a tree is the number of levels in the tree • The subtree of a node is a tree rooted at a child of that node\n\n11. Binary Trees • General tree: in general, node can have an arbitrary number of children • Binary tree if each node has at most two children Three binary trees.\n\n12. Binary Trees • A binary tree is either empty or has the following form • Where Tleft and Tright are binary trees\n\n13. Binary Trees • If a binary tree of height h has all leaves on the same level h and every nonleaf in a full binary tree has exactly two children • A complete binary tree is full to its next-to-last level • Leaves on last level filled from left to right\n\n14. Binary Trees The number of nodes in a full binary tree as a function of the tree's height.\n\n15. Binary Trees • Total number of nodes n for a full tree can be calculated as: • The height of a binary tree with n nodes that is either complete or full is log2(n + 1)\n\n16. Traversals of a Tree • Traversing items is a common operation. Previous chapters, data was arranged linearly. Order of traversal was clear. • During tree traversal, we must visit each item exactly once in a systematic way. The order is not unique. • Visiting a node • Processing the data within a node • A traversal can pass through a node without visiting it at that moment\n\n17. Traversals of a Tree • Subtree of the root of binary trees are themselves binary trees. Using this recursive nature, we define recursive traversal: • For a binary tree • Visit the root • Visit all nodes in the root's left subtree • Visit all nodes in the root's right subtree • Order does not matter. Visit root before, between or after visiting two subtrees.\n\n18. Traversals of a Tree • Preorder traversal: visit root before the subtrees The visitation order of a preorder traversal.\n\n19. Traversals of a Tree • Inorder traversal: visit root between visiting the subtrees The visitation order of an inorder traversal.\n\n20. Traversals of a Tree • Postorder traversal: visit root after visiting the subtrees These are examples of a depth-first traversal. Follow a path that descends the levels of a tree as deeply as possible until reaches a leaf The visitation order of a postorder traversal.\n\n21. Traversals of a Tree • Level-order traversal: begin at the root, visit nodes one level at a time This is an example of a breadth-first traversal. Follow a path that explores an entire level before moving to the next level. The visitation order of a level-order traversal.\n\n22. Traversals Exercise • The order of these nodes being visited using 4 different traversal methods\n\n23. Answer • In this binary tree, D = node, L = left, R = right • Preorder (DLR) traversal yields: A, H, G, I, F, E, B, C, D • Postorder (LRD) traversal yields: G, F, E, I, H, D, C, B, A • In-order (LDR) traversal yields: G, H, F, I, E, A, B, D, C • Level-order traversal yields: A, H, B, G, I, C, F, E, D\n\n24. Traversals of a General Tree • A general tree has traversals that are in • Level order • Preorder • Postorder • Inorder traversal not well defined for a general tree\n\n25. Traversals of a General Tree The visitation order of two traversals of a general tree: (a) preorder; (b) postorder.\n\n26. Java Interfaces for Trees • An interface that specifies operations common to all trees public interface TreeInterface{ public Object getRootData();public int getHeight();public int getNumberOfNodes();public boolean isEmpty(); public void clear();} // end TreeInterface\n\n27. Expression Trees for Algebraic Expression • The root contains the binary operator and children contain the operands. • Order of children matches the order of operands. Such binary tree is called expression Trees. No parentheses since order of operations is captured by the shape of the expression tree Expression trees for four algebraic expressions..\n\n28. Expression Trees • Inorder traversal produces the original infix expression, but without any parentheses • Preorder traversal produces the prefix expression • Postorder traversal produces the postfix expression • (b) preorder: +*abc postorder: ab*c+\n\n29. Expression Trees • Algorithm for evaluating an expression tree in postorder traversal Algorithm evaluate(expressionTree)if (root of tree is operand)return operand else{ firstOperand = evaluate(left subtree of expressionTree) secondOperand = evaluate(right subtree of expressionTree) operator = the root of expressionTreereturn the result of the operation operator and its operandsfirstOperand and secondOperand}\n\n30. Exercises • Draw an expression tree for each of these algebraic expressions. • a. a+b*c • b. (a+b)*c\n\n31. Decision Trees Basis of Expert System • An expert system also known as a knowledge based system that contains some knowledge. It was first developed by researchers in artificial intelligence. • The most common form of expert systems is made up of a set of rules that analyze information. • Each parent in a decision tree is a question that has a finite number of response. • Each possible answer to the question corresponds to a child of the node. • Leave node are conclusions that have no children\n\n32. Decision Trees • Helps users solve problems, make decisions A binary decision tree to solve TV problem.\n\n33. Decision Trees • A possible Java interface for a binary decision tree. public interface DecisionTreeInterface extends BinaryTreeInterface{ /** Task: Gets the data in the current node. * @return the data object in the current node */public Object getCurrentData(); /** Task: Determines whether current node contains an answer. * @return true if the current node is a leaf */public boolean isAnswer(); /** Task: Moves the current node to the left (right) child of the current node. */public void advanceToNo();public void advanceToYes(); /** Task: Sets the current node to the root of the tree.*/public void reset();} // end DecisionTreeInterface\n\n34. Decision Trees The decision tree for a guessing game Facts are used to build this decision tree.\n\n35. Binary Search Trees • We can traverse nodes in any tree, so searching a node is possible. The least efficient search will be sequential search. • However, a search tree organizes its data so that a search is more efficient • Binary search tree • Nodes contain Comparable objects • A node's data is greater than the data in the node's left subtree • A node's data is less than the data in the node's right subtree\n\n36. Binary Search Trees A binary search tree of names.\n\n37. Binary Search Trees Two binary search trees containing the same names as the tree in previous slide\n\n38. Questions • How many different binary search trees can you form from the strings a, b, and c? • What are the heights of the shortest and tallest trees that you formed?\n\n39. Answer • How many different binary search trees can you form from the strings a, b, and c? • 5 different structures • What are the heights of the shortest and tallest trees that you formed? • 2 and 3\n\n40. Binary Search Trees • Search begins at the root, ends at either the target node or leaf node. • The number of comparison is the number of nodes along the path from the root to target node. • The height of a tree directly affects the length of the longest path from the root to a leaf and hence affects the efficiency of a worst-case search. • Searching a binary search tree of height h is O(h).\n\n41. Binary Search Trees • An algorithm for searching a binary search tree Algorithm bstSearch(binarySearchTree, desiredObject)// Searches a binary search tree for a given object.// Returns true if the object is found.if (binarySearchTree is empty)return falseelse if (desiredObject == object in the root of binarySearchTree)return trueelse if (desiredObject < object in the root of binarySearchTree)return bstSearch(left subtree of binarySearchTree, desiredObject)else return bstSearch(right subtree of binarySearchTree, desiredObject)\n\n42. Heaps • A complete binary tree • Nodes contain Comparable objects • Each node contains no smaller (or no larger) than objects in its descendants • Maxheap • Object in a node is ≥ its descendant objects. Root node contains the largest data • Minheap • Object in a node is ≤ descendant objects • Root node contains the smallest data\n\n43. Heaps (a) A maxheap and (b) a minheap that contain the same values\n\n44. Question? • Can a binary search tree ever be a maxheap? • Can you think of any ADT we have learnt so far that can be implemented by maxheap?\n\n45. Parse Tree for Compiler • These rules form a grammar for algebraic expression, much like English language grammar. • An algebraic expression is either a term or two terms separated by + or – operator • A term is either a factor or two factors separated by * or / operator. • A factor is either a variable or an algebraic expression enclosed in parentheses. • A variable is a single letter Check the syntax of each statement by applying these rules, if we can the derivation can be given as a parse tree.\n\n46. Parse Tree • A parse tree for the algebraic expression a * (b + c) • 1). An algebraic expression is either a term or two terms separated by + or – operator • 2). A term is either a factor or two factors separated by * or / operator. • 3). A factor is either a variable or an algebraic expression enclosed in parentheses. • 4). A variable is a single letter\n\n47. Parse Tree • Parse tree should be a general tree so that I can accommodate any expression. • We are not restricted to algebraic expression. • We can use parse tree to check the validity of any string according to any grammar • Compiler uses parse tree both to check the syntax of a program and to produce executable code.\n\n48. Exercise • Draw a parse tree for the algebraic expression a*b + c • a + b*c • (a+b)*(c-d)"
] | [
null,
"https://www.slideserve.com/img/replay.png",
null,
"https://thumbs.slideserve.com/1_548972.jpg",
null,
"https://www.slideserve.com/photo/32843-t.jpeg",
null,
"https://www.slideserve.com/img/output_cBjjdt.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.82986784,"math_prob":0.8305521,"size":11584,"snap":"2019-43-2019-47","text_gpt3_token_len":2449,"char_repetition_ratio":0.15777202,"word_repetition_ratio":0.092860706,"special_character_ratio":0.2140884,"punctuation_ratio":0.080331065,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.983115,"pos_list":[0,1,2,3,4,5,6,7,8],"im_url_duplicate_count":[null,null,null,1,null,1,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-11-15T21:57:08Z\",\"WARC-Record-ID\":\"<urn:uuid:32758d06-25b9-4943-a9aa-3092acd02825>\",\"Content-Length\":\"59906\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:972e341d-ed5b-4234-a2b8-7bba3fec5c07>\",\"WARC-Concurrent-To\":\"<urn:uuid:56225829-b727-48c3-9c53-05e323df2f07>\",\"WARC-IP-Address\":\"54.68.51.18\",\"WARC-Target-URI\":\"https://www.slideserve.com/janice/trees-powerpoint-ppt-presentation\",\"WARC-Payload-Digest\":\"sha1:SVN4VALTKAVGXN2K5AUZGKIEBUHVR5A6\",\"WARC-Block-Digest\":\"sha1:JH6Y7CRBSENCI35P25RLIOY36FP7C2TX\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-47/CC-MAIN-2019-47_segments_1573496668712.57_warc_CC-MAIN-20191115195132-20191115223132-00105.warc.gz\"}"} |
https://math.stackexchange.com/questions/4271475/do-the-left-and-right-parts-of-the-matrix-used-when-performing-gaussian-elimin | [
"# Do the left and right \"parts\" of the matrix used when performing Gaussian Elimination have names?\n\nGiven a matrix used to perform Gaussian Elimination like this:\n\n$$\\begin{bmatrix} 1 & -3 & | & 1 \\\\ 2 & -7 & | & 3 \\end{bmatrix}$$\n\nWhich would be derived from a system of equations like this:\n\n$$\\begin{cases} x - 3y = 1 \\\\ 2x - 7y = 3 \\end{cases}$$\n\nDo the different \"sides\", i.e. the parts that come from the right hand side of the equation and the part that comes from the left hand side of the equation, respectively, have names?\n\n• This comment doesn't answer your question, but it's called an augmented matrix Oct 8, 2021 at 20:56\n• The left side is the coefficient matrix, and the right side is the column vector of constant terms Oct 8, 2021 at 21:00\n• @J.W.Tanner that sounds like an answer, thanks! How come you post it as a comment? Oct 9, 2021 at 9:11\n• Sorry; I'll post it as an answer now Oct 10, 2021 at 2:03"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.803395,"math_prob":0.97829604,"size":433,"snap":"2022-27-2022-33","text_gpt3_token_len":133,"char_repetition_ratio":0.11888112,"word_repetition_ratio":0.0,"special_character_ratio":0.33718246,"punctuation_ratio":0.09638554,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99630576,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-07-07T13:55:30Z\",\"WARC-Record-ID\":\"<urn:uuid:ad8131ce-dff4-4b62-9998-b6548fe67a07>\",\"Content-Length\":\"225619\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:e7e77ab2-46e8-4a33-9989-99c745de6667>\",\"WARC-Concurrent-To\":\"<urn:uuid:1cf06385-6bcd-40cb-8c74-8a2081764964>\",\"WARC-IP-Address\":\"151.101.129.69\",\"WARC-Target-URI\":\"https://math.stackexchange.com/questions/4271475/do-the-left-and-right-parts-of-the-matrix-used-when-performing-gaussian-elimin\",\"WARC-Payload-Digest\":\"sha1:KAY2X5FSZ2W7ZVAARLCIQNEQ67XW7HTJ\",\"WARC-Block-Digest\":\"sha1:CCY7JS7IBLEWUEOBWNTJBU66UZXGCCUJ\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-27/CC-MAIN-2022-27_segments_1656104692018.96_warc_CC-MAIN-20220707124050-20220707154050-00557.warc.gz\"}"} |
http://oeis.org/A108954 | [
"The OEIS is supported by the many generous donors to the OEIS Foundation.",
null,
"Hints (Greetings from The On-Line Encyclopedia of Integer Sequences!)\n A108954 a(n) = pi(2*n) - pi(n). Number of primes in the interval (n,2n]. 14\n 1, 1, 1, 2, 1, 2, 2, 2, 3, 4, 3, 4, 3, 3, 4, 5, 4, 4, 4, 4, 5, 6, 5, 6, 6, 6, 7, 7, 6, 7, 7, 7, 7, 8, 8, 9, 9, 9, 9, 10, 9, 10, 9, 9, 10, 10, 9, 9, 10, 10, 11, 12, 11, 12, 13, 13, 14, 14, 13, 13, 12, 12, 12, 13, 13, 14, 13, 13, 14, 15, 14, 14, 13, 13, 14, 15, 15, 15, 15, 15, 15, 16, 15, 16 (list; graph; refs; listen; history; text; internal format)\n OFFSET 1,4 COMMENTS a(n) < log(4)*n/log(n) < 7*n/(5*log(n)) for n > 1. - Reinhard Zumkeller, Mar 04 2008 Bertrand's postulate is equivalent to the formula a(n) >= 1 for all positive integers n. - Jonathan Vos Post, Jul 30 2008 Number of distinct prime factors > n of binomial(2*n,n). - T. D. Noe, Aug 18 2011 f(2, 2n) - f(3, n) < a(n) < f(3, 2n) - f(2, n) for n > 5889 where f(k, x) = x/log x * (1 + 1/log x + k/(log x)^2). The constant 3 can be improved. - Charles R Greathouse IV, May 02 2012 For n >= 2, a(n) is the number of primes appearing in the 2nd row of an n X n square array whose elements are the numbers from 1..n^2, listed in increasing order by rows. - Wesley Ivan Hurt, May 17 2021 REFERENCES F. Irschebeck, Einladung zur Zahlentheorie, BI Wissenschaftsverlag 1992, p. 40 LINKS T. D. Noe, Table of n, a(n) for n = 1..10000 Tsutomu Hashimoto, On a certain relation between Legendre's conjecture and Bertrand's postulate, arXiv:0807.3690 [math.GM], 2008. FORMULA a(n) = A000720(2*n)-A000720(n). For n > 1, a(n) = A060715(n). - David Wasserman, Nov 04 2005 Conjecture: G.f.: Sum_{i>0} Sum_{j>=i|i+j is prime} x^j. - Benedict W. J. Irwin, Mar 31 2017 From Wesley Ivan Hurt, Sep 20 2021: (Start) a(n) = Sum_{k=1..n} A010051(2*n-k+1). a(n) = Sum_{k=n*(n+1)/2+2..(n+1)*(n+2)/2} A010051(A128076(k)). (End) MAPLE A108954 := proc(n) numtheory[pi](2*n)-numtheory[pi](n) ; end proc: # R. J. Mathar, Nov 03 2017 MATHEMATICA Table[Length[Select[Transpose[FactorInteger[Binomial[2 n, n]]][], # > n &]], {n, 100}] (* T. D. Noe, Aug 18 2011 *) f[n_] := Length@ Select[ Range[n + 1, 2n], PrimeQ]; Array[f, 100] (* Robert G. Wilson v, Mar 20 2012 *) Table[PrimePi[2n]-PrimePi[n], {n, 90}] (* Harvey P. Dale, Mar 11 2013 *) PROG (PARI) g(n) = for(x=1, n, y=primepi(2*x)-primepi(x); print1(y\", \")) CROSSREFS Cf. A000720, A060715. Cf. A067434 (number of prime factors in binomial(2*n,n)), A193990, A074990. Sequence in context: A283190 A030361 A060715 * A123920 A322141 A029170 Adjacent sequences: A108951 A108952 A108953 * A108955 A108956 A108957 KEYWORD nonn,easy AUTHOR Cino Hilliard, Jul 22 2005 STATUS approved\n\nLookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam\nContribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents\nThe OEIS Community | Maintained by The OEIS Foundation Inc.\n\nLast modified September 26 20:57 EDT 2022. Contains 357050 sequences. (Running on oeis4.)"
] | [
null,
"http://oeis.org/banner2021.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.5942673,"math_prob":0.9790807,"size":2639,"snap":"2022-40-2023-06","text_gpt3_token_len":1198,"char_repetition_ratio":0.108918406,"word_repetition_ratio":0.02008032,"special_character_ratio":0.5422509,"punctuation_ratio":0.27478755,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9941135,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-09-27T01:04:56Z\",\"WARC-Record-ID\":\"<urn:uuid:04a1cabb-662d-43d1-9293-078b627aba08>\",\"Content-Length\":\"21078\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:bdd57bbe-237f-4787-92ce-0ada6d4f5ed0>\",\"WARC-Concurrent-To\":\"<urn:uuid:2a74f6da-f059-4085-be9b-31d8ed3d2606>\",\"WARC-IP-Address\":\"104.239.138.29\",\"WARC-Target-URI\":\"http://oeis.org/A108954\",\"WARC-Payload-Digest\":\"sha1:KSPQ2HQZ5ENWRI223LXXGHWYSAZMWTRX\",\"WARC-Block-Digest\":\"sha1:KPTHZGO4T7KGIW5435WBM4MHPUDR5QYF\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-40/CC-MAIN-2022-40_segments_1664030334974.57_warc_CC-MAIN-20220927002241-20220927032241-00152.warc.gz\"}"} |
https://www.hpmuseum.org/forum/thread-14181.html | [
"[Discussion] Solving the Limit Problem\n12-16-2019, 03:02 PM\nPost: #1\n yangyongkang",
null,
"Member Posts: 51 Joined: Dec 2018\n[Discussion] Solving the Limit Problem\nNonsense, paste code\nCode:\nlimit((∫(∫(sin(t)*atan(1+t),t,0,u^2),u,0,x))/(x^3*((x+1)^(1/3)-1)^2),x,0)\nxcas get\nCode:\n\"Limit: Max order reached or unable to make series expansion Error: Bad Argument Value\"\n\nmathematica also calculated for a long time\nCode:\nLimit[Integrate[Sin[t]*ArcTan[1 + t], {u, 0, x}, {t, 0, u^2}]/( x^3*((x + 1)^(1/3) - 1)^2), x -> 0]\n\nSurprisingly, the Ti Nspire CX CII CAS is calculated\n\nIn fact, the hp prime can be calculated, and it needs to be replaced by another method.\n\nlet f(t)=sin(t)*atan(1+t)\n\nCode:\nseries((∫(∫(f(t),t,0,u^2),u,0,x)/(x^3*((x+1)^(1/3)-1)^2)),equal(x,0),1)\n\nhp prime get\nCode:\n(3*f(0)/x^2)+(2*f(0)/x)+(9/10)*(function_diff(f))(0)-(1/9)*f(0)+((3/5)*(function_diff(f))(0)+(2/27)*f(0))*x+x^2*order_size(x)\n\nWe find f (0) = 0 and substitute it into the result,Get the limit\nCode:\n((9/10)*∂(sin(t)*atan(1+t),t)|(equal(t,0)))\nhp prime get\nCode:\n9*π/40\n\nAttached File(s) Thumbnail(s)",
null,
"study hard, improve every day\n12-19-2019, 09:08 AM\nPost: #2\n yangyongkang",
null,
"Member Posts: 51 Joined: Dec 2018\nRE: [Discussion] Solving the Limit Problem\nSeveral perverted integrals\n(i)\nCode:\nevalf(int(1/(1+e^(1/x)),x,-1,1))\nxcas get\nCode:\n\"Unidirectional limits are distincts 1,0 Error: Bad Argument Valu\"\n\n(ii)\nCode:\nint(x^2*tan(x)^2+x^2+2*x*tan(x)+1,x)\nCode:\nx+x*tan(x)\n\n(iii)\nCode:\nsimplify(int((x*tan(x)+ln(x*cos(x))-1)/ln(x*cos(x))^2,x))\nx/ln(x*ln(x))"
] | [
null,
"https://www.hpmuseum.org/forum/images/buddy_offline.gif",
null,
"https://www.hpmuseum.org/forum/attachment.php",
null,
"https://www.hpmuseum.org/forum/images/buddy_offline.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.69016504,"math_prob":0.99971634,"size":1463,"snap":"2021-43-2021-49","text_gpt3_token_len":576,"char_repetition_ratio":0.10006854,"word_repetition_ratio":0.040935673,"special_character_ratio":0.41285032,"punctuation_ratio":0.16710876,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9998406,"pos_list":[0,1,2,3,4,5,6],"im_url_duplicate_count":[null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-12-04T15:03:10Z\",\"WARC-Record-ID\":\"<urn:uuid:32b9fb18-fab9-44fc-8734-297843a1b37d>\",\"Content-Length\":\"21368\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:f2b902aa-587c-4993-a4c5-c6fed33afde2>\",\"WARC-Concurrent-To\":\"<urn:uuid:5bc1d123-599b-4b27-b4c7-4bee0199bfc9>\",\"WARC-IP-Address\":\"209.197.117.170\",\"WARC-Target-URI\":\"https://www.hpmuseum.org/forum/thread-14181.html\",\"WARC-Payload-Digest\":\"sha1:ELP3XF7WBMHPVCH6UPM7PIPNWKZ5DGJA\",\"WARC-Block-Digest\":\"sha1:XIMZZ5QYHE3OLCEFO7SMHY33MQ6NQGG7\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-49/CC-MAIN-2021-49_segments_1637964362992.98_warc_CC-MAIN-20211204124328-20211204154328-00079.warc.gz\"}"} |
https://xzonn.top/posts/Introduction-to-Seismology-Notes.html | [
"• 2019-09-28 12:00\n• 2021-06-04 20:39\n\n# 《地震概论》2019年秋季学期(周四班)笔记\n\n## 课程板书内容\n\n### 第1章 地震学的研究范围和历史\n\n• 历史记载全球死亡超过20万人的地震有6次,其中在中国就有4次。\n• 按震源深度划分天然地震:浅源地震 < 60 km,中源地震60 ~ 300 km,深源地震 > 300 km。\n• 1966年邢台大地震,导致了1971年中国地震局成立。\n• 地方震震中距 < 100 km,近震震中距 < 1000 km,远震震中距 > 1000 km。\n• 古代台湾人认为地震由地牛产生。\n• 古代人类对地震的认识:中国——大鳌鱼,日本——鲶鱼,印度——大象,希腊——气动说。\n• 欧洲里斯本大地震使人们从神学中解放。\n• 地震学是一门应用物理学,属于固体地球物理学的分支,不是地质学。\n\n### 第2章 地震波\n\n• 地震横波与纵波:\n• 纵波:P波,质点振动方向与振动(能量)传播方向一致。传播速度为$v_P = \\sqrt{E / \\rho}$。\n• 横波:S波,质点振动方向与振动(能量)传播方向垂直。传播速度为$v_S = \\sqrt{\\mu / \\rho}$。\n• 纵波速度比横波速度大,一般$v_P \\approx \\sqrt{3} v_S$。\n• 地震波的传播:\n• 说明:地震波在传播到地表时几乎与地表垂直,以此可分析P波和S波的振动方向。\n• S波的分解:\n• 说明:S波可以分解成两个分量,平行于界面的分量为SH波,在入射线和界面法线构成的平面上(入射面)的分量为SV波。\n• SH波与SV波:\n• P波和S波的主要差异:\n• P波传播速度比S波快,地震图上先出现P波。\n• P波和S波的质点振动(偏振)方向相互垂直。\n• 一般情况下,三分量地震图上P波的垂直分量相对较强,S波的水平分量相对较强。\n• S波的低频成分比P波丰富。\n• 天然地震的振源破裂通常以剪切破裂和剪切错动为主,震源向外辐射的S波能量比P波的强。\n• P波通过时,质元无转动运动,而有体积变化,P波是一种无旋波。S波通过时,质元有转动,而无体积变化,S波是一种无散的等容波。\n• 谚语:“地震不地震,抬头看吊灯”。\n• 说明:地震波中,P波上下振动,S波水平振动。而环境造成的振动不会产生水平方向的振动,因此当吊灯水平振动时,说明有地震发生。\n• P波使建筑物上下晃动,S波使建筑物水平晃动。\n• 一般波序:P波、S波、勒夫面波、瑞利面波、地震尾波。\n\n### 第3章 地震波传播理论\n\n• 射线理论:地震射线是波阵面法线的轨迹。计算方法:(感谢树洞Hans提醒)\n$t = \\int_A^B \\sqrt{1 + y'R} \\mathrm dx.$\n• 波长很短:$v = \\lambda f$,在高频近似(短波近似)的情况下,可用波射线来描述波的传播。\n• 费马原理:当一个震动由介质中一点传播到另一点时,它所经过的途径会使其传播时间为一稳定值(最大、最小或拐点)。\n• 斯涅耳定律:(证明见作业,\n$\\cfrac {\\sin\\theta_{\\alpha1}} {v_{\\alpha1}} = \\cfrac {\\sin\\theta_{\\beta1}} {v_{\\beta1}} = \\cfrac {\\sin\\theta_{\\alpha2}} {v_{\\alpha2}} = \\cfrac {\\sin\\theta_{\\beta2}} {v_{\\beta2}}.$\n• 地球内部体波的传播:\n• PcPS不可能存在($v_P > v_S$导出$\\theta_P > \\theta_S$),ScSP可能存在。P夹角比S大。(感谢树洞Hans提醒)\n• 说明:P、S分别表示从震源发出、向地球内部传播的纵波和横波;c表示在地核界面上波的反射;K表示通过外核的纵波,地球的外核是液态,所以只有通过外核的纵波,而没有通过外核的横波;I、J分别表示通过内核的纵波、横波;i表示在内核界面的反射;p、s分别表示由震源向上(地面)传播的射线。\n• SH波不能产生P波:在水平面内振动不能引起垂直面振动。\n• 面波的走时曲线为直线。\n• S-P的走时差较多依赖于距离而较少依赖于深度;而pP-P走时差主要由震源深度决定,较少得依赖于震中距。\n• 计算题:(《地震概论》课本第41页,思考题2)一个震源深度为10 km的地震,多个区域台站记到的Pn波走时直线的斜率为0.125 s/km,截距为$\\pu{3\\sqrt{7} s}$(约8 s),若均匀地壳内P波速度已知为6 km/s,试估计地幔顶部的P波速度和地壳厚度。(感谢树洞Louis提醒)\n\n$T = \\cfrac {X - (2H - h)\\tan\\theta_c} {v_2} + \\cfrac {(2H - h)~/ \\cos\\theta_c} {v_1} = \\cfrac {1} {v_2} + \\left( \\cfrac {(2H - h)~/ \\cos\\theta_c} {v_1} - \\cfrac {(2H - h)\\tan\\theta_c} {v_2} \\right),$ $\\text{斜率 } k = \\cfrac {1} {v_2},~ \\text{截距 } b = (2H - h) \\cfrac {v_2 - v_1 \\sin \\theta_c} {v_1 v_2 \\cos \\theta_c}.$\n\n$v_2 = \\cfrac {1} {k} = \\pu{8 km/s},$ $\\sin \\theta_c = \\cfrac {v_1} {v_2} = \\cfrac {3} {4}, ~ \\cos \\theta_c = \\sqrt {1 - \\sin^2 \\theta_c} = \\cfrac {\\sqrt{7}} {4},$ $2H - h = \\cfrac {b v_1 v_2 \\cos \\theta_c} {v_2 - v_1 \\sin \\theta_c} = \\pu{72 km},~ H = \\pu{41 km}.$\n\n### 第4章 地球内部的结构\n\n• 地壳是通过研究首波而发现的。\n• 大陆地区地壳平均厚度为35 km,海洋地区地壳不到10 km。大洋和大陆下面的地壳厚度不同。\n• 用面波可以研究地壳性质,因为面波在地壳中运行。\n• 液态外核的发现来源于人们发现了影区存在。固体内核的发现者是丹麦地震学家英格·莱曼。\n• 为什么核幔边界叫古登堡面而不是奥尔德姆面:\n• 古登堡利用了反射震相。\n• 古登堡利用了更丰富的地震记录。\n• 古登堡更精确地计算了地核深度。\n• 应用地震波去透视地球内部首先要研究地震图。\n• 上地幔(410 km以上)、过渡层(410 ~ 670 km之间)及下地幔(670 km以下)。\n• 古登堡教授拥有更丰富的地震记录,得出了更精确的核介面深度估计,首次估计出地核深度为2900 km。\n• 地球内核是固体,最硬。地球外核是液态的,故横波不能通过外核。\n• 壳幔介面是莫霍面(M介面),幔核介面是古登堡面(G介面)。\n• 反演不一定准确。\n\n### 第5章 地震机制\n\n• 破裂面扩展速度不会超过P波速度。\n• 地震效率7.5% ~ 15%。\n• 说明:地震效率是指一次地震中地震波释放的能量在整个应变能中所占的比例,其值等于地震波能量除以地震能。\n• 弹性回跳理论只是一种假说,而非事实。\n• 说明:弹性回跳理论的主要论点:岩石体破裂是由于相对位移产生的应变超过岩石强度;这种相对位移是在一个比较长的时期内逐渐达到最大值的;地震时发生的唯一物质移动是破裂面两边的物质向减少弹性应变的方向突然发生弹性回跳;地震引起的振动源于破裂面;地震时释放的能量在岩石破裂前是以弹性应变能的形式储存在岩石中的。\n• 环太平洋地震带集中了全球80%的浅震、90%的中源地震以及全部深震。\n• 92%的地震发生在地壳中,8%发生在地幔上部,其上半部分多于下半部分。\n• 地震学为板块构造学说提供三方面的证据:\n• 天然地震的空间位置,可以勾画板块的边界。\n• 震源机制解,可以确定板块活动的力学性质。\n• 地震测深所得深度速度分布,可以给出板块运动的物理条件。\n• 全球性的地震带有三个:环太平洋地震带、阿尔卑斯-喜马拉雅地震带(亚欧地震带)和海岭地震带(大洋中脊地震带)。\n• 地震较多的国家:日本、意大利、智利、秘鲁、土耳其。\n• 我国地震较多的省级行政区:四川、云南、甘肃、新疆、西藏、台湾。\n• 地震按来源分类:\n• 天然地震:构造、火山、陷落。\n• 人工:工业爆破、地下核爆。\n• P波初动一直被用来确定震源机制解。爆炸产生的P波垂直向初动都是向上的,初动在震源球上无四象限分布特征,沙滩球全黑;正断层中间白,逆断层中间黑。\n• 断层是岩石破裂面的相互移动,地震沿断层发生。断层面几何与应力相关。地震的震源机制解是断层作用类型的图示描述。虽然断层类型可以由地震波初动确定,但不能确定哪一个是真正的断层面。有两种可能:真平面-断层面;假平面-辅助面。\n• 人沿走向看去,断层上盘在右,走向用正北顺时针量至走向方向的角度来表示。\n• 判断走滑断层左旋和右旋的方式:如果一个观察者站在断层的一侧,面向断层,另一边的岩块向他左方滑动,那它就叫左滑(左旋)。或者说,从上往下看,顺时针是右旋,逆时针是左旋。\n• 地震波能量和震级的通用关系为:\n$\\lg E = 11.8 + 1.5M.$\n\n### 第6章 地震仪及地震基本参数的测定\n\n• 三角测量法:通过直接的三角测量发现震中的位置。\n• 里氏震级$M_{\\text{L}}$是最大地震波振幅以10为底的对数。\n• 伍德-安德森的特殊地震仪记录到的振幅测量精度达到1 μm。(感谢@mike.frank提醒)\n\n### 第7章 地震预报\n\n• 地震灾害具有某种周期性。\n• 地震预报不等于地震预测。地震预测的精度差,地震预报要求三要素(时间、地点、震级大小)。\n\n### 第8章 宏观地震学\n\n• 震级和烈度的主要区别:\n• 震级是微观标准,而烈度是宏观标准。\n• 震级唯一,而烈度不唯一。\n• 某地的基本烈度是该地475年一遇的地震烈度。\n\n### 第9章 勘探地震学\n\n• 石油勘探的地球物理方法(简称“物探”):重力勘探、磁性勘探、电法勘探、地震勘探。\n• 说明:物探法主要利用各种物探仪器记录到来自地下的多种信息,然后对底下的构造和岩性特性做出预测,是间接探测方法,勘探范围深、效率高。\n• 重力勘探:利用岩石密度的差别在地面上测量重力变化。磁性勘探:利用岩石磁性的差别在地面上测量地磁场的变化。电法勘探:利用岩石电阻率的差别在地面上测量电场的变化。地震勘探:利用岩石波阻抗的差别在地面上记录地震波场的变化。\n• 地震勘探精度高、分辨率高、探测深度大,应用最为广泛,占97%。\n• “怪坡”是假的。\n• 说明:所谓“怪坡”是指物体可以自行上坡的奇异现象。\n• 为什么在求取地下构造信息时,以反射波取代折射波?\n• 折射波在地质条件复杂的情况下, 容易导致解释错误。\n• 说明:约束条件少,解析解数目多。\n• 反射波信噪⽐⾼,易辨识。\n• 地震资料解释的成功率不高,约为25%。\n• 说明:实际应用中应综合前人已经做出的成果、钻井的资料、重力数据、地磁数据、地质资料等来进行解释。\n\n### 第10章 海啸\n\n• 浅水波:用$h$代表海水的深度,$\\lambda$代表波长,则$\\lambda \\gg h$的这种具有非常长的波长的重力波就叫做潜水波。\n• 浅水波的传播速度只与海水深度有关,有$v = \\sqrt{gh}$,其中:$v$为波的传播速度,$g$为重力加速度,$h$为海水深度。\n• 海啸的波长约100 miles,传播速度约500 miles/h。\n• 计算题:如,计算浅水波从$A$点传播到$D$点所用的时间。\n\n$v^2 = gh.$\n\n$2v \\cfrac {\\mathrm dv}{\\mathrm dt} = g \\cfrac {\\mathrm dh}{\\mathrm dt},$\n\n$\\cfrac {\\mathrm dh}{\\mathrm dx} = \\tan \\theta,$\n\n$2v \\cfrac {\\mathrm dv}{\\mathrm dt} = g \\cfrac {\\mathrm dh}{\\mathrm dx}\\cfrac {\\mathrm dx}{\\mathrm dt} = g \\tan \\theta \\cdot v,$\n\n$\\cfrac {\\mathrm dv}{\\mathrm dt} = \\cfrac {g \\tan \\theta} {2},$\n\n### 讨论课\n\n• 中国古代木质结构建筑的抗震原理:柔性框架、台基隔震、斗拱擎托、榫卯连接。\n• 抗震要求:小震不坏、中震可修、大震不倒。\n• 地震预警存在一些局限。\n• 汶川大地震的形成是逆冲型地震,右旋。青藏高原往东北冲,四川盆地往西南冲。\n• 海啸与地震的关系:\n• 破坏性海啸多发生在地震带上。\n• 震中距海岸越远,海啸滞后于地震的时间越长。\n• (海啸强度)取决于地震变形区上覆水体的强度、震向快速位移量和变形区面积。\n• 破坏性海啸需要有大的水体被扰动。\n\n## 课程作业\n\n### 1. 直达波、反射波和首波\n\n##### 提示\n\n$T_1 = \\cfrac {X} {v_1},$\n\n$T_2 = \\cfrac {X - 2h\\tan\\theta_c} {v_2} + \\cfrac {2h~/ \\cos\\theta_c} {v_1},$\n\n##### 解答\n\n$T_1 = \\cfrac {X} {v_1}.$\n\n$T_{2,~1} = \\cfrac {2h / \\cos\\theta_c} {v_1},$\n\n$T_{2,~2} = \\cfrac {X - 2h\\tan\\theta_c} {v_2},$\n\n$\\sin\\theta_c = \\cfrac {v_1}{v_2},~\\cos\\theta_c = \\sqrt{\\cfrac {v_2^2 - v_1^2} {v_2^2}},$\n\n$T_2 = \\cfrac {X - 2h\\tan\\theta_c} {v_2} + \\cfrac {2h~/ \\cos\\theta_c} {v_1}.$\n\n$X \\cfrac {v_2 - v_1}{v_1v_2} \\ge 2H \\cfrac {v_2 - v_1 \\sin\\theta_c}{v_1v_2\\cos\\theta_c},$\n\n$X_M = 2H \\sqrt {\\cfrac {v_2 + v_1} {v_2 - v_1}}.$\n\n### 2. 弹性波在介面上的反、透射\n\n##### 题干\n\n$\\cfrac {\\sin\\theta_{\\alpha1}} {v_{\\alpha1}} = \\cfrac {\\sin\\theta_{\\beta1}} {v_{\\beta1}} = \\cfrac {\\sin\\theta_{\\alpha2}} {v_{\\alpha2}} = \\cfrac {\\sin\\theta_{\\beta2}} {v_{\\beta2}}.$\n\n(题图见\n\n##### 提示\n\n$t = \\cfrac {\\sqrt {h^2 + x^2}}{v_{\\alpha1}} + \\cfrac{\\sqrt{r^2 + (L - x)^2}}{v_{\\beta1}}.$\n\n##### 解答\n\n$t = \\cfrac {\\sqrt {h^2 + x^2}}{v_{\\alpha1}} + \\cfrac{\\sqrt{r^2 + (L - x)^2}}{v_{\\beta1}}.$\n\n$\\cfrac {\\mathrm dt}{\\mathrm dx} = \\cfrac {x}{v_{\\alpha1}\\sqrt{h^2 + x^2}} - \\cfrac {L - x}{v_{\\alpha2}\\sqrt{r^2 + (L - x)^2}},$\n\n$\\cfrac {x}{\\sqrt{h^2 + x^2}} = \\sin\\theta_{\\alpha1}, ~ \\cfrac {L - x}{\\sqrt{r^2 + (L - x)^2}} = \\sin\\theta_{\\alpha2}.$\n\n$\\cfrac {\\sin\\theta_{\\alpha1}} {v_{\\alpha1}} - \\cfrac {\\sin\\theta_{\\alpha2}} {v_{\\alpha2}} = 0,$\n\n$\\cfrac {\\sin\\theta_{\\alpha1}} {v_{\\alpha1}} = \\cfrac {\\sin\\theta_{\\alpha2}} {v_{\\alpha2}}.$\n\n## 网络作业\n\n### 问题1\n\n##### 解答\n\n(10 km, 10 km)。\n\n$t = s \\left ( \\cfrac {1} {v_\\mathrm{P}} - \\cfrac {1} {v_\\mathrm{S}} \\right ).$\n\n$s = t \\cfrac {v_\\mathrm{S} - v_\\mathrm{P}} {v_\\mathrm{S} v_\\mathrm{P}}.$\n\n$\\cfrac {v_\\mathrm{S} - v_\\mathrm{P}} {v_\\mathrm{S} v_\\mathrm{P}} = \\pu{20 m/s}.$\n\n### 问题2\n\n##### 解答\n\n1000。\n\n《地震概论》第76页,地震波能量和震级的通用关系为:\n\n$\\lg E = 11.8 + 1.5M.$\n\n(感谢@mike.frank提醒)\n\n《地震概论》教材第77页。\n\n4。\n\n### 问题5\n\n##### 解答\n\nP波上下振动,先到达;S波左右振动,后到达。\n\nXzonn\n\n2020年1月7日\n\n《地震概论》成绩公布后于燕园"
] | [
null
] | {"ft_lang_label":"__label__zh","ft_lang_prob":0.86872053,"math_prob":0.999545,"size":8766,"snap":"2023-14-2023-23","text_gpt3_token_len":7978,"char_repetition_ratio":0.13729742,"word_repetition_ratio":0.051181104,"special_character_ratio":0.3574036,"punctuation_ratio":0.039432175,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9988932,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-03-27T05:05:38Z\",\"WARC-Record-ID\":\"<urn:uuid:137f1bcf-fd66-4bd5-90ab-a30c8e9c43ef>\",\"Content-Length\":\"49838\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:a3d968a0-e063-409d-8c72-f791c05ce706>\",\"WARC-Concurrent-To\":\"<urn:uuid:8628e14f-6b84-44d6-86fa-fa00ded19fc5>\",\"WARC-IP-Address\":\"185.199.110.153\",\"WARC-Target-URI\":\"https://xzonn.top/posts/Introduction-to-Seismology-Notes.html\",\"WARC-Payload-Digest\":\"sha1:Z4KKCZSQXJYSTO4XZJGXIKFNLKEBOYQD\",\"WARC-Block-Digest\":\"sha1:L7SRL6J7PG2I3MEHIGDDXMOVDKDRSZED\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-14/CC-MAIN-2023-14_segments_1679296946637.95_warc_CC-MAIN-20230327025922-20230327055922-00204.warc.gz\"}"} |
https://dr-adorio-adventures.blogspot.com/2010/05/determinants-trace-ranknorms.html | [
"## Saturday, May 22, 2010\n\n### HP 50G Determinants, Trace, Rank,Norms, Characteristic Polynomials, Eigen(Values|Vectors)\n\nLet M be a matrix. In the HP 50G, various functions are available to obtain properties of the matrix.\n\n det(M) determinant trace(M) trace rank(M) rank cond(M) condition number abs(M) Frobenius norm, $$\\sqrt{\\sum x_{i,j}^2}$$ pcar(M) characyeristic polynomial if M is square. eigvl(M) eigenvalues of M egv(M) eigenvectors and eigenvaluesof M srad(M) spectral radius = abs. value of largest eigenvalue of M. rnrm(M) row norm is the maximum of all sums of the absolute values of elements in each row. snrm spectral norm of M, or largest singular value of M. cnrm column norm is the maximum of all sums of the absolute values of elements in each column.\n\nLet us apply this to a random 3 x 3 matrix by calling the ranm function.\nranm({3,3}) sto M\nThis stored in my hp 50g the following matrix:\n\n$\\begin{array}{lll} -7 & 4 & -6 \\\\ -4 &-1 & 4 \\\\ 1 & 8 & 5 \\\\ \\end{array}$\n\nThe outputs for the functions (except for egvl) is listed in the following:\n• trace(M)\n• -3\n• rank(M)\n• 3\n• cond(M)\n• 4.35304990758\n• abs(M)\n• 14.9666295471\n• pcar(M)\n• $$x^{3.} + 3.\\cdot x^{2.} + -43., \\cdot X - 541.$$\n• egv(M)\n• $$\\{[[(1., 0),(1.,0), (-..250470319529,0.)] [(.217566565083,..5991855957363),(.2217566565093,-.5991757363),.50919544707,0.)] [(-.036364186761, -.456410356317),(-.036364186761,.456410356317),(1.,0.)]][(-5.911548611906, 5.135116596735), (-5.91154861906, -513516596735), (8.82309723813,0.)]\\}$$\n• 8.82309723813\n• rnrm(M)\n• 17\n• snrm(M)\n• 10.1517717328\n• cnrm\n• 15\n\nNotes:\n\nMay 22\n\n1. Wondering why the Latex plugin refuses to display the formula for an array.\n2. How to split a long Latex output? Seems Wordpress is better in this regard."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.5270182,"math_prob":0.9985687,"size":1569,"snap":"2021-31-2021-39","text_gpt3_token_len":580,"char_repetition_ratio":0.08498403,"word_repetition_ratio":0.094827585,"special_character_ratio":0.48757172,"punctuation_ratio":0.21661721,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9978458,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-08-04T19:34:39Z\",\"WARC-Record-ID\":\"<urn:uuid:6a39c0be-8a2c-4479-8d96-3255a4fc1a72>\",\"Content-Length\":\"82208\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:4f6c7998-c602-48ce-b4aa-039254d5b7df>\",\"WARC-Concurrent-To\":\"<urn:uuid:9406be69-beaa-419c-9073-c9903a245a9e>\",\"WARC-IP-Address\":\"142.251.33.193\",\"WARC-Target-URI\":\"https://dr-adorio-adventures.blogspot.com/2010/05/determinants-trace-ranknorms.html\",\"WARC-Payload-Digest\":\"sha1:7S3NGH2ZKM2EGMQLQ53XSZ4CENHFTQ6J\",\"WARC-Block-Digest\":\"sha1:SD75455D7SFBMEQQXWS5Q6XJ3TUOZ7YM\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-31/CC-MAIN-2021-31_segments_1627046154897.82_warc_CC-MAIN-20210804174229-20210804204229-00030.warc.gz\"}"} |
https://www.meccanismocomplesso.org/en/circular-dendrograms-3/ | [
"# Circular Dendrograms\n\n## Introduction\n\nIt’s been several months since I wrote a series of articles that treated the development of dendrograms through the use of the JavaScript library D3. However, I recently received a series of requests to deepen the topic, which apparently seems to have enjoyed a fairly successful.\n\nIn this regard, I decided to start writing articles on this beautiful bookcase, dealing one after another with a lot of topics and representations. To start over, I decided to conclude the topic of dendrograms with a fifth article.\n\nIf you are interested in deepening the topic, within the book Beginning JavaScript Charts are presented various methodologies of data acquisition, from extracting data from a table of a database (via PHP), reading and parsing data Contained in an external file. It also explains in detail the JSON format, and thanks to many examples it is shown how practical it is to use it on these occasions.\n\nFor anyone who wants to start from previous articles…\n\n## The starting Code\n\nLet’s start from the code dendrogram01.html in the article how to make a dendrogram with the library D3 (part 2) that produced the following dendrogram.\n\nFor convenience, I propose here the JavaScript code that generates it:\n\n``````var width = 600;\nvar height = 500;\nvar cluster = d3.layout.cluster()\n.size([height, width-200]);\nvar diagonal = d3.svg.diagonal()\n.projection (function(d) { return [d.y, d.x];});\nvar svg = d3.select(\"body\").append(\"svg\")\n.attr(\"width\",width)\n.attr(\"height\",height)\n.append(\"g\")\n.attr(\"transform\",\"translate(100,0)\");\n\nd3.json(\"dendrogram01.json\", function(error, root){\nvar nodes = cluster.nodes(root);\n.enter().append(\"path\")\n.attr(\"d\", diagonal);\nvar node = svg.selectAll(\".node\")\n.data(nodes)\n.enter().append(\"g\")\n.attr(\"class\",\"node\")\n.attr(\"transform\", function(d) { return \"translate(\" + d.y + \",\" + d.x + \")\"; });\nnode.append(\"circle\")\n.attr(\"r\", 4.5);\nnode.append(\"text\")\n.attr(\"dx\", function(d) { return d.children ? -8 : 8; })\n.attr(\"dy\", 3)\n.style(\"text-anchor\", function(d) { return d.children ? \"end\" : \"start\"; })\n.text( function(d){ return d.name;});\n});``````\n\nThese are the CSS definitions:\n\n``````.node circle {\nfill: #fff;\nstroke: steelblue;\nstroke-width: 1.5px;\n}\n.node {\nfont: 20px sans-serif;\n}\nfill: none;\nstroke: #ccc;\nstroke-width: 1.5px;\n}``````\n\nAnd this is the contents of the DENDROGRAM02. Json file that consists of the data structure.\n\n``````{ \"name\": \"root\",\n\"children\": [\n{ \"name\": \"parent A\",\n\"children\": [\n{\"name\": \"child A1\"},\n{\"name\": \"child A2\"},\n{\"name\": \"child A3\"}\n]\n},{ \"name\": \"parent B\",\n\"children\": [\n{\"name\": \"child B1\"},\n{\"name\": \"child B2\"}\n]\n} ]\n}``````\n\nIn the course of the article we are going to modify this code in order to obtain a circular dendrogram.\n\n## Change the Code\n\nSince we are talking about a circular representation on which to radially distribute the nodes of the Dendrogram, it will be necessary to express the dimensions of the representation through the diameter, instead of the classical height and width.\n\nThen you delete the variables width and height (in the snippet are commented for convenience). You then define a radius variable, which will correspond to the extension of the drawing area. You also define the margin variables, which defines the margin to be interposing between the drawing area and the Dendrogram itself. and the variable angle, which represents the cover angle of the circular dendrogram. The value 360° expresses a lap angle and then the terminal nodes of the Dendrogram will be distributed along the entire circumference. A lesser value (for example of 120°) Porterebbee the Dendrogram representation as a fan (see Fig. 4).\n\n``````//var width = 600;\n//var height = 500;\nvar margin = 120;\nvar angle = 360; ``````\n\nAs a result, the cluster data structure must also be changed accordingly. Similarly also d3.svg.diagonal must be modified to be considered radially.\n\n``````var cluster = d3.layout.cluster()\n//.size([height, width-200]);\n//var diagonal = d3.svg.diagonal()\n// .projection (function(d) { return [d.y, d.x];});\n.projection (function(d) { return [d.y, d.x / 180* Math.PI];});``````\n\nThe definition of the drawing area must also be changed.\n\n``````var svg = d3.select(\"body\").append(\"svg\")\n//.attr(\"width\",width)\n//.attr(\"height\",height)\n.append(\"g\")\n//.attr(\"transform\",\"translate(100,0)\");\n\nAs far as the dendrogram representation is concerned, only the line expressing the svg.transform() of the nodes must be modified.\n\n``````var node = svg.selectAll(\".node\")\n.data(nodes)\n.enter().append(\"g\")\n.attr(\"class\",\"node\")\n.attr(\"transform\", function(d) { return \"rotate(\" + (d.x - 90) + \")translate(\" + d.y + \")\"; });\n//.attr(\"transform\", function(d) { return \"translate(\" + d.y + \",\" + d.x + \")\"; });``````\n\nNow all the changes to be made to the code have been executed. Here is the complete code expressed here for convenience.\n\n``````var radius = 350;\nvar margin = 120;\nvar angle = 120;\nvar cluster = d3.layout.cluster()\n.projection (function(d) { return [d.y, d.x / 180* Math.PI];}); var svg = d3.select(\"body\").append(\"svg\")\n.append(\"g\")\n\nd3.json(\"dendrogram02.json\", function(error, root){\nvar nodes = cluster.nodes(root);\n.enter().append(\"path\")\n.attr(\"d\", diagonal);\nvar node = svg.selectAll(\".node\")\n.data(nodes)\n.enter().append(\"g\")\n.attr(\"class\",\"node\")\n.attr(\"transform\", function(d) { return \"rotate(\" + (d.x - 90) + \")translate(\" + d.y + \")\"; });\nnode.append(\"circle\")\n.attr(\"r\", 4.5);\nnode.append(\"text\")\n.attr(\"dy\", \".31em\")\n.attr(\"text-anchor\", function(d) { return d.x < 180 ? \"start\" : \"end\"; })\n.attr(\"transform\", function(d) { return d.x < 180 ? \"translate(8)\" : \"rotate(180)translate(-8)\"; })\n.text(function(d) { return d.name; });\n});``````\n\nBy loading the page from the browser, we get the following representation:\n\nWe certainly can’t say that we got a nice circular dendrogram. This is because the Dendrogram is too simple in its structure. We make the structure more complex, going to add more elements to the structure contained in the JSON file that we used.\n\n``````{ \"name\": \"root\",\n\"children\": [ {\n\"name\": \"parent A\",\n\"children\": [\n{\"name\": \"child A1\"},\n{\"name\": \"child A2\"},\n{\"name\": \"child A3\"},\n{\"name\": \"child A4\"},\n{\"name\": \"child A5\"},\n{\"name\": \"child A6\"}\n]\n},{\n\"name\": \"parent B\",\n\"children\": [\n{\"name\": \"child B1\"},\n{\"name\": \"child B2\"},\n{\"name\": \"child B3\"},\n{\"name\": \"child B4\"},\n{\"name\": \"child B5\"},\n{\"name\": \"child B6\"},\n{\"name\": \"child B7\"},\n{\"name\": \"child B8\"}\n]\n},{\n\"name\": \"parent C\",\n\"children\": [\n{\"name\": \"child C1\"},\n{\"name\": \"child C2\"},\n{\"name\": \"child C3\"},\n{\"name\": \"child C4\"}\n]\n}]\n}``````\n\nNow if we reupload the page from our browser, we get:\n\nSo now things seem to work very well. Now the circular and uniform distribution of the dendrogram leaves along the circular perimeter is quite evident.\n\nSo far we have worked with dendrograms at two levels beyond the root (n = 2). Actually manageable levels can be many more. So far so good, as long as the diameter of the circular dendrogram will be large enough to correctly display all the elements.\n\n## Manage different hierarchical levels\n\nIn fact a borderline case that we have not considered so far, is for example to consider dendrograms with branches that have more levels than others.\n\nLet’s take an example:\n\n``````{ \"name\": \"root\",\n\"children\": [ {\n\"name\": \"parent A\",\n\"children\": [\n{\"name\": \"child A1\",\n\"children\": [\n{\"name\": \"child A1-1\"},\n{\"name\": \"child A1-2\"},\n{\"name\": \"child A1-3\"},\n{\"name\": \"child A1-4\"},\n{\"name\": \"child A1-5\"},\n{\"name\": \"child A1-6\"},\n{\"name\": \"child A1-7\"}\n] },\n{\"name\": \"child A2\",\n\"children\": [\n{\"name\": \"child A2-1\"},\n{\"name\": \"child A2-2\"},\n{\"name\": \"child A2-3\"}\n] },\n{\"name\": \"child A3\",\n\"children\": [\n{\"name\": \"child A3-1\"},\n{\"name\": \"child A3-2\"},\n{\"name\": \"child A3-3\"}\n] },\n{\"name\": \"child A4\",\n\"children\": [\n{\"name\": \"child A4-1\"},\n{\"name\": \"child A4-2\"},\n{\"name\": \"child A4-3\"}\n] },\n{\"name\": \"child A5\",\n\"children\": [] },\n{\"name\": \"child A6\",\n\"children\": [\n{\"name\": \"child A6-1\"},\n{\"name\": \"child A6-2\"},\n{\"name\": \"child A6-3\"}\n] }]\n},{\n\"name\": \"parent B\",\n\"children\": [\n{\"name\": \"child B1\"},\n{\"name\": \"child B2\"},\n{\"name\": \"child B3\"},\n{\"name\": \"child B4\"},\n{\"name\": \"child B5\"},\n{\"name\": \"child B6\"},\n{\"name\": \"child B7\"},\n{\"name\": \"child B8\"}\n]\n},{\n\"name\": \"parent C\",\n\"children\": [\n{\"name\": \"child C1\"},\n{\"name\": \"child C2\"},\n{\"name\": \"child C3\"},\n{\"name\": \"child C4\"}\n]\n}] }``````\n\nIf we launch the page again, we will get this…\n\nIf we look at the Dendrogram produced, we will notice immediately that the elements of a lower level (n = 4) have been placed at the same level as those with n = 3 along the outer perimeter of the circular dendrogram.\n\nOn the net there are often dendrograms expressed in this way, since the attention is centered on the terminal elements of the dendrogram (leaves), independently of their hierarchical level of belonging. In fact, if you want hierarchical information to be maintained by respecting the hierarchies of the various levels correctly, you need to replace the d3.layout.cluster with d3.layout.tree.\n\n``````var tree = d3.layout.tree()\n.size([360, diameter / 2 - 120]);\n...\nd3.json(\"dendrogram04.json\", function(error, root){\nvar nodes = tree.nodes(root);"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6759073,"math_prob":0.89151174,"size":10139,"snap":"2022-40-2023-06","text_gpt3_token_len":2687,"char_repetition_ratio":0.20374939,"word_repetition_ratio":0.22356091,"special_character_ratio":0.33247855,"punctuation_ratio":0.24795377,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.96189976,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-01-29T21:43:43Z\",\"WARC-Record-ID\":\"<urn:uuid:51dec80b-da41-4311-9f15-699a6cdf0299>\",\"Content-Length\":\"86037\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:cc968572-d892-4deb-80d7-bc920eb5d9e6>\",\"WARC-Concurrent-To\":\"<urn:uuid:6d26f365-63bf-4d64-8933-9e47eb0baf19>\",\"WARC-IP-Address\":\"89.46.106.87\",\"WARC-Target-URI\":\"https://www.meccanismocomplesso.org/en/circular-dendrograms-3/\",\"WARC-Payload-Digest\":\"sha1:BVOHKEXRQYM5JN2J6KJ3QL4QYZ2NONY6\",\"WARC-Block-Digest\":\"sha1:IRMIQR6DCRLYMS6LKQGXEY2VRSUBWALM\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-06/CC-MAIN-2023-06_segments_1674764499768.15_warc_CC-MAIN-20230129211612-20230130001612-00787.warc.gz\"}"} |
https://books.google.com.jm/books?qtid=297e7854&lr=&id=Qw03AAAAMAAJ&sa=N&start=80 | [
"Books Books",
null,
"Equal parallelograms which have one angle of the one equal to one angle of the other, have their sides about the equal angles reciprocally proportional ; and parallelograms that have one angle of the one equal to one angle of the other, and their sides...",
null,
"Euclid's Elements: Or, Second Lessons in Geometry,in the Order of Simson's ... - Page 94\nby Dennis M'Curdy - 1846 - 138 pages",
null,
"## Sandhurst Mathematical Papers for Admission Into the Royal Military College ...\n\nRoyal Military College, Sandhurst - Mathematics - 1890 - 144 pages\n...the inscribed circle, construct it. 6. Equal triangles which have one angle of the one equal to one angle of the other, have their sides about the equal angles reciprocally proportional. Construct an isosceles triangle equal in area to a given scalene triangle, and having a common vertical...",
null,
"## The Harpur Euclid: An Edition of Euclid's Elements\n\nEdward Mann Langley, W. Seys Phillips - 1890 - 538 pages\n...first. PROPOSITION 14. THEOREM. (1) Equal parallelograms which have one angle of the one equal to one angle of the other have their sides about the equal angles reciprocally proportional. (2) Conversely : — Parallelograms which have one angle of the one equal to one angle of the other...",
null,
"## College Algebra\n\nWebster Wells - Algebra - 1890 - 560 pages\n...similar, as also are the triangles EOG and COD ; for, by Geometry, two triangles are similar when they have an angle of one equal to an angle of the other, and the including sides proportional. Then the figure OFEG is similar to OBDC, and hence OFEG is a...",
null,
"## Annual Report of the Chief Superintendent of Education\n\n1891 - 720 pages\n...are to one another as their bases. 6. Equal triangles which have one angle of the one equal to one angle of the other, have their sides about the equal angles reciprocally proportional. NB — Female candidates will receive credit for any correct work ou the last two of the foregoing...",
null,
"## The Elements of Euclid: Viz. the First Six Books, Together with the Eleventh ...\n\nEuclid - Geometry - 1892 - 460 pages\n...THEOREM. • Parallelograms which are equal in area, and which have one angle of the one equal to one angle of the other, have their sides about the equal angles reciprocally proportional: Conversely, parallelograms which have one angle of the one equal to one angle of the other, and the...",
null,
"## An Examination Manual in Plane Geometry\n\nGeorge Albert Wentworth, George Anthony Hill - Geometry - 1894 - 150 pages\n...onehalf of it. 4. The two tangents to a circle from an outside point are equal. 5. If two triangles have an angle of one equal to an angle of the other they are to each other as the product of the sides including the equal angles. 6. From the obtuse angle...",
null,
"## Calendar, for the Year ...\n\n1895 - 142 pages\n...construct it. 4. Triangles which are equal in area, and which have one angle of the one equal to one angle of the other, have their sides about the equal angles reciprocally proportional. Describe an isosceles triangle equal in area to a given triangle and having an angle equal to one of...",
null,
"## Elements of Geometry, Volume 1\n\nAndrew Wheeler Phillips, Irving Fisher - Geometry, Modern - 1896 - 276 pages\n...sides by one of its other sides, an incorrect method. PROPOSITION VIII. THEOREM 398. The areas of two triangles which have an angle of one equal to an angle of the other are to each other as the products of the sides including those angles. GIVEN — the triangles ADE...",
null,
"## Elements of Geometry\n\nAndrew Wheeler Phillips, Irving Fisher - Geometry - 1896 - 564 pages\n...sides by one of its other sides, an incorrect method. PROPOSITION VIII. THEOREM 308. The areas of two triangles which have an angle of one equal to an angle of the other are to each other as the products of the sides including those angles. GIVEN — the triangles ADR...",
null,
""
] | [
null,
"https://books.google.com.jm/googlebooks/quote_l.gif",
null,
"https://books.google.com.jm/googlebooks/quote_r.gif",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null,
"https://books.google.com.jm/books/content",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9134449,"math_prob":0.97329795,"size":3325,"snap":"2023-14-2023-23","text_gpt3_token_len":791,"char_repetition_ratio":0.22583559,"word_repetition_ratio":0.47028863,"special_character_ratio":0.25353384,"punctuation_ratio":0.17836258,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99273175,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-06T22:27:40Z\",\"WARC-Record-ID\":\"<urn:uuid:9d477365-584d-49d2-94ac-88d42f838f03>\",\"Content-Length\":\"32889\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:2a041e98-bd8d-4562-af9d-38cb58d75fcf>\",\"WARC-Concurrent-To\":\"<urn:uuid:ccd83ae6-c2ed-4cf6-bff4-fd72ace87837>\",\"WARC-IP-Address\":\"142.251.111.102\",\"WARC-Target-URI\":\"https://books.google.com.jm/books?qtid=297e7854&lr=&id=Qw03AAAAMAAJ&sa=N&start=80\",\"WARC-Payload-Digest\":\"sha1:KRH6SHJXIKCZCMXNJDLTPEZWIXUYWEQJ\",\"WARC-Block-Digest\":\"sha1:LN7HIL3INLQYRXGXKR7EP6PIZH34KDAA\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224653183.5_warc_CC-MAIN-20230606214755-20230607004755-00424.warc.gz\"}"} |
https://newonlinecourses.science.psu.edu/stat414/node/29/ | [
"Permutations",
null,
"Printer-friendly version",
null,
"Example\n\nHow many ways can four people fill four executive positions?\n\nSolution. For the sake of concreteness, let's name the four people Tom, Rick, Harry, and Mary, and the four executive positions President, Vice President, Treasurer and Secretary. I think you'll agree that the Multiplication Principle yields a straightforward solution to this problem. If we fill the President position first, there are 4 possible people (Tom, Rick, Harry, and Mary). Let's suppose Mary is named the President. Then, since Mary can't fill more than one position at a time, when we fill the Vice President position, there are only 3 possible people (Tom, Rick, and Harry). If Tom is named the Vice President, when we fill the Treasurer position, there are only 2 possible people (Rick and Harry). Finally, if Rick is named Treasurer, when we fill the Secretary position, there is only 1 possible person (Harry). Putting all of this together, the Multiplication Principle tells us that there are:\n\n4 × 3 × 2 × 1\n\nor 24 possible ways to fill the four positions.\n\nAlright, alright now... enough of these kinds of examples, eh?! The main point of this example is not to see yet another application of the Multiplication Principle, but rather to introduce the counting of the number of permutations as a generalization of the Multiplication Principle.\n\nA Generalization of the Multiplication Principle\n\nSuppose there are n positions to be filled with n different objects, in which there are:\n\n• n choices for the 1st position\n• n − 1 choices for the 2nd position\n• n − 2 choices for the 3rd position\n• ... and ...\n• 1 choice for the last position\n\nThe Multiplication Principle tells us there are then in general:\n\nn × (n − 1) × (n − 2) × ... × 1 = n!\n\nways of filling the n positions. The symbol n! is read as \"n-factorial,\" and by definition 0! equals 1.\n\n Definition. A permutation of n objects is an ordered arrangement of the n objects.\n\nWe often call such a permutation a “permutation of n objects taken n at a time,” and denote it as nPn. That is:\n\nnPn = n × (n − 1) × (n − 2) × ... × 1 = n!\n\nNot that it really matters in this situation (since they are the same), but the first subscripted n represents the number of objects you are wanting to arrange, while the second subscripted n represents the number of positions you have for the objects to fill.",
null,
"Example\n\nThe draft lottery of 1969 for military service ranked all 366 days (Jan 1, Jan 2, ..., Feb 29, ..., Dec 31) of the year. The men who were eligible for service whose birthday was selected first were the first to be drafted. Those whose birthday was selected second were the second to be drafted. And so on. How many possible ways can the 366 days be ranked?\n\nSolution. Well, we have 366 objects (days) and 366 positions (1st spot, 2nd spot, ... , 366th spot) to arrange them. Therefore, there are 366! (\"366 factorial\" ) ways of ranking the 366 possible birthdays of the eligible men.",
null,
"What is the probability that your birthday would be ranked first?\n\n(After you've thought of how you'd solve our problem, click on the icon to reveal one possible solution.)",
null,
"Example\n\nIn how many ways can 7 different books be arranged on a shelf?\n\nSolution. We could use the Multiplication Principle to solve this problem. We have seven positions that we can fill with seven books. There are 7 possible books for the first position, 6 possible books for the second position, five possible books for the third position, and so on. The Multiplication Principle tells us therefore that the books can be arranged in:\n\n7 × 6 × 5 × 4 × 3 × 2 × 1\n\nor 5,040 ways. Alternatively, we can use the simple rule for counting permutations. That is, the number of ways to arrange 7 distinct objects is simply 7P= 7! = 5,040.\n\nExample\n\nWith 6 names in a bag, randomly select a name. How many ways can the 6 names be assigned to 6 job assignments? If we assume that each person can only be assigned to one job, then we must select (or sample) the names without replacement. That is, once we select a name, it is set aside and not returned to the bag.\n\n Definition. Sampling without replacement occurs when an object is not replaced after it has been selected.\n\nSolution. If we sample without replacement, the problem reduces to simply determining the number of ways the 6 names can be arranged. We have 6 objects taken 6 at a time, and hence the number of ways is 6! = 720 possible job assignments. In this case, each person is assigned to one and only one job.\n\nWhat if the 6 names were sampled with replacement? That is, once we select a name, it is returned to the bag.\n\n Definition. Sampling with replacement occurs when an object is selected and then replaced before the next object has been selected.\n\nSolution. If we sample with replacement, we have 6 choices for each of the 6 jobs. Applying the Multiplication Principle, there are:\n\n6 × 6 × 6 × 6 × 6 × 6 = 46,656\n\npossible job assignments. In this case, each person is allowed to perform more than one job. There's even the possibility that one (rather unlucky) person gets assigned to all six jobs!\n\nThe take-home message from this example is that you'll always want to ask yourself whether or not the problem involves sampling with or without replacement. Incidentally, it's not all that different from asking yourself whether or not replication is allowed. Right?",
null,
"Example\n\nOkay, let's throw a (small) wrench into our work. How many ways can 4 people fill 3 chairs?\n\nSolution. Again, for the sake of concreteness, let's name the four people Tom, Rick, Harry, and Mary and the chairs Left, Middle, and Right. If we fill the Left chair first, there are 4 possible people (Tom, Rick, Harry, and Mary). Let's suppose Tom is selected for the Left chair. Then, since Tom can't sit in more than one chair at a time, when we fill the Middle chair, there are only 3 possible people (Rick, Harry, and Mary). If Rick is selected for the Middle chair, when we fill the Right chair, there are only 2 possible people (Harry and Mary). Putting all of this together, the Multiplication Principle tells us that there are:\n\n4 × 3 × 2\n\nor 24 possible ways to fill the three chairs.\n\nOkay, okay! The main distinction between this example and the first example on this page is that the first example involves arranging all 4 people, whereas this example involves leaving one person out and arranging just 3 of the 4 people. This example allows us to introduce another generalization of the Multiplication Principle, namely the counting of the number of permutations of n objects taken r at a time, where rn.\n\nAnother Generalization of the Multiplication Principle\n\nSuppose there are r positions to be filled with different objects, in which there are:\n\n• n choices for the 1st position\n• n − 1 choices for the 2nd position\n• n − 2 choices for the 3rd position\n• ... and ...\n• n − (r − 1) choices for the last position\n\nThe Multiplication Principle tells us there are in general:\n\nn × (n − 1) × (n − 2) × ... × [n − (r − 1)]\n\nways of filling the r positions. We can easily show that, in general, this quantity equals:\n\n$\\dfrac{n!}{(n-r)!}$\n\nHere's how it works:\n\nAnd, formally:\n\n Definition. A permutation of n objects taken r at a time is an ordered arrangement of n different objects in r positions. The number of such permutations is: $_nP_r=\\dfrac{n!}{(n-r)!}$\n\nThe subscripted n represents the number of objects you are wanting to arrange, while the subscripted r represents the number of positions you have for the objects to fill.\n\nExample\n\nAn artist has 9 paintings. How many ways can he hang 4 paintings side-by-side on a gallery wall?"
] | [
null,
"https://newonlinecourses.science.psu.edu/stat414/sites/all/modules/print/icons/print_icon/index.gif",
null,
"https://newonlinecourses.science.psu.edu/stat414/sites/onlinecourses.science.psu.edu.stat414/files/lesson03/951815_mesa_con_sillas/index.jpg",
null,
"https://newonlinecourses.science.psu.edu/stat414/sites/onlinecourses.science.psu.edu.stat414/files/lesson03/1244833_plastic_toy_soldiers/index.jpg",
null,
"https://newonlinecourses.science.psu.edu/stat414/sites/onlinecourses.science.psu.edu.stat414/files/think_about_it_02/index.gif",
null,
"https://newonlinecourses.science.psu.edu/stat414/sites/onlinecourses.science.psu.edu.stat414/files/lesson03/477966_commerce_acts_books/index.jpg",
null,
"https://newonlinecourses.science.psu.edu/stat414/sites/onlinecourses.science.psu.edu.stat414/files/lesson03/1011699_chairs_in_park/index.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9245993,"math_prob":0.95105916,"size":7575,"snap":"2019-26-2019-30","text_gpt3_token_len":1807,"char_repetition_ratio":0.1409325,"word_repetition_ratio":0.23559445,"special_character_ratio":0.25016502,"punctuation_ratio":0.14600909,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.97801715,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12],"im_url_duplicate_count":[null,null,null,1,null,1,null,1,null,1,null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-06-18T03:23:05Z\",\"WARC-Record-ID\":\"<urn:uuid:2f74fd7b-20c5-4f7a-a80d-7a95f41876b9>\",\"Content-Length\":\"37620\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:3832e6d9-f971-48e0-9d90-14a51f134091>\",\"WARC-Concurrent-To\":\"<urn:uuid:a2d391d9-4d23-4807-ab5b-5ce647e5c6c4>\",\"WARC-IP-Address\":\"128.118.135.183\",\"WARC-Target-URI\":\"https://newonlinecourses.science.psu.edu/stat414/node/29/\",\"WARC-Payload-Digest\":\"sha1:CR277EBC3OSFLJ6GILLLGOWZLAFX4O4T\",\"WARC-Block-Digest\":\"sha1:QKVGMZKXP7SI26T45VF33W7OD4C577EQ\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-26/CC-MAIN-2019-26_segments_1560627998605.33_warc_CC-MAIN-20190618023245-20190618045245-00511.warc.gz\"}"} |
http://drorbn.net/index.php?title=06-240/Classnotes_For_Thursday,_September_21 | [
"# 06-240/Classnotes For Thursday, September 21\n\n## Force Vectors\n\nA force has a direction and a magnitude.\n\n1. There is a special force vector called 0.\n3. They can be multiplied by any scalar.\n\n#### Properties\n\n(convention:",
null,
"$x,y,z$ are vectors;",
null,
"$a,b,c$ are scalars)\n\n1.",
null,
"$x+y=y+x$\n2.",
null,
"$x+(y+z)=(x+y)+z \\$\n3.",
null,
"$x+0=x \\$\n4.",
null,
"$\\forall x\\; \\exists\\ y \\ \\mbox{ s.t. }x+y=0$\n5.",
null,
"$1\\cdot x=x \\$\n6.",
null,
"$a(bx)=(ab)x \\$\n7.",
null,
"$a(x+y)=ax+ay \\$\n8.",
null,
"$(a+b)x=ax+bx \\$\n##### Definition\n\nLet F be a field \"of scalars\". A vector space over F is a set V, of \"vectors\", along with two operations",
null,
"$+: V \\times V \\to V$",
null,
"$\\cdot: F \\times V \\to V \\mbox{, so that:}$\n1.",
null,
"$\\forall x,y \\in V\\ x+y=y+x$\n2.",
null,
"$\\forall x,y \\in V\\ x+(y+z)=(x+y)+z$\n3.",
null,
"$\\exists\\ 0 \\in V s.t.\\; \\forall x \\in V\\ x+0=x$\n4.",
null,
"$\\forall x \\in V\\; \\exists\\ y \\in V\\ s.t. \\ x+y=0$\n5.",
null,
"$1\\cdot x=x\\$\n6.",
null,
"$a(bx)=(ab)x\\$\n7.",
null,
"$a(x+y)=ax+ay\\$\n8.",
null,
"$\\forall x \\in V\\ ,\\forall a,b \\in F\\ (a+b)x=ax+bx$\n\n9.",
null,
"$x \\mapsto \\vert x\\vert \\in \\mathbb{R} \\ \\vert x+y\\vert \\le \\vert x\\vert+\\vert y\\vert$\n\n#### Examples\n\nEx.1.",
null,
"$F^n= \\lbrace(a_1,a_2,a_3,\\ldots,a_{n-1},a_n):\\forall i\\ a_i \\in F \\rbrace$",
null,
"$n \\in \\mathbb{Z}\\ , n \\ge 0$",
null,
"$x=(a_1,\\ldots,a_2)\\ y=(b_1,\\ldots, b_2)\\$",
null,
"$x+y:=(a_1+b_1,a_2+b_2,\\ldots,a_n+b_n)\\$",
null,
"$0_{F^n}=(0,\\ldots,0)$",
null,
"$a\\in F\\ ax=(aa_1,aa_2,\\ldots,aa_n)$",
null,
"$\\mbox{In } \\mathbb{Q}^3 \\ \\left( \\frac{3}{2},-2,7\\right)+\\left( \\frac{-3}{2}, \\frac{1}{3},240\\right)=\\left(0, \\frac{-5}{3},247\\right)$",
null,
"$7\\left( \\frac{1}{5},\\frac{1}{7},\\frac{1}{9}\\right)=\\left( \\frac{7}{5},1,\\frac{7}{9}\\right)$\nEx.2.",
null,
"$V=M_{m\\times n}(F)=\\left\\lbrace\\begin{pmatrix} a_{11} & \\cdots & a_{1n} \\\\ \\vdots & & \\vdots \\\\ a_{m1} & \\cdots & a_{mn}\\end{pmatrix}: a_{ij} \\in F \\right\\rbrace$",
null,
"$M_{3\\times 2}( \\mathbb{R})\\ni \\begin{pmatrix} 7 & -7 \\\\ \\pi & \\mathit{e} \\\\ -5 & 2 \\end{pmatrix}$",
null,
"$\\mbox{Addition by adding entry by entry:}$",
null,
"$M_{2\\times 2}\\ \\begin{pmatrix} a_{11} & a_{12} \\\\ a_{21} & a_{22} \\end{pmatrix}+\\begin{pmatrix} b_{11} & b_{12} \\\\ b_{21} & b_{22} \\end{pmatrix}=\\begin{pmatrix} {a_{11}+b_{11}} & {a_{12}+b_{12}} \\\\ {a_{21}+b_{21}} & {a_{22}+b_{22}} \\end{pmatrix}$",
null,
"$\\mbox{Multiplication by multiplying scalar c to all entries by M.}$",
null,
"$c\\cdot M_{2\\times 2}\\ \\begin{pmatrix} a_{11} & a_{12} \\\\ a_{21} & a_{22} \\end{pmatrix}=\\begin{pmatrix} c\\cdot a_{11} & c\\cdot a_{12} \\\\ c\\cdot a_{21} & c\\cdot a_{22} \\end{pmatrix}$",
null,
"$\\mbox{Zero matrix has all entries = 0:}$",
null,
"$0_{M_{m\\times n}}=\\begin{pmatrix} 0 & \\cdots & 0 \\\\ \\vdots & & \\vdots \\\\ 0 & \\cdots & 0\\end{pmatrix}$\nEx.3.",
null,
"$\\mathbb{C}$ form a vector space over",
null,
"$\\mathbb{R}$.\nEx.4.",
null,
"$\\mbox{F is a vector space over itself.}$\nEx.5.",
null,
"$\\mathbb{R}$ is a vector space over",
null,
"$\\mathbb{Q}$.\nEx.6.",
null,
"$\\mbox{Let S be a set. Let}$",
null,
"$\\mathcal{F}(S,\\mathbb{R})=\\big\\{f:S\\to \\mathbb{R} \\big\\}$",
null,
"$f,g \\in \\mathcal{F}(S,\\mathbb{R})$",
null,
"$(f+g)(t)=f(t)+g(t)\\ for\\ any\\ t\\in S$",
null,
"$(af)(t)=a\\cdot f(t)\\$"
] | [
null,
"http://drorbn.net/images/math/7/8/b/78b70da0fb6369f45abaccaaef4cabe9.png ",
null,
"http://drorbn.net/images/math/a/4/4/a44c56c8177e32d3613988f4dba7962e.png ",
null,
"http://drorbn.net/images/math/8/9/a/89ad9a225e31c3711e63b56c2fb42601.png ",
null,
"http://drorbn.net/images/math/6/d/4/6d435a0c842d3ebb2a07bd64d96a6b32.png ",
null,
"http://drorbn.net/images/math/d/1/4/d14fd212cb6e9c19277981058b774838.png ",
null,
"http://drorbn.net/images/math/a/d/e/adee4d96fd32864578929fdf436bee03.png ",
null,
"http://drorbn.net/images/math/f/a/0/fa040f97d60f22d6722da56922157fdb.png ",
null,
"http://drorbn.net/images/math/c/c/7/cc795c01d22a3fcc1f1af6757fd9c6c3.png ",
null,
"http://drorbn.net/images/math/5/2/1/5210a163e8da3f4d1acdddec941ff972.png ",
null,
"http://drorbn.net/images/math/8/b/3/8b345dff4e04fff9d9f8fd9e2868b640.png ",
null,
"http://drorbn.net/images/math/f/e/a/fea56f5c04404dbdd971bde42076b6b7.png ",
null,
"http://drorbn.net/images/math/9/a/8/9a89bf8996264b73274e8eb9f82019ae.png ",
null,
"http://drorbn.net/images/math/1/4/3/143a68748970ec140fdfcfabf354e172.png ",
null,
"http://drorbn.net/images/math/1/4/0/14034a41c25e57addd48f179744f092f.png ",
null,
"http://drorbn.net/images/math/7/c/6/7c646930d8e23bd44e2d0120ab550281.png ",
null,
"http://drorbn.net/images/math/f/f/9/ff992eaf04ea2301aca409c88a30dfd4.png ",
null,
"http://drorbn.net/images/math/f/a/0/fa040f97d60f22d6722da56922157fdb.png ",
null,
"http://drorbn.net/images/math/c/c/7/cc795c01d22a3fcc1f1af6757fd9c6c3.png ",
null,
"http://drorbn.net/images/math/5/2/1/5210a163e8da3f4d1acdddec941ff972.png ",
null,
"http://drorbn.net/images/math/e/3/5/e355537ce0fa5d63142691a9cd5b54d2.png ",
null,
"http://drorbn.net/images/math/7/2/7/727ad526f544be9210f8f046be26de4d.png ",
null,
"http://drorbn.net/images/math/c/3/3/c33b004242daf18b271da1449c93e50f.png ",
null,
"http://drorbn.net/images/math/b/4/8/b48442ebaa8206fa0b7090026a176150.png ",
null,
"http://drorbn.net/images/math/2/6/f/26f9a456a826b8efe9913e0bd94fff23.png ",
null,
"http://drorbn.net/images/math/0/7/0/0701924ad02747e28903416d3cfa5449.png ",
null,
"http://drorbn.net/images/math/c/2/c/c2cc7044ba2a1c3b94895ed9830f164e.png ",
null,
"http://drorbn.net/images/math/8/a/2/8a2200de8857f20c7f928ed27e08116e.png ",
null,
"http://drorbn.net/images/math/8/1/8/81811d3b38d9e3a76179eaec455ec5cb.png ",
null,
"http://drorbn.net/images/math/f/a/a/faab61f6e7cf9d709dc75f0877d62146.png ",
null,
"http://drorbn.net/images/math/3/7/7/3772c80760d39d78c8275a7933c1e739.png ",
null,
"http://drorbn.net/images/math/4/1/a/41ad0415b7212857c9728d6803ab6f67.png ",
null,
"http://drorbn.net/images/math/d/0/b/d0b9fdb06d2b6884371e7c18077669c6.png ",
null,
"http://drorbn.net/images/math/3/5/3/353b463c5f47f231fa4a8114d05e985d.png ",
null,
"http://drorbn.net/images/math/b/9/1/b911c6f6efb242f4c04f8fcd491ddb74.png ",
null,
"http://drorbn.net/images/math/8/1/0/8107a044e16b31ecec3422779c59a0d1.png ",
null,
"http://drorbn.net/images/math/a/f/d/afd465a08079b138bcb9d030159ffe3b.png ",
null,
"http://drorbn.net/images/math/8/0/3/803c95287673d6648e727e708dd1e1b4.png ",
null,
"http://drorbn.net/images/math/f/0/b/f0b01fe0a1eec87c634584ac0694fb71.png ",
null,
"http://drorbn.net/images/math/6/9/a/69a45f1e602cd2b2c2e67e41811fd226.png ",
null,
"http://drorbn.net/images/math/c/6/0/c600905787a2f6c298dfad6ad0d0f9fe.png ",
null,
"http://drorbn.net/images/math/6/9/a/69a45f1e602cd2b2c2e67e41811fd226.png ",
null,
"http://drorbn.net/images/math/d/4/5/d45a4aa156a8ac07ab80e7d9cf5fa79f.png ",
null,
"http://drorbn.net/images/math/1/b/e/1be6e3e681f84e0c26af1af5de73cd89.png ",
null,
"http://drorbn.net/images/math/a/2/9/a290f4b923b5ff842885fcb905f630b4.png ",
null,
"http://drorbn.net/images/math/4/b/c/4bc9bfacfed7981d27ae86f895151c8f.png ",
null,
"http://drorbn.net/images/math/4/f/a/4fae9ef294f5e7beb516f80f011dbfba.png ",
null,
"http://drorbn.net/images/math/b/7/5/b75b384d5299bdfe1a672f2e3b837232.png ",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8670351,"math_prob":1.0000097,"size":730,"snap":"2021-04-2021-17","text_gpt3_token_len":219,"char_repetition_ratio":0.13774104,"word_repetition_ratio":0.15267175,"special_character_ratio":0.2780822,"punctuation_ratio":0.19298245,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":1.0000088,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94],"im_url_duplicate_count":[null,1,null,7,null,1,null,1,null,1,null,1,null,2,null,2,null,2,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,2,null,2,null,2,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,3,null,null,null,1,null,null,null,1,null,1,null,1,null,1,null,1,null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-01-16T21:50:59Z\",\"WARC-Record-ID\":\"<urn:uuid:1d938150-171f-4a0e-a666-173fd90aa86d>\",\"Content-Length\":\"31160\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:648f44de-5ab6-4d49-8606-89d74f06e406>\",\"WARC-Concurrent-To\":\"<urn:uuid:5566af90-6b3c-46b5-a67a-bce2c886f501>\",\"WARC-IP-Address\":\"128.100.68.50\",\"WARC-Target-URI\":\"http://drorbn.net/index.php?title=06-240/Classnotes_For_Thursday,_September_21\",\"WARC-Payload-Digest\":\"sha1:ENYNXXYFH452KAEXR45W2D5R73KKJ4D2\",\"WARC-Block-Digest\":\"sha1:54DXED2WOSYQK5NAN4MYFJO4QEJJU7NL\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-04/CC-MAIN-2021-04_segments_1610703507045.10_warc_CC-MAIN-20210116195918-20210116225918-00088.warc.gz\"}"} |
https://forums.toadworld.com/t/percent-button-in-pivot-grids-custom-calculation-window/50475 | [
"# Percent Button in Pivot Grid's Custom Calculation Window\n\nWhat is the intended use of the button with the percent sign that is in the Pivot Grid's \"Edit Expression\" or \"Add Calculated Field\" window? My first guess was that it would multiply by 100 and add a percent sign...but all of my attempts result in an error.",
null,
"The \"Percent\" operator calculates the integer remainder of a division. This is a \"modulo\" operator in arithmetic.\n\nExample1:\nIn \"integer division\",\n11 / 4 = 2 (with remainder of 3)\nwhile\n11 % 4 = 3 (yields the remainder after division.)\n\nExample2:\n1023 % 2 = 1\n1024 % 2 = 0\n1025 %2 = 1, etc.\n\ne.g. Performing \"% 2\" on any integer is a great way to tell if it's odd or even.\nHope this helps.\n\nNice. Thanks, Gary!"
] | [
null,
"https://aws1.discourse-cdn.com/quest/original/2X/e/e6d8be89c36df1ddc8672e450f5a7f57d570c5fa.jpeg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.93742365,"math_prob":0.9374249,"size":923,"snap":"2020-34-2020-40","text_gpt3_token_len":245,"char_repetition_ratio":0.10446137,"word_repetition_ratio":0.5086705,"special_character_ratio":0.2936078,"punctuation_ratio":0.12820514,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98875344,"pos_list":[0,1,2],"im_url_duplicate_count":[null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-08-11T16:55:59Z\",\"WARC-Record-ID\":\"<urn:uuid:533b3758-1f70-4653-841c-a8c3f3fd1fcd>\",\"Content-Length\":\"16416\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:525b1f81-37f5-407b-a741-22a68f565239>\",\"WARC-Concurrent-To\":\"<urn:uuid:f916d01f-002c-49f8-8d3f-d695df601720>\",\"WARC-IP-Address\":\"216.218.159.25\",\"WARC-Target-URI\":\"https://forums.toadworld.com/t/percent-button-in-pivot-grids-custom-calculation-window/50475\",\"WARC-Payload-Digest\":\"sha1:7LIC4R36X4VSC2GTPHE3R6L2FYRHEYNP\",\"WARC-Block-Digest\":\"sha1:TGXJ3WRLFIHEWLUPBXZ2T2IAPPEIBC4Z\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-34/CC-MAIN-2020-34_segments_1596439738816.7_warc_CC-MAIN-20200811150134-20200811180134-00121.warc.gz\"}"} |
https://www.exceldemy.com/sumproduct-if/ | [
"# How to use SUMPRODUCT IF in Excel",
null,
"SUMPRODUCT is an extremely resourceful function with many purposes. When you are comparing data between two or more ranges and calculating with multiple criteria, The SUMPRODUCT function is your first choice. It has the unique ability to handle arrays in smart and elegant ways. Often we need to use SUMPRODUCT IF or conditional SUMPRODUCT to compare between columns with given criteria and to find the result. Today in this article, we will discuss the SUMPRODUCT IF function and some other alternative approaches to SUMPRODUCT IF function.\n\n## Excel SUMPRODUCT function\n\nTechnically, the “SUMPRODUCT” function returns the sum of the values of corresponding arrays or ranges. Normally, the default operation is multiplication, but addition, subtraction, and division can also be done.\n\n### Syntax\n\nThe syntax of the SUMPRODUCT function is simple and direct.\n\n=SUMPRODUCT(array1, [array2], [array3], …)\n\n### Argument\n\n• [array1]: The first array or ranges of cells whose components you want to multiply and then add\n• [ array2], [array3]…: Array arguments 2 to 255 whose values you want to multiply and then add.\n\n## SUMPRODUCT IF Formula: 2 Types\n\nIn Excel, there is no built-in “SUMPRODUCT IF” function but you can use this as an array formula by combining the “SUMPRODUCT” and the “IF” function. Let’s discuss this formula.\n\n### 1. SUMPRODUCT IF with One Criteria\n\nWe can use the “SUMPRODUCT IF” formula with one criterion. Follow these steps to learn\n\nStep-1:\n\nConsider a data table where some fruit Items are given with “Region”, “Qty”, and “Price”. We will find out the total price of some items.",
null,
"Step-2:\n\nCreate another table anywhere in the worksheet where you want to get the total price of the item. We choose “Cherry”, “Apple”, “Plum” items.",
null,
"Step-3:\n\nApply the “SUMPRODUCT IF” formula in cell “H4”. The format of this formula is\n\n=SUMPRODUCT(IF(criteria range=criteria, values range1*values range2))\n\nInsert the values into the formula.\n\n=SUMPRODUCT(IF(\\$C\\$4:\\$C\\$20=G4,\\$D\\$4:\\$D\\$20*\\$E\\$4:\\$E\\$20))\n\nWhere,\n\n• Criteria_range is \\$C\\$4:\\$C\\$20.\n• The Criteria is\n• Values_range1 is \\$D\\$4:\\$D\\$20.\n• Values_range2 is \\$E\\$4:\\$E\\$20.",
null,
"Apply this formula as an array formula by pressing “CTRL+SHIFT+ENTER” simultaneously.",
null,
"Step-4:\n\nWe got our total price. Now apply the same formula for the rest of the items.",
null,
"### 2. SUMPRODUCT IF with Multiple Criteria in Different Column\n\nWe will use the same formula for multiple criteria.\n\nStep-1:\n\nLet’s add another criteria “Region” in table 2. In this case, we want to find the total price of “Cherry” from the “North America” region and “Apple” from the “Asia” region.",
null,
"Step-2:\n\nNow apply the “SUMPRODUCT IF” formula. Insert the values into the formula.\n\n=SUMPRODUCT(IF(\\$B\\$4:\\$B\\$20=G4,IF(\\$C\\$4:\\$C\\$20=H4,\\$D\\$4:\\$D\\$20*\\$E\\$4:\\$E\\$20)))\n\nWhere,\n\n• Criteria_range is \\$B\\$4:\\$B\\$20, \\$C\\$4:\\$C\\$20.\n• The Criteria is G4, H4.\n• Values_range1 is \\$D\\$4:\\$D\\$20.\n• Values_range2 is \\$E\\$4:\\$E\\$20.",
null,
"Apply this formula by pressing “CTRL+SHIFT+ENTER” simultaneously.",
null,
"Step-3:\n\nOur value is here. Now do the same for the “Apple” item.",
null,
"## Alternative approaches to SUMPRODUCT IF Formula\n\nThere are some other approaches to derive the previous results. An alternative way to calculate the “SUMPRODUCT IF” formula is to insert the criteria within the “SUMPRODUCT” function as an array using double unary (–) to converts the “TRUE” or “FALSE” into “1” or “0”.\n\n### 1. SUMPRODUCT If with One Condition\n\nStep-1:\n\nWe will consider the previous example in this case. We will find the total price of “Mango” from the list.",
null,
"Step-2:\n\nApply the conditional “SUMPRODUCT” formula\n\nThe final formula is\n\n=SUMPRODUCT(–(C4:C20=G4),D4:D20,E4:E20)\n\nWhere,\n\n• Array1 is (–(C4:C20=G4).\n• [Array2] is D4:D20.\n• [Array3] is E4:E20.",
null,
"Press “Enter”. Our result is here.",
null,
"Explanation:\n\nWe will now explain how this conditional “SUMPRODUCT” function works\n\nStep-1:\n\nWhen we enter the “–(C4:C20=G4)” into the formula this double unary (–) converts the “TRUE” or “FALSE” into “1” or “0”. Select this “–(C4:C20=G4)” portion in your worksheet and press “F9” to see the underlying values.\n\n{0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,1}\n\nStep-2:\n\nNow if we break down the arrays into values the actual formula will look like this,\n\n=SUMPRODUCT({0,1,0,0,0,0,0,0,1,1,0,1,1,0,0,0,1},{20,50,100,50,500,80,90,56,60,80,100,40,45,25,35,45,90},{15,20,2,5,12,10,15,9,20,30,5,30,25,10,10,20,15})\n\nStep-3:\n\nThe first array will multiply with the second then the second array will multiply with the third array. Follow this picture",
null,
"That is how this conditional “SUMPRODUCT” works.\n\n### 2. SUMPRODUCT IF with Multiple Condition in Different Column\n\nStep-1:\n\nIn the following example, we will find out the total price of “Cherry” from the “North America” region.",
null,
"Step-2:\n\nApply the formula. The final form of this formula is,\n\n=SUMPRODUCT(–(B4:B20=G4), –(C4:C20=H4),D4:D20,E4:E20)\n\nWhere,\n\n• Array1 is (–(C4:C20=G4),–(C4:C20=H4).\n• [Array2] is D4:D20.\n• [Array3] is E4:E20.",
null,
"Press “Enter”. Our result is achieved.",
null,
"### 3. SUMPRODUCT IF with OR Logic\n\nWe can add “OR” logic to our formula to make this formula more dynamic.\n\nStep-1:\nLet’s say, we need to get the total price of “Mango” and “Cherry” from the data table.",
null,
"Step-2:\n\nApply the “SUMPRODUCT” formula with “OR” and insert the values.\n\nThe formula is\n\n=SUMPRODUCT(–((C4:C20=G4)+(C4:C20=H4)>0),D4:D20,E4:E20)\n\nWhere,\n\n• Array1 is –((C4:C20=G4)+(C4:C20=H4)>0). Here G4 is “Mango” and H4 is “Cherry”. This array counts the total number of “Mango” and “Cherry” in the data table.\n• [Array2] is D4:D20.\n• [Array3] is E4:E20.",
null,
"Press “Enter” to get the total price of the products.",
null,
"### 4. SUMPRODUCT IF with Multiple AND/OR Criteria\n\nIn this case, we will apply Or logic with multiple conditions.\n\nStep-1:\n\nIn the following example, we need to find the total price of “Cherry” and “Mango” from “Asia” and “Europe” regions.",
null,
"Step-2:\n\nTo get the result we will now apply the formula with AND/OR logic. The formula is\n\n=SUMPRODUCT(–((B4:B20=G4)+(B4:B20=H4)>0),–((C4:C20=I4)+(C4:C20=J4)>0),D4:D20,E4:E20)\n\nWhere,\n\n• Array1 is –((B4:B20=G4)+(B4:B20=H4)>0),–((C4:C20=I4)+(C4:C20=J4)>0). Here B4:B20 is “Region” Column, G4 and H4 is “Asia” and “Europe”.Similarly,C4:C20 is “Item” column, I4 and J4 is “Cherry” and “Mango”.\n• [Array2] is D4:D20.\n• [Array3] is E4:E20.",
null,
"Press “Enter” to get the total price.",
null,
"## Quick Notes\n\n✅Arrays in the SUMPRODUCT formula must have the same number of rows and columns. If not, you get the #VALUE! Error.\n\n✅The “SUMPRODUCT” function treats non-numeric values as zeros. If you have any non-numeric values in your formula the answer will be “0”.\n\n✅ Since the “SUMPRODUCT IF” formula is an array formula your need to press “CTRL+SHIFT+ENTER” simultaneously to apply the formula.\n\n✅The “SUMPRODUCT” function does not support wildcard characters.\n\n## Conclusion\n\nToday we discussed the “SUMPRODUCT IF” formula and some other alternative conditional “SUMPRODUCT” formula in this article. Hope this article is useful to you when you are facing problems. If you have any confusion, you are welcome to comment.",
null,
"",
null,
""
] | [
null,
"https://www.exceldemy.com/wp-content/themes/rehub-theme/images/default/noimage_450_350.png",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20597%20522'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20797%20491'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20923%20521'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20825%20481'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20819%20475'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20860%20521'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20870%20496'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20855%20498'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20887%20475'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20780%20503'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20860%20492'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20747%20479'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20454%20407'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20851%20520'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20979%20519'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20887%20524'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20809%20506'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20943%20492'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20824%20491'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20935%20497'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20993%20543'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20940%20516'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2069%2069'%3E%3C/svg%3E",
null,
"data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20160%2050'%3E%3C/svg%3E",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.82521945,"math_prob":0.9706817,"size":6637,"snap":"2022-27-2022-33","text_gpt3_token_len":1856,"char_repetition_ratio":0.1649329,"word_repetition_ratio":0.1295938,"special_character_ratio":0.28506854,"punctuation_ratio":0.17275281,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9972444,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-08-08T04:08:06Z\",\"WARC-Record-ID\":\"<urn:uuid:1bfbcfb3-2524-4cbc-a539-08df80481560>\",\"Content-Length\":\"238238\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:92ae2976-2a7e-4970-9cda-a14f0fd55677>\",\"WARC-Concurrent-To\":\"<urn:uuid:1a07be83-6e99-43d3-84ce-bb34ab2e3a02>\",\"WARC-IP-Address\":\"172.67.190.223\",\"WARC-Target-URI\":\"https://www.exceldemy.com/sumproduct-if/\",\"WARC-Payload-Digest\":\"sha1:HCBQ3DM7M7D6TJELBVL3LAYAXEF7AP5W\",\"WARC-Block-Digest\":\"sha1:PYQKQUZ3PZKVRL5I6FBSRTRLFKTWMSDP\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-33/CC-MAIN-2022-33_segments_1659882570765.6_warc_CC-MAIN-20220808031623-20220808061623-00168.warc.gz\"}"} |
https://www.queryhome.com/tech/tag/charging | [
"",
null,
"",
null,
"",
null,
"# Recent posts under tag charging",
null,
"+1 vote",
null,
"• lte\n• 5g\n• telecom\n• charging",
null,
"• lte\n• charging\n+1 vote",
null,
"• lte\n• charging",
null,
"• charging\n• lte\n• umts\n• sevices\n• networks",
null,
"• lte\n• gtp\n• sgw\n• pgw\n• charging\n+1 vote",
null,
"• charging\n• lte",
null,
"• ims\n• charging\n• diameter\n• lte\n• interview questions",
null,
"• lte\n• telecom\n• ims\n• charging\n• policy\n+1 vote",
null,
"• lte\n• telecom\n• ims\n• charging",
null,
"• lte\n• volte\n• charging\n• ims",
null,
"• policy\n• lte\n• pgw\n• charging\n• sgw",
null,
"• lte\n• policy\n• charging\n• pgw\n• traffic\n+1 vote",
null,
"• lte\n• diameter\n• charging\n+1 vote",
null,
"• diameter\n• charging\n• pcrf\n• pcef\n• ocs",
null,
"• lte\n• telecom\n• lwa\n• lte-u\n• charging",
null,
"• lte\n• charging\n• ofcs\n• ocs\n• pgw",
null,
"• volte\n• ims\n• charging\n• lte\n• diameter\n+1 vote",
null,
"• diameter\n• lte\n• charging\n• epc",
null,
"• lte\n• diameter\n• charging\n• epc",
null,
"• lte\n• diameter\n• charging\n• pcrf",
null,
"• lte\n• diameter\n• charging\n• 3gpp",
null,
"• lte\n• pgw\n• policy\n• charging\n• traffic",
null,
"• lte\n• charging\n• policy\n• traffic",
null,
"• lte\n• diameter\n• charging",
null,
"• diameter\n• lte\n• ofcs\n• gx-interface\n• charging",
null,
"• lte\n• charging\n• ims",
null,
"• lte\n• ocs\n• pcrf\n• pcef\n• charging\n+1 vote",
null,
"• lte\n• charging\n• diameter\n• pcrf\n• ocs",
null,
"• charging\n• ss7\n• diameter\n• camel\n• osi layer",
null,
"• diameter\n• charging\n• lte\n+1 vote",
null,
"• lte\n• charging\n+1 vote",
null,
"• lte\n• charging",
null,
"• lte\n• charging\n• roaming",
null,
"• lte\n• charging",
null,
"• lte\n• charging",
null,
"• lte\n• charging\n+1 vote",
null,
"• wireless\n• charging",
null,
"• charging",
null,
"• lte\n• mbms\n• charging",
null,
"• charging\n• lte\n• ofcs\n• ocs",
null,
"",
null,
"• lte\n• pcef\n• charging\n• epc\n+1 vote",
null,
"",
null,
"• lte\n• charging\n• telecom\n• gsm\n• umts",
null,
"• lte\n• charging\n• telecom",
null,
"• charging\n• lte\n• epc\n• diameter",
null,
"• charging\n• lte\n• diameter\n+1 vote",
null,
"",
null,
""
] | [
null,
"https://queryhomebase.appspot.com/images/facebook-side.png",
null,
"https://queryhomebase.appspot.com/images/google-side.png",
null,
"https://queryhomebase.appspot.com/images/qh-side.png",
null,
"https://www.queryhome.com/tech/qa-theme/Snow/images/rss.jpg",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null,
"https://www.queryhome.com/tech/",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.75420874,"math_prob":0.7698576,"size":7856,"snap":"2020-34-2020-40","text_gpt3_token_len":2643,"char_repetition_ratio":0.21714213,"word_repetition_ratio":0.061019383,"special_character_ratio":0.25789204,"punctuation_ratio":0.07682031,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98998505,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-08-12T10:02:17Z\",\"WARC-Record-ID\":\"<urn:uuid:577468ff-ff2f-4bef-ad39-813e64d3b130>\",\"Content-Length\":\"391807\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:a3da0367-0a55-4d4c-82f3-b838444350af>\",\"WARC-Concurrent-To\":\"<urn:uuid:55003abb-d387-4e60-9932-b84dd94e50da>\",\"WARC-IP-Address\":\"54.214.12.95\",\"WARC-Target-URI\":\"https://www.queryhome.com/tech/tag/charging\",\"WARC-Payload-Digest\":\"sha1:MGQE22Y46G2V63QXL44JTVCJWD7JF4XK\",\"WARC-Block-Digest\":\"sha1:27I2LANSEEEE4XEGN4OAU6CDDWKWBGI7\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-34/CC-MAIN-2020-34_segments_1596439738888.13_warc_CC-MAIN-20200812083025-20200812113025-00019.warc.gz\"}"} |
https://financialmodelingprep.com/weighted-average-cost-of-capital/CLXT | [
"# Weighted Average Cost Of Capital",
null,
"### Calyxt Inc (CLXT)\n\n\\$3.72\n0.03 (+0.81%)\nShare price \\$ 3.72 2.255 32.81 0.00 5.00% 20.406 18.60 122.04 140.64 13.23 86.77\n\nThere are a number of methods that can be used to determine discount rates. A good approach – and the one we’ll use in this tutorial – is to use the weighted average cost of capital (WACC) – a blend of the cost of equity and after-tax cost of debt. A company has two primary sources of financing – debt and equity – and, in simple terms, WACC is the average cost of raising that money. WACC is calculated by multiplying the cost of each capital source (debt and equity) by its relevant weight and then adding the products together to determine the WACC value."
] | [
null,
"https://fmpcloud.io/images-New-jpg/CLXT.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.88998157,"math_prob":0.9909477,"size":939,"snap":"2020-45-2020-50","text_gpt3_token_len":256,"char_repetition_ratio":0.122994654,"word_repetition_ratio":0.0,"special_character_ratio":0.3003195,"punctuation_ratio":0.10309278,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9540273,"pos_list":[0,1,2],"im_url_duplicate_count":[null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-10-22T06:22:55Z\",\"WARC-Record-ID\":\"<urn:uuid:cf2eddca-570b-4000-b63a-bd52e9e0c208>\",\"Content-Length\":\"782562\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:9b8224ec-bc19-482a-80a3-142492e5a731>\",\"WARC-Concurrent-To\":\"<urn:uuid:262962eb-dd50-42e6-b5d7-c08688e5236a>\",\"WARC-IP-Address\":\"52.203.203.153\",\"WARC-Target-URI\":\"https://financialmodelingprep.com/weighted-average-cost-of-capital/CLXT\",\"WARC-Payload-Digest\":\"sha1:YMB3ZPBWVRDAP423HRGJSMDV6BJZHSC5\",\"WARC-Block-Digest\":\"sha1:QMB26N5TZBVV22QZPMFEGIDKWWVACZML\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-45/CC-MAIN-2020-45_segments_1603107878921.41_warc_CC-MAIN-20201022053410-20201022083410-00059.warc.gz\"}"} |
https://www.educationindex.com/essay/CHM130Lab-4CalorimetryName-Mengqi-LiData-Table-12-F3XUNAHE4Z | [
"# CHM130Lab 4CalorimetryName Mengqi LiData Table 12\n\n1501 words 7 pages\nCHM130\n\nLab 4\n\nCalorimetry\n\nName: Mengqi Li\n\nData Table: (12 points)\n\nALUMINUM METAL\n\nPre-weighed Aluminum metal sample mass (mmetal) 50.0 grams\nTemperature of boiling water and metal sample in the pot (Ti(metal))\n\ndsdfa(Ti 90.0 C\nTemperature of cool water in the calorimeter prior to adding hot metal sample (Ti(water)) 17.0 C\nMaximum Temperature of water/metal in calorimeter after mixing (Tf) 47.0 C\n\nPre-weighed Lead metal sample mass (mmetal) 50.0 grams\nTemperature of boiling water and metal sample in the pot (Ti(metal)) 95.0 C\nTemperature of cool water in the calorimeter prior to adding hot metal sample (Ti(water)) 17.0 C\nMaximum Temperature of water/metal in calorimeter after mixing (Tf) 50.0 C\n\nIRON\n(10 points)\n\nQ=m(sh)ΔT=75*42.0*4.184=13000J\n\n17. Use the equation: q = m(SH)ΔT to solve for the specific heat of the metal.\nFor q, you found how much heat was gained by the water so you know that same amount of heat was lost by the metal. Therefore, qmetal = -qwater. The mass of the sample was recorded from the baggie. The temperature change of the metal can be found in calculation #14. (10 points)\n\nM(metal)*SH(metal)*ΔT(metal)=-m(water)*sh(water)*ΔT(water)\n50.0*sh(metal)*(-40.0)=-75*4.184*42.0\nSh(metal)=6.59J/g0C\n\n18. Determine the percent error using the equation and knowing that the actual specific heat of iron is 0.450 J/g(oC): (10 points)\nPercent Error = actual-experimental x 100\nActua\n=|0.450-6.59|/0.450*100\n=1360%\n\nFollow-Up Questions:\n19. The First Law of Thermodynamics states that heat lost by one object is gained by another? For this lab experiment, what substance(s) gained energy and what substance(s) lost energy? (8 points)\nBecause one object lost heat and another will gain the heat. In this lab experiment, all metal lost energy, and all water gain energy.\n20. To determine the specific heat of the metal, you assumed that the amount of heat lost by the metal equals the amount of heat gained by the water. Do you think this was a valid assumption to make based on your percent error? Discuss what may have occurred that would make your calculated value not equal to the actual value. (15 points)\n\nAlthough some\n\n## Related\n\n• ###### 12 Angry Men Analysis\n936 words | 4 pages\n• ###### Variable Cost and Following Table\n1952 words | 8 pages\n• ###### 12 Angry Men: Analysis of the Film\n3936 words | 16 pages\n• ###### Industrial Psychology in 12 Angry Man\n3455 words | 14 pages\n• ###### Ilm Level 3 M.12\n3071 words | 13 pages\n• ###### Experiment 12: Calorimetry\n1884 words | 8 pages\n• ###### Pc Specification Table\n1942 words | 8 pages\n• ###### 12 Angry Men: Leadership\n1940 words | 8 pages\n• ###### Table Controls at Bellagio Casino Resort\n2086 words | 9 pages\n• ###### case 12\n1924 words | 8 pages"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.85750365,"math_prob":0.91291845,"size":2199,"snap":"2019-51-2020-05","text_gpt3_token_len":624,"char_repetition_ratio":0.1357631,"word_repetition_ratio":0.20930232,"special_character_ratio":0.2755798,"punctuation_ratio":0.10065646,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9765171,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-01-19T19:58:27Z\",\"WARC-Record-ID\":\"<urn:uuid:3e9248e4-8bd8-4950-aa94-903001904acf>\",\"Content-Length\":\"47081\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:aefa1269-475c-4f8f-9f45-14cc10b60acf>\",\"WARC-Concurrent-To\":\"<urn:uuid:c248a220-36c9-4f14-bd34-985731a11451>\",\"WARC-IP-Address\":\"54.192.30.38\",\"WARC-Target-URI\":\"https://www.educationindex.com/essay/CHM130Lab-4CalorimetryName-Mengqi-LiData-Table-12-F3XUNAHE4Z\",\"WARC-Payload-Digest\":\"sha1:2V4FMWOCQRUPL3U6JR4GUPE5EOXZL4ZX\",\"WARC-Block-Digest\":\"sha1:55KKMFPHYLZ4EHTWZ63ZCWSVILJ3PEQ3\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-05/CC-MAIN-2020-05_segments_1579250594705.17_warc_CC-MAIN-20200119180644-20200119204644-00467.warc.gz\"}"} |
https://cedric.cnam.fr/index.php/publis/article/BSS10 | [
"",
null,
"",
null,
"[BSS10] On the use of Weighted Regression in Conjoint Analysis\n\nConférence Internationale avec comité de lecture : COMPSTAT'2010, 19th International Conference on Computational Statistics, Paris, August 2010, pp.777-784,\nmotcle:\nRésumé: Conjoint analysis seeks to explain an ordered categorical ordinal variable according to several variables using a multiple regression scheme. A common problem encountered, there, is the presence of missing values in classi cation-ranks. In this paper, we are interested in the cases where consumers provide a ranking of some products instead of rating these products (i.e. explained variable presents missing values).In order to deal with this problem, we propose a weighted regression scheme. We empirically show (in several cases of weighting) that, if the number of missing values is not too large, the data remain useful, and our results are close to those of the complete order. A simulation study con rms these ndings.\n\nEquipe: msdma\nCollaboration: CML\n\nBibTeX\n\n @inproceedings { BSS10, title = \"{On the use of Weighted Regression in Conjoint Analysis}\", author = \" S. Benammou and B. Souissi and G. Saporta \", booktitle = \"{COMPSTAT'2010, 19th International Conference on Computational Statistics, Paris}\", year = 2010, month = \"August\", pages = \"777-784\", }"
] | [
null,
"https://cedric.cnam.fr/themes/cedric/img/fr-current.png",
null,
"https://cedric.cnam.fr/themes/cedric/img/en.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7130426,"math_prob":0.81878805,"size":1052,"snap":"2019-43-2019-47","text_gpt3_token_len":237,"char_repetition_ratio":0.09064885,"word_repetition_ratio":0.0,"special_character_ratio":0.20722434,"punctuation_ratio":0.14285715,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9552237,"pos_list":[0,1,2,3,4],"im_url_duplicate_count":[null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-10-21T02:25:46Z\",\"WARC-Record-ID\":\"<urn:uuid:22aa00c4-071c-4aca-bc15-3eed364a0940>\",\"Content-Length\":\"13063\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:457bd7c4-9d8f-4e4a-8c73-27ceb1602de9>\",\"WARC-Concurrent-To\":\"<urn:uuid:a5cd7998-3350-4d0d-b287-f5c5911db9a1>\",\"WARC-IP-Address\":\"163.173.228.40\",\"WARC-Target-URI\":\"https://cedric.cnam.fr/index.php/publis/article/BSS10\",\"WARC-Payload-Digest\":\"sha1:ZVXY4NWJCBNZ5ZP4B5OE74JVVX3RO2IL\",\"WARC-Block-Digest\":\"sha1:QGR4HM7CNIIBKXSSAQ6J5VV5PXQ2CORH\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-43/CC-MAIN-2019-43_segments_1570987751039.81_warc_CC-MAIN-20191021020335-20191021043835-00277.warc.gz\"}"} |
https://wiki.fysik.dtu.dk/ase/ase/lattice.html | [
"# Bravais lattices¶\n\nThis package provides two features that are mostly used independently of each other:\n\n• Bravais lattice objects, which represent primitive cells and Brillouin zone information which is useful for calculating band structures\n\n• A general framework for building Atoms objects based Bravais lattice and basis\n\nclass ase.lattice.BravaisLattice(**kwargs)[source]\n\nRepresent Bravais lattices and data related to the Brillouin zone.\n\nThere are 14 3D Bravais classes: CUB, FCC, BCC, …, and TRI, and five 2D classes.\n\nEach class stores basic static information:\n\n>>> from ase.lattice import FCC, MCL\n>>> FCC.name\n'FCC'\n>>> FCC.longname\n'face-centred cubic'\n>>> FCC.pearson_symbol\n'cF'\n>>> MCL.parameters\n('a', 'b', 'c', 'alpha')\n\n\nEach class can be instantiated with the specific lattice parameters that apply to that lattice:\n\n>>> MCL(3, 4, 5, 80)\nMCL(a=3, b=4, c=5, alpha=80)\n\nbandpath(path=None, npoints=None, special_points=None, density=None) [source]\n\nReturn a BandPath for this lattice.\n\nSee ase.cell.Cell.bandpath() for description of parameters.\n\n>>> BCT(3, 5).bandpath()\nBandPath(path='GXYSGZS1NPY1Z,XP', cell=[3x3], special_points={GNPSS1XYY1Z}, kpts=[51x3])\n\n\nNote\n\nThis produces the standard band path following AFlow conventions. If your cell does not follow this convention, you will need ase.cell.Cell.bandpath() instead or the kpoints may not correspond to your particular cell.\n\ncellpar() ndarray[source]\n\nGet cell lengths and angles as array of length 6.\n\nconventional() [source]\n\nGet the conventional cell corresponding to this lattice.\n\ndescription() str[source]\n\nReturn complete description of lattice and Brillouin zone.\n\nget_special_points() Dict[str, ndarray][source]\n\nReturn a dictionary of named special k-points for this lattice.\n\nget_special_points_array() ndarray[source]\n\nReturn all special points for this lattice as an array.\n\nOrdering is consistent with special_point_names.\n\nplot_bz(path=None, special_points=None, **plotkwargs)[source]\n\nPlot the reciprocal cell and default bandpath.\n\nproperty special_path: str\n\nGet default special k-point path for this lattice as a string.\n\n>>> BCT(3, 5).special_path\n'GXYSGZS1NPY1Z,XP'\n\nproperty special_point_names: List[str]\n\nReturn all special point names as a list of strings.\n\n>>> BCT(3, 5).special_point_names\n['G', 'N', 'P', 'S', 'S1', 'X', 'Y', 'Y1', 'Z']\n\ntocell() Cell[source]\n\nReturn this lattice as a Cell object.\n\nclassmethod type_description()[source]\n\nReturn complete description of this Bravais lattice type.\n\nproperty variant: str\n\nReturn name of lattice variant.\n\n>>> BCT(3, 5).variant\n'BCT2'\n\nvars() Dict[str, float][source]\n\nGet parameter names and values of this lattice as a dictionary.\n\n# General crystal structures and surfaces¶\n\nModules for creating crystal structures are found in the module ase.lattice. Most Bravais lattices are implemented, as are a few important lattices with a basis. The modules can create lattices with any orientation (see below). These modules can be used to create surfaces with any crystal structure and any orientation by later adding a vacuum layer with ase.build.add_vacuum().\n\n## Example¶\n\nTo set up a slab of FCC copper with the [1,-1,0] direction along the x-axis, [1,1,-2] along the y-axis and [1,1,1] along the z-axis, use:\n\n>>> from ase.lattice.cubic import FaceCenteredCubic\n>>> atoms = FaceCenteredCubic(directions=[[1,-1,0], [1,1,-2], [1,1,1]],\n... size=(2,2,3), symbol='Cu', pbc=(1,1,0))\n\n\nThe minimal unit cell is repeated 2*2*3 times. The lattice constant is taken from the database of lattice constants in ase.data module. There are periodic boundary conditions along the x and y axis, but free boundary conditions along the z axis. Since the three directions are perpendicular, a (111) surface is created.\n\nTo set up a slab of BCC copper with along the first axis, along the second axis, and along the third axis use:\n\n>>> from ase.lattice.cubic import BodyCenteredCubic\n>>> atoms = BodyCenteredCubic(directions=[[1,0,0], [0,1,0], [1,1,1]],\n... size=(2,2,3), symbol='Cu', pbc=(1,1,0),\n... latticeconstant=4.0)\n\n\nSince BCC is not the natural crystal structure for Cu, a lattice constant has to be specified. Note that since the repeat directions of the unit cell are not orthogonal, the Miller indices of the surfaces will not be the same as the Miller indices of the axes. The indices of the surfaces in this example will be (1,0,-1), (0,1,-1) and (0,0,1).\n\n## Available crystal lattices¶\n\nThe following modules are currently available (the * mark lattices with a basis):\n\n• lattice.cubic\n\n• SimpleCubic\n\n• FaceCenteredCubic\n\n• BodyCenteredCubic\n\n• Diamond (*)\n\n• lattice.tetragonal\n\n• SimpleTetragonal\n\n• CenteredTetragonal\n\n• lattice.orthorhombic\n\n• SimpleOrthorhombic\n\n• BaseCenteredOrthorhombic\n\n• FaceCenteredOrthorhombic\n\n• BodyCenteredOrthorhombic\n\n• lattice.monoclinic\n\n• SimpleMonoclinic\n\n• BaseCenteredMonoclinic\n\n• lattice.triclinic\n\n• Triclinic\n\n• lattice.hexagonal\n\n• Hexagonal\n\n• HexagonalClosedPacked (*)\n\n• Graphite (*)\n\n• The rhombohedral (or trigonal) lattices are not implemented. They will be implemented when the need arises (and if somebody can tell us the precise definition of the 4-number Miller indices - we only know that they are “almost the same as in hexagonal lattices”).\n\n• lattice.compounds\n\nLattices with more than one element. These are mainly intended as examples allowing you to define new such lattices. Currently, the following are defined\n\n• B1 = NaCl = Rocksalt\n\n• B2 = CsCl\n\n• B3 = ZnS = Zincblende\n\n• L1_2 = AuCu3\n\n• L1_0 = AuCu\n\n## Usage¶\n\nThe lattice objects are called with a number of arguments specifying e.g. the size and orientation of the lattice. All arguments should be given as named arguments. At a minimum the symbol argument must be specified.\n\nsymbol\n\nThe element, specified by the atomic number (an integer) or by the atomic symbol (i.e. ‘Au’). For compounds, a tuple or list of elements should be given. This argument is mandatory.\n\ndirections and/or miller:\n\nSpecifies the orientation of the lattice as the Miller indices of the three basis vectors of the supercell (directions=...) and/or as the Miller indices of the three surfaces (miller=...). Normally, one will specify either three directions or three surfaces, but any combination that is both complete and consistent is allowed, e.g. two directions and two surface miller indices (this example is slightly redundant, and consistency will be checked). If only some directions/miller indices are specified, the remaining should be given as None. If you intend to generate a specific surface, and prefer to specify the miller indices of the unit cell basis (directions=...), it is a good idea to give the desired Miller index of the surface as well to allow the module to test for consistency. Example:\n\n>>> atoms = BodyCenteredCubic(directions=[[1,-1,0],[1,1,-1],[0,0,1]],\n... miller=[None, None, [1,1,2]], ...)\n\n\nIf neither directions nor miller are specified, the default is directions=[[1,0,0], [0,1,0], [0,0,1]].\n\nsize:\n\nA tuple of three numbers, defining how many times the fundamental repeat unit is repeated. Default: (1,1,1). Be aware that if high-index directions are specified, the fundamental repeat unit may be large.\n\nlatticeconstant:\n\nThe lattice constant. If no lattice constant is specified, one is extracted from ASE.ChemicalElements provided that the element actually has the crystal structure you are creating. Depending on the crystal structure, there will be more than one lattice constant, and they are specified by giving a dictionary or a tuple (a scalar for cubic lattices). Distances are given in Angstrom, angles in degrees.\n\nStructure\n\nLattice constants\n\nDictionary-keys\n\nCubic\n\na\n\n‘a’\n\nTetragonal\n\n(a, c)\n\n‘a’, ‘c’ or ‘c/a’\n\nOrthorhombic\n\n(a, b, c)\n\n‘a’, ‘b’ or ‘b/a’, ‘c’ or ‘c/a’\n\nTriclinic\n\n(a, b, c, $$\\alpha$$, $$\\beta$$, $$\\gamma$$)\n\n‘a’, ‘b’ or ‘b/a’, ‘c’ or ‘c/a’, ‘alpha’, ‘beta’, ‘gamma’\n\nMonoclinic\n\n(a, b, c, alpha)\n\n‘a’, ‘b’ or ‘b/a’, ‘c’ or ‘c/a’, ‘alpha’\n\nHexagonal\n\n(a, c)\n\n‘a’, ‘c’ or ‘c/a’\n\nExample:\n\n>>> atoms = Monoclinic( ... , latticeconstant={'a': 3.06,\n... 'b/a': 0.95, 'c/a': 1.07, 'alpha': 74})\n\ndebug:\n\nControls the amount of information printed. 0: no info is printed. 1 (the default): The indices of surfaces and unit cell vectors are printed. 2: Debugging info is printed.\n\n## Defining new lattices¶\n\nOften, there is a need for new lattices - either because an element crystallizes in a lattice that is not a simple Bravais lattice, or because you need to work with a compound or an ordered alloy.\n\nAll the lattice generating objects are instances of a class, you generate new lattices by deriving a new class and instantiating it. This is best explained by an example. The diamond lattice is two interlacing FCC lattices, so it can be seen as a face-centered cubic lattice with a two-atom basis. The Diamond object could be defined like this:\n\nfrom ase.lattice.cubic import FaceCenteredCubicFactory\nclass DiamondFactory(FaceCenteredCubicFactory):\n\"\"\"A factory for creating diamond lattices.\"\"\"\nxtal_name = 'diamond'\nbravais_basis = [[0, 0, 0], [0.25, 0.25, 0.25]]\n\nDiamond = DiamondFactory()\n\n\n### Lattices with more than one element¶\n\nLattices with more than one element is made in the same way. A new attribute, element_basis, is added, giving which atoms in the basis are which element. If there are four atoms in the basis, and element_basis is (0,0,1,0), then the first, second and fourth atoms are one element, and the third is the other element. As an example, the AuCu3 structure (also known as $$\\mathrm{L}1_2$$) is defined as:\n\n# The L1_2 structure is \"based on FCC\", but is really simple cubic\n# with a basis.\nclass AuCu3Factory(SimpleCubicFactory):\n\"A factory for creating AuCu3 (L1_2) lattices.\"\nbravais_basis = [[0, 0, 0], [0, 0.5, 0.5], [0.5, 0, 0.5], [0.5, 0.5, 0]]\nelement_basis = (0, 1, 1, 1)\n\nAuCu3 = L1_2 = AuCu3Factory()\n\n\nSometimes, more than one crystal structure can be used to define the crystal structure, for example the Rocksalt structure is two interpenetrating FCC lattices, one with one kind of atoms and one with another. It would be tempting to define it as\n\nclass NaClFactory(FaceCenteredCubicFactory):\n\"A factory for creating NaCl (B1, Rocksalt) lattices.\"\n\nbravais_basis = [[0, 0, 0], [0.5, 0.5, 0.5]]\nelement_basis = (0, 1)\n\nB1 = NaCl = Rocksalt = NaClFactory()\n\n\nbut if this is used to define a finite system, one surface would be covered with one type of atoms, and the opposite surface with the other. To maintain the stochiometry of the surfaces, it is better to use the simple cubic lattice with a larger basis:\n\n# To prevent a layer of element one on one side, and a layer of\n# element two on the other side, NaCl is based on SimpleCubic instead\n# of on FaceCenteredCubic\nclass NaClFactory(SimpleCubicFactory):\n\"A factory for creating NaCl (B1, Rocksalt) lattices.\"\n\nbravais_basis = [[0, 0, 0], [0, 0, 0.5], [0, 0.5, 0], [0, 0.5, 0.5],\n[0.5, 0, 0], [0.5, 0, 0.5], [0.5, 0.5, 0],\n[0.5, 0.5, 0.5]]\nelement_basis = (0, 1, 1, 0, 1, 0, 0, 1)\n\nB1 = NaCl = Rocksalt = NaClFactory()\n\n\nMore examples can be found in the file ase/lattice/compounds.py."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7739383,"math_prob":0.9663667,"size":10541,"snap":"2022-40-2023-06","text_gpt3_token_len":3042,"char_repetition_ratio":0.12830977,"word_repetition_ratio":0.047709923,"special_character_ratio":0.27208045,"punctuation_ratio":0.20430107,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9507683,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-10-04T07:36:02Z\",\"WARC-Record-ID\":\"<urn:uuid:9fee2a3b-fe46-46b5-a4a6-0f02245e9283>\",\"Content-Length\":\"59234\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:65d4fd02-fa7f-44c2-aca9-522e6e037814>\",\"WARC-Concurrent-To\":\"<urn:uuid:f510f2cf-6293-4cd2-bb30-02c4911ddf86>\",\"WARC-IP-Address\":\"130.225.86.25\",\"WARC-Target-URI\":\"https://wiki.fysik.dtu.dk/ase/ase/lattice.html\",\"WARC-Payload-Digest\":\"sha1:BGVS4FB3ADC6ZB5I7C3GPATQZKY2YEEF\",\"WARC-Block-Digest\":\"sha1:2JYKSV3TORDZHIRFVK2YPWQ3CWEQVWO4\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-40/CC-MAIN-2022-40_segments_1664030337480.10_warc_CC-MAIN-20221004054641-20221004084641-00672.warc.gz\"}"} |
https://www.onlinemathlearning.com/probability-of-an-event.html | [
"# Probability Of An Event\n\nIn these lessons, we will learn how to find the probability of an event.\n\n### What Is An Event In Probability?\n\nIn an experiment, an event is the result that we are interested in.\n\nThe probability of an event A, written P(A), is defined as",
null,
"Example:\nWhen a fair dice is thrown, what is the probability of getting\na) the number 5\nb) a number that is a multiple of 3\nc) a number that is greater than 6\nd) a number that is less than 7\n\nSolution:\nA fair die is an unbiased die where each of the six numbers is equally likely to turn up.\n\nS = {1, 2, 3, 4, 5, 6}\n\na) Let A = event of getting the number 5 = {5}\nLet n(A) = number of outcomes in event A = 1\nn(S) = number of outcomes in S = 6",
null,
"b) Let B = event of getting a multiple of 3\nMultiple of 3 = {3, 6}",
null,
"c) Let C = event of getting a number greater than 6\nThere is no number greater than 6 in the sample space S.\nC ={}",
null,
"A probability of 0 means the event will never occur.\n\nd) Let D = event of getting a number less than 7\nNumbers less than 7 = {1, 2, 3, 4, 5, 6}",
null,
"A probability of 1 means the event will always occur.\n\nExample:\nEach of the letters HELLO is written on a card. A card is chosen at random from the bag. What is the probability of getting the letter ‘L’?\n\nSolution:\nSince the card is randomly selected, it means that each card has the same chance of being selected.\nS = {H, E, L 1, L 2, O} There are two cards with the letter ‘L’\n\nLet A = event of getting the letter ‘L’ = {L 1, L 2}",
null,
"How to calculate the Probability of Simple Events\nExample 1: Find the probability of the next person you meeting having a phone number that ends with 5?\nExample 2: Find the probability of getting all heads if you flip 3 coins?\nExample 3: Find the probability that the person that meet next has a birthday in February? (Non-leap year)\n\nHow to determine the probability of single events and express it as a ratio?\nExample 1: What s the probability of drawing a spade from a deck of 52 playing cards?\nExample 2: If a dart randomly hits the board below, what is the probability that it will hit the shaded region?\nExample 3: It is Cindy’s turn to spin in a game that she is playing with her friends. What is the probability that Cindy will have to move back on this spin?\n\nHow to find the probability of an event?\n\nHow to find the probability of an event?\nExample: Suppose you spin the spinner below. Find the probability of spinning 4. Write the probability as a fraction, a decimal and a percent.\n\nTry the free Mathway calculator and problem solver below to practice various math topics. Try the given examples, or type in your own problem and check your answer with the step-by-step explanations.",
null,
""
] | [
null,
"https://www.onlinemathlearning.com/objects/default_image.gif",
null,
"https://www.onlinemathlearning.com/objects/default_image.gif",
null,
"https://www.onlinemathlearning.com/objects/default_image.gif",
null,
"https://www.onlinemathlearning.com/objects/default_image.gif",
null,
"https://www.onlinemathlearning.com/objects/default_image.gif",
null,
"https://www.onlinemathlearning.com/objects/default_image.gif",
null,
"https://www.onlinemathlearning.com/objects/default_image.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9195814,"math_prob":0.99759746,"size":2861,"snap":"2021-43-2021-49","text_gpt3_token_len":729,"char_repetition_ratio":0.19215961,"word_repetition_ratio":0.05595668,"special_character_ratio":0.2523593,"punctuation_ratio":0.10440457,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99960023,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-10-24T06:58:37Z\",\"WARC-Record-ID\":\"<urn:uuid:c5819e9a-5fa8-44a0-9682-cb3a4ea1fdef>\",\"Content-Length\":\"46309\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:35dfa2fd-e430-4451-a590-269a2172202a>\",\"WARC-Concurrent-To\":\"<urn:uuid:f97702ac-9032-43fd-96f4-9cf6183f74a2>\",\"WARC-IP-Address\":\"173.247.219.45\",\"WARC-Target-URI\":\"https://www.onlinemathlearning.com/probability-of-an-event.html\",\"WARC-Payload-Digest\":\"sha1:NU2DCATFARJNT7MLVTYUDLFCQON6UGL2\",\"WARC-Block-Digest\":\"sha1:L4PDSUVAZ3H7KOQQUIRZEQNDCKTQI7WT\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-43/CC-MAIN-2021-43_segments_1634323585911.17_warc_CC-MAIN-20211024050128-20211024080128-00717.warc.gz\"}"} |
https://discourse.julialang.org/t/function-speed-up-reduce-allocations/71647 | [
"",
null,
"# Function speed up, reduce allocations\n\nHi,\n\nI am working on a combinatorial problem called Block Design:\n\nBlock design - Wikipedia ( specifically Pairwise balanced uniform designs (2-designs or BIBDs) )\n\nI try to group N=25 samples (e.g. integers 1:25) into “blocks” (aka pools) of 5 samples each, where each pair of samples only occurs in one block together. The blocks should be chosen so that 5 of these blocks form a partition of the set of all 25 samples. A partition of the set of all samples into 5 blocks as described above call a “layer”, I try to find as many unique layers as possible. (in the above example there are 6 layers)\n\nI implemented a backtracking algorithm to find solutions to the problem, which currently finds fesible solutions for N=9, N=16,& N=25, but takes prohibitively long for N=36.\n\nTiming for N=25:\n\n@time BlockDesign.run()\n1.606897 seconds (2.06 M allocations: 307.621 MiB, 0.59% gc time)\n\nI think the backtracking algorithm itself can be improved, but looking at the large number of allocations and the Profiler output pointing to the feasible(PD, M, M_) function, this could be address first.\n(Is there a way to attach the complete profiler output as .txt?):\n\nFunction call highlighted by profiler:\n` fs = myfind(feasible(PD, M, M_))`\n\nIn short: how can we make the function feasible(PD, M, M_) faster, either with the current implementation using the Int64 matrices M & M_ or in another way.\n\nThe functions + helper functions needed to run above function call:\n\n``````struct PoolDesign{T<:Integer}\nN::T\nm::T\nq::T\nlmax::T\nend\n\nPD = PoolDesign(\n25, # number samples\n5, # samples per pool\n5, # pools per layer\n6, # layers in pooling design\n)\n\nfunction myfind(c)\na = similar(c, Int)\ncount = 1\nfor i in eachindex(c)\na[count] = i\ncount += (c[i] != zero(eltype(c)))\nend\nreturn resize!(a, count-1)\nend\n\nfunction pool_idx(M, PD)\nfor (i, row) in enumerate(eachrow(M))\nif sum(row) < PD.m\nreturn i\nend\nend\nsize(M,1)\nend\n\nlayer_idx(M, PD) = ((pool_idx(M, PD) - 1)÷PD.q) + 1\n\nlayer(PD, l) = @view M[ ((l-1)*PD.q+1):(l * PD.q), :]\n\ncurrent_layer(M, PD) = layer(PD, layer_idx(M, PD))\n\nfunction feasible(PD, M, M_)\nfeas = collect(1:PD.N)\ncl = current_layer(M, PD)\n# if current layer is empty, all samples are feasible\nif !iszero(cl)\nfor i in 1:PD.N\nfor q in 1:PD.q\nif cl[q, i] == 1\nfeas[i] = 0\nend\nend\nend\n# if current pool is empty,\n# all remaining unplaced samples in layer are feasible\nif !iszero(current_pool(M, PD))\nfor k in myfind(current_pool(M, PD))\nfor l in 1:PD.N\nfeas[l] = feas[l] * M_[k, l]\nend\nfeas[k] = 0\nend\nend\nend\nreturn feas\nend\n\ndims = (PD.lmax * PD.m, PD.N)\nM = zeros(Int64, dims)\nM_ = ones(Int64, PD.N, PD.N)\n\nfs = myfind(feasible(PD, M, M_))\n``````\n\nThe matrix M stores the Block design, assigning the samples (cols) to the different blocks (rows), where M(j,i) = 1 means that sample i is block j.\nThe matrix M_ is symmetric and stores the information about which pairs of samples already occured together in one block.\n\nEx. solution for N=9:\n\n1 1 1 0 0 0 0 0 0 → (1,2,3) |\n0 0 0 1 1 1 0 0 0 → (4,5,6) | Layer 1\n0 0 0 0 0 0 1 1 1 → (7,8,9) |\n1 0 0 1 0 0 1 0 0 → (1,4,7) ]\n0 1 0 0 1 0 0 1 0 → (2,5,8) ] Layer 2\n0 0 1 0 0 1 0 0 1 → (3,6,9) ]\n1 0 0 0 1 0 0 0 1 → (1,5,9) }\n0 1 0 0 0 1 1 0 0 → (2,6,7) } Layer 3\n0 0 1 1 0 0 0 1 0 → (3,4,8) }\n1 0 0 0 0 1 0 1 0 → (1,6,8) ||\n0 1 0 1 0 0 0 0 1 → (2,4,9) || Layer 4\n0 0 1 0 1 0 1 0 0 → (3,5,7) ||\n\nIf this post is in the wrong category, please feel free to move it appropriately.\n\nThanks\nDavid\n\nIt would simplify things considerably if you could post the MWE in one markup block. Then I wouldn’t need to manually compose it.\n\n2 Likes\n\nmy guess just looking at the code is that you should probably expand this `myfind` function into this loop, to get rid of the array that is created by `myfind`, and just iterate over the elements that are necessary directly. That will make the code a little less modular, but at first sight it seems to be the cause of the allocations you are seeing.\n\nThat is, do something like:\n\n``````for val in current_pool(M, PD)\nif val != zero(...)\n# ... do what you need to do\nend\nend\n\n``````\n\nThanks for your answer. I also use the `myfind()` function in other places of the code to get the non-zero elements from the passed arrays.\nWhen ran with `myfind()` I get:\n\n``````@time myfind(feasible(PD, M, M_))\n0.000012 seconds (7 allocations: 768 bytes)\n``````\n\nCompared to:\n\n``````@time feasible(PD, M, M_)\n0.000010 seconds (6 allocations: 480 bytes)\n``````\n\nThere are already allocations occuring in `feasible(PD, M, M_)`, where I tried to set the elements zero, and filter the zero elements out later in `myfind()`.\n\n`myfind` is called from within `feasible`, isn’t it?\n\n(by the way, you can write that myfind with `findall(!isequal(0),x)`, as far as I could understand it, but that won’t be any better)\n\nYes it is, sorry for the confusion.\n\nI got now:\n\n``````function feasible(PD, M, M_)\nfeas = collect(1:PD.N)\n\ncl = current_layer(M, PD)\n# if current layer is empty, all samples are feasible\nif !iszero(cl)\n\nfor i in 1:PD.N\nfor q in 1:PD.q\nif cl[q, i] == 1\nfeas[i] = 0\nend\nend\n\nend\n\n# if current pool is empty,\n# all remaining unplaced samples in layer are feasible\nif !iszero(current_pool(M, PD))\n\nfor k in current_pool(M, PD)\nif k != zero(k)\nfor l in 1:PD.N\nfeas[l] = feas[l] * M_[k, l]\nend\nfeas[k] = 0\nend\nend\nend\nend\nreturn feas\nend\n\n@time feasible(PD, M, M_)\n0.000011 seconds (6 allocations: 480 bytes)\n\n``````\n\nI noticed now that `M` is not an input of `layer`. Probably it should be.\n\n4 Likes\n\nGood eye! This did the trick…\nIt is down to\n\n``````@time feasible(PD, M, M_)\n0.000004 seconds (1 allocation: 160 bytes)\n``````\n\nIs the last allocation due to\n\n`````` feas = collect(1:PD.N)\n``````\n\n?\n\nThat certainly is one allocation.\n\n1 Like\n\nSince `feasible(PD, M, M_)` is called frequently, I will make a preallocated array `feas` that will get passed as a parameter and modified in the function. Thanks for your help!\n\n2 Likes\n\nHi, if you want to construct large balanced incomplete block designs (BIBDs), it might be good to have look at this work (Memetic collaborative approaches for finding balanced incomplete block designs - ScienceDirect), where they proposed several algorithms to construct BIBDs. In your example it seems that you want to construct a resolvable balanced incomplete block design with v = 25, k =5, b = 5, r = 6?\n\n1 Like\n\nOr, preferably, `findall(!iszero, x)`\n\n3 Likes\n\nThanks for suggesting this paper, it is very relevant!\n\nyou want toconstruct a resolvable balanced incomplete block design with v = 25, k =5, b = 5, r = 6?\n\nYes, exactly."
] | [
null,
"https://aws1.discourse-cdn.com/business5/uploads/julialang/original/2X/1/12829a7ba92b924d4ce81099cbf99785bee9b405.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7689895,"math_prob":0.97463137,"size":3397,"snap":"2021-43-2021-49","text_gpt3_token_len":1216,"char_repetition_ratio":0.14412025,"word_repetition_ratio":0.10993976,"special_character_ratio":0.37474242,"punctuation_ratio":0.15981199,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99230105,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-12-07T11:50:31Z\",\"WARC-Record-ID\":\"<urn:uuid:2a7ad176-be30-49bc-9edd-97dd34fd0d20>\",\"Content-Length\":\"48716\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:af811390-6ee0-46d2-a808-ba74c202ebed>\",\"WARC-Concurrent-To\":\"<urn:uuid:1978e010-3df1-4995-8511-4970eaa52527>\",\"WARC-IP-Address\":\"64.71.144.205\",\"WARC-Target-URI\":\"https://discourse.julialang.org/t/function-speed-up-reduce-allocations/71647\",\"WARC-Payload-Digest\":\"sha1:GEE6LIHKR6KB4EPG6MGU76CIMLWFL37T\",\"WARC-Block-Digest\":\"sha1:UMFGGMXTXXAGKCXARBWSVQHQMMXQVTIH\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-49/CC-MAIN-2021-49_segments_1637964363376.49_warc_CC-MAIN-20211207105847-20211207135847-00245.warc.gz\"}"} |
https://planetmath.org/argumentofproductandquotient | [
"# argument of product and quotient\n\nUsing the distributive law, we perform the multiplication\n\n $(\\cos\\varphi_{1}+i\\sin\\varphi_{1})(\\cos\\varphi_{2}+i\\sin\\varphi_{2})=(\\cos% \\varphi_{1}\\cos\\varphi_{2}-\\sin\\varphi_{1}\\sin\\varphi_{2})+i(\\sin\\varphi_{1}% \\cos\\varphi_{2}+\\cos\\varphi_{1}\\sin\\varphi_{2}).$\n\nUsing the addition formulas",
null,
"",
null,
"of cosine (http://planetmath.org/GoniometricFormulae) and sine (http://planetmath.org/GoniometricFormulae) we still obtain the formula\n\n $\\displaystyle(\\cos\\varphi_{1}+i\\sin\\varphi_{1})(\\cos\\varphi_{2}+i\\sin\\varphi_{% 2})=\\cos(\\varphi_{1}+\\varphi_{2})+i\\sin(\\varphi_{1}+\\varphi_{2}).$ (1)\n\nThe inverse number of $\\cos\\varphi_{2}+i\\sin\\varphi_{2}$ is calculated as follows:\n\n $\\frac{1}{\\cos\\varphi_{2}+i\\sin\\varphi_{2}}=\\frac{\\cos\\varphi_{2}-i\\sin\\varphi_% {2}}{(\\cos\\varphi_{2}-i\\sin\\varphi_{2})(\\cos\\varphi_{2}+i\\sin\\varphi_{2})}=% \\frac{\\cos\\varphi_{2}-i\\sin\\varphi_{2}}{\\cos^{2}\\varphi_{2}+\\sin^{2}\\varphi_{2}}$\n\nThis equals $\\cos\\varphi_{2}-i\\sin\\varphi_{2}$, and since the cosine is an even (http://planetmath.org/EvenFunction) and the sine an odd function, we have\n\n $\\displaystyle\\frac{1}{\\cos\\varphi_{2}+i\\sin\\varphi_{2}}=\\cos(-\\varphi_{2})+i% \\sin(-\\varphi_{2}).$ (2)\n\nThe equations (1) and (2) imply\n\n $\\frac{\\cos\\varphi_{1}+i\\sin\\varphi_{1}}{\\cos\\varphi_{2}+i\\sin\\varphi_{2}}=(% \\cos\\varphi_{1}+i\\sin\\varphi_{1})(\\cos(-\\varphi_{2})+i\\sin(-\\varphi_{2}))=\\cos% (\\varphi_{1}+(-\\varphi_{2}))+i\\sin(\\varphi_{1}+(-\\varphi_{2})),$\n\ni.e.\n\n $\\displaystyle\\frac{\\cos\\varphi_{1}+i\\sin\\varphi_{1}}{\\cos\\varphi_{2}+i\\sin% \\varphi_{2}}=\\cos(\\varphi_{1}-\\varphi_{2})+i\\sin(\\varphi_{1}-\\varphi_{2}).$ (3)\n $z_{1}=r_{1}(\\cos\\varphi_{1}+i\\sin\\varphi_{1})\\;\\;\\mbox{and}\\;\\;z_{2}=r_{2}(% \\cos\\varphi_{2}+i\\sin\\varphi_{2})$\n\nwe have\n\n $z_{1}z_{2}=r_{1}r_{2}(\\cos(\\varphi_{1}+\\varphi_{2})+i\\sin(\\varphi_{1}+\\varphi_% {2})),$\n $\\frac{z_{1}}{z_{2}}\\;=\\;\\frac{r_{1}}{r_{2}}(\\cos(\\varphi_{1}-\\varphi_{2})+i% \\sin(\\varphi_{1}-\\varphi_{2})).$\n\nThus we have the\n\nThe modulus",
null,
"",
null,
"of the product of two complex numbers equals the product of the moduli of the factors and the argument",
null,
"",
null,
"equals the sum of the arguments of the factors (http://planetmath.org/Product). The modulus of the quotient of two complex numbers equals the quotient of the moduli of the dividend and the divisor and the argument equals the difference of the arguments of the dividend and the divisor.\n\nRemark. The equation (1) may be by induction generalised for more than two factors of the left hand ; then the special case where all factors are equal gives de Moivre identity",
null,
"",
null,
".\n\nExample. Since\n\n $(2\\!+\\!i)(3\\!+\\!i)=5\\!+\\!5i\\;=\\;5e^{\\frac{\\pi}{4}},$\n\none has\n\n $\\arctan\\frac{1}{2}+\\arctan\\frac{1}{3}\\;=\\;\\frac{\\pi}{4}.$\n Title argument of product and quotient Canonical name ArgumentOfProductAndQuotient Date of creation 2013-03-22 17:45:20 Last modified on 2013-03-22 17:45:20 Owner pahio (2872) Last modified by pahio (2872) Numerical id 8 Author pahio (2872) Entry type Theorem Classification msc 30-00 Classification msc 26A09 Synonym product and quotient of complex numbers Related topic Argument Related topic PolarCoordinates Related topic ModulusOfComplexNumber Related topic Complex Related topic EqualityOfComplexNumbers"
] | [
null,
"http://planetmath.org/sites/default/files/fab-favicon.ico",
null,
"http://planetmath.org/sites/default/files/fab-favicon.ico",
null,
"http://planetmath.org/sites/default/files/fab-favicon.ico",
null,
"http://planetmath.org/sites/default/files/fab-favicon.ico",
null,
"http://mathworld.wolfram.com/favicon_mathworld.png",
null,
"http://planetmath.org/sites/default/files/fab-favicon.ico",
null,
"http://mathworld.wolfram.com/favicon_mathworld.png",
null,
"http://planetmath.org/sites/default/files/fab-favicon.ico",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6758135,"math_prob":0.999846,"size":1717,"snap":"2019-35-2019-39","text_gpt3_token_len":429,"char_repetition_ratio":0.14010508,"word_repetition_ratio":0.048780486,"special_character_ratio":0.24228305,"punctuation_ratio":0.08783784,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99998975,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-09-23T08:53:08Z\",\"WARC-Record-ID\":\"<urn:uuid:3a30327a-43b4-4587-bd7b-7c7ac463b646>\",\"Content-Length\":\"28246\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:5ce991a7-5e5d-4421-8679-df28eb5ae0b5>\",\"WARC-Concurrent-To\":\"<urn:uuid:3fb3a755-1855-4941-93f5-b0f2724effdc>\",\"WARC-IP-Address\":\"129.97.206.129\",\"WARC-Target-URI\":\"https://planetmath.org/argumentofproductandquotient\",\"WARC-Payload-Digest\":\"sha1:6CKDSFL6TVF3BJIH7P6CXVZRUETUR33H\",\"WARC-Block-Digest\":\"sha1:CFACFQ2WABDWSUP42VQQ3XK5BNHSJQJV\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-39/CC-MAIN-2019-39_segments_1568514576345.90_warc_CC-MAIN-20190923084859-20190923110859-00112.warc.gz\"}"} |
http://www.tutorialspoint.com/dip/color_codes_conversion.htm | [
"# Color Codes Conversion\n\nIn this tutorial, we will see that how different color codes can be combined to make other colors, and how we can covert RGB color codes to hex and vice versa.\n\n## Different color codes\n\nAll the colors here are of the 24 bit format, that means each color has 8 bits of red, 8 bits of green, 8 bits of blue, in it. Or we can say each color has three different portions. You just have to change the quantity of these three portions to make any color.\n\n## Color:Black\n\n### Image:",
null,
"(0,0,0)\n\n### Explanation:\n\nAs it has been explained in the previous tutorials, that in an 8-bit format, 0 refers to black. So if we have to make a pure black color, we have to make all the three portion of R, G, B to 0.\n\n## Color:White\n\n### Image:",
null,
"(255,255,255)\n\n### Explanation:\n\nSince each portion of R, G, B is an 8 bit portion. So in 8-bit, the white color is formed by 255. It is explained in the tutorial of pixel. So in order to make a white color we set each portion to 255 and thats how we got a white color. By setting each of the value to 255, we get overall value of 255, thats make the color white.\n\n## Color:Red\n\n### Image:",
null,
"(255,0,0)\n\n### Explanation:\n\nSince we need only red color, so we zero out the rest of the two portions which are green and blue, and we set the red portion to its maximum which is 255.\n\n## Color:Green\n\n### Image:",
null,
"(0,255,0)\n\n### Explanation:\n\nSince we need only green color, so we zero out the rest of the two portions which are red and blue, and we set the green portion to its maximum which is 255.\n\n## Color: Blue\n\n### Image:",
null,
"(0,0,255)\n\n### Explanation:\n\nSince we need only blue color, so we zero out the rest of the two portions which are red and green, and we set the blue portion to its maximum which is 255\n\n## Gray color:\n\n### Image:",
null,
"(128,128,128)\n\n### Explanation\n\nAs we have already defined in our tutorial of pixel, that gray color Is actually the mid point. In an 8-bit format, the mid point is 128 or 127. In this case we choose 128. So we set each of the portion to its mid point which is 128, and that results in overall mid value and we got gray color.\n\n## CMYK color model:\n\nCMYK is another color model where c stands for cyan, m stands for magenta, y stands for yellow, and k for black. CMYK model is commonly used in color printers in which there are two carters of color is used. One consist of CMY and other consist of black color.\n\nThe colors of CMY can also made from changing the quantity or portion of red, green and blue.\n\n## Color: Cyan\n\n### Image:",
null,
"(0,255,255)\n\n### Explanation:\n\nCyan color is formed from the combination of two different colors which are Green and blue. So we set those two to maximum and we zero out the portion of red. And we get cyan color.\n\n## Color: Magenta\n\n### Image:",
null,
"(255,0,255)\n\n### Explanation:\n\nMagenta color is formed from the combination of two different colors which are Red and Blue. So we set those two to maximum and we zero out the portion of green. And we get magenta color.\n\n## Color: Yellow\n\n### Image:",
null,
"(255,255,0)\n\n### Explanation:\n\nYellow color is formed from the combination of two different colors which are Red and Green. So we set those two to maximum and we zero out the portion of blue. And we get yellow color.\n\n## Conversion\n\nNow we will see that how color are converted are from one format to another.\n\n### Conversion from RGB to Hex code:\n\nConversion from Hex to rgb is done through this method:\n\n• Take a color. E.g: White = (255, 255, 255).\n\n• Take the first portion e.g 255.\n\n• Divide it by 16. Like this:\n\n•",
null,
"• Take the two numbers below line, the factor, and the remainder. In this case it is 15 � 15 which is FF.\n\n• Repeat the step 2 for the next two portions.\n\n• Combine all the hex code into one.\n\n### Conversion from Hex to RGB:\n\nConversion from hex code to rgb decimal format is done in this way.\n\nTake a hex number. E.g: #FFFFFF\n\nBreak this number into 3 parts: FF FF FF\n\nTake the first part and separate its components: F F\n\nConvert each of the part separately into binary: (1111) ( 1111)\n\nNow combine the individual binaries into one: 11111111\n\nConvert this binary into decimal: 255\n\nNow repeat step 2, two more times.\n\nThe value comes in the first step is R, second one is G, and the third one belongs to B.\n\nAnswer: ( 255 , 255 , 255 )\n\nColor Hex Code\nBlack #000000\nWhite #FFFFFF\nGray #808080\nRed #FF0000\nGreen #00FF00\nBlue #0000FF\nCyan #00FFFF\nMagenta #FF00FF\nYellow #FFFF00"
] | [
null,
"http://www.tutorialspoint.com/dip/images/black.jpg",
null,
"http://www.tutorialspoint.com/dip/images/white.jpg",
null,
"http://www.tutorialspoint.com/dip/images/red.jpg",
null,
"http://www.tutorialspoint.com/dip/images/green.jpg",
null,
"http://www.tutorialspoint.com/dip/images/blue.jpg",
null,
"http://www.tutorialspoint.com/dip/images/gray.jpg",
null,
"http://www.tutorialspoint.com/dip/images/cyan.jpg",
null,
"http://www.tutorialspoint.com/dip/images/magenta.jpg",
null,
"http://www.tutorialspoint.com/dip/images/yellow.jpg",
null,
"http://www.tutorialspoint.com/dip/images/conversion.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.91958666,"math_prob":0.9407276,"size":3822,"snap":"2021-21-2021-25","text_gpt3_token_len":1006,"char_repetition_ratio":0.13933997,"word_repetition_ratio":0.14112903,"special_character_ratio":0.2883307,"punctuation_ratio":0.1287016,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.97220176,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],"im_url_duplicate_count":[null,8,null,4,null,4,null,4,null,4,null,4,null,4,null,4,null,4,null,4,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-05-08T12:38:09Z\",\"WARC-Record-ID\":\"<urn:uuid:b59b7bf4-7884-4aea-9496-09a61f079412>\",\"Content-Length\":\"32445\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:2b352902-8e57-4b02-ab94-601e8fee0ab5>\",\"WARC-Concurrent-To\":\"<urn:uuid:ae159b8e-c078-4988-a7b3-a8ce2f839405>\",\"WARC-IP-Address\":\"72.21.91.42\",\"WARC-Target-URI\":\"http://www.tutorialspoint.com/dip/color_codes_conversion.htm\",\"WARC-Payload-Digest\":\"sha1:LUIMJWJVYI7TJ2K25FRUEGCOXNAZ7KPS\",\"WARC-Block-Digest\":\"sha1:YACDBSPFAAQUUELYPGVB7CT26CE2KFJN\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-21/CC-MAIN-2021-21_segments_1620243988882.7_warc_CC-MAIN-20210508121446-20210508151446-00507.warc.gz\"}"} |
https://puzzling.stackexchange.com/questions/54283/sum-of-secret-numbers-is-101 | [
"# Sum of secret numbers is 101\n\nAlice, Bob, and Charlie were given three numbers, respectively. They were said that all the three numbers were positive integers and the sum was 101.\n\nAlice: I know we have different numbers.\n\nBob: Aha, I got it. I found all the numbers.\n\nCharlie: Me, too. I know our numbers, now.\n\nAlice: Alas, I still don't know.\n\nWhat were the three numbers?\n\n• all positive integer numbers?\n– Oray\nAug 17, 2017 at 9:12\n• @Oray Oh, I missed. Yes, they were all positive. Aug 17, 2017 at 9:12\n• Very close to this puzzle Aug 17, 2017 at 17:03\n\nAlice: I know we have different numbers.\n\nAlice has an even number larger than 50, so at least 52.\n\nBob: Aha, I got it. I found all the numbers.\n\nIf Bob has a number less than 47, then he can't tell if Alice's number if 52 or 54. Thus Bob's number is 47 or 48, and Alice's is 52. (Bob's number is at most 48 since Alice's is at least 52)\n\nCharlie: Me, too. I know our numbers, now.\n\nWell, duh. Assuming Bob is competent with logic, his number is the last one needed to fill in this gap.\n\nAlice: Alas, I still don't know.\n\nWe don't, either. The possible choices now are $(a,b,c)=(52,48,1)$ or $(52,47,2)$\n\n• Ooooops! Sorry. My mistake. Could you read again after I edited it? Aug 17, 2017 at 9:29\n• Alice's sentence should be corrected to \"we have different numbers.\" Aug 17, 2017 at 9:31\n• Then Alice can work out the three numbers! Actually, Alice has at least as much information as us, so Alice can always work out the three numbers, if we are able to. Aug 17, 2017 at 9:32\n• Right! It's better to correct the numbers in Bob's deduction. Aug 17, 2017 at 9:44\n• Bob can have 47 or 48, as shown in the final answer, not 48 or 49 as stated in Bob's deduction. Aug 18, 2017 at 2:54\n\nAlice has 52, Bob has 47 or 48, and Charlie has 2 or 1 (respectively)\n\nAlice: I know we have different numbers.\n\nSo no one can have the same number as Alice, it must be 51 or over. Also, so Bob and Charlie cannot have the same number, the remainder must be odd. Namely, Alice's number is even. Therefore, Alice's number is in {52, 54, ... 98}.\n\nBob: Aha, I got it. I found all the numbers.\n\nIf Bob has 48, he would know that the others are 52 and 1. If he has 47, he would know that the others are 52 and 2. But if he has anything lower than that, there would always be more than one option for the others. For example, of he has 46, than Alice and Charlie can have 52 and 3 OR 54 and 1. So Bob has 47 or 48 (and Alice has 52).\n\nCharlie: Me, too. I know our numbers, now.\n\nOf course - if he has 1, than Bob has 48. If he has 2, Bob has 47. And Alice has 52.\n\nAlice: Alas, I still don't know.\n\nIndeed, she doesn't. Nor do we...\n\n• I don't get it. Why Alice must have 51 or over? Why not 49? Then 3 numbers would be 49, 50, 2. What's wrong in there?\n– jack\nAug 18, 2017 at 18:46\n• @mikele Had she had 49, the 3 numbers could also have been (49, 49, 3). This is true for any number smaller than 51 - someone else could have had the same number as her. The fact that she knows that all numbers are different tells us that her number is 51 or larger. Aug 19, 2017 at 19:46\n• But it could have been also (49, 47, 5), so all 3 different numbers. I don't know. Personally the questions doesn't satisfy me.\n– jack\nAug 19, 2017 at 21:43\n• @mikele Alice knows for certain that no number is the same as hers. If there is any possibility of a=b or a=c, then she cannot state that no one has the same number as hers. Since (49, 49, 3) is possible, then she would not have made the statement she made if her number were 49. Aug 21, 2017 at 11:59\n\nHere is what we know:\n\n1. All numbers are positive and integers\n2. They are different\n3. Bob could deduce all 3 numbers just by knowing his number\n4. Charlie could know all 3 numbers by knowing his number and knowing that Bob could deduce all three numbers by knowing his number (point 3 above)\n5. Alice could not deduce her number after knowing points 1-4\n\nSo now, lets find the numbers: Bob could deduce his number just by looking at his number. Which means he had a number, which coupled with just one unique combination of 2 distinct positive integers could result in a sum total of 101.\n\nThe only number I can think of is 97 or 98. If he had 97 then he knows the other 2 numbers have to be 3 and 1: 97 + 3 + 1 = 101\n\nand if he had 98, then he knows the other two numbers had to be 2 and 1: 98 + 2 + 1 = 101\n\nOn the contrary, if he had a 96 for example (or anything lower), there exists more than one combination of distinct integers which could add to 101: 96 + 4 + 1 = 101 and also 96 + 3 + 2 = 101. He could never know for sure what Alice and Charlie have.\n\nNow lets look at Charlie. Charlie being the smart guy he is, immediately put 2 and 2 together (or in this case 3 numbers which add top 101). He knows Bob either has 98 or 97. To get a definite answer he looks at his own number. If it is a 2 then he knows Bob has a 98 and clueless Alice has a 1. If he has a 3, he knows Bob has a 97 and dumbfounded Alice has a 1.\n\nLastly, we go to Alice, she is at a disadvantage her. She has figured the set is {97,3,1} or {98,2,1} but since both result in her having a 1, she cannot pick which case is true here and hence cannot pick the correct set.\n\nFINAL ANSWER: {97,3,1} or {98,2,1}\n\nNote: the question asks for the 3 numbers and not who had what number. So When Bob says he knows the numbers, he knows the 3 numbers without knowing who had what. this changes when Charlie proclaims he knows the 3 numbers as well, Bob and Charlie now know the 3 numbers and who had what.\n\n• If Alice is holding 1, 2, or 3, how does she know for certain that the other two numbers are unique? If instead you are implying that she is holding 97 or 98, then if Bob is holding 1, 2, or 3 how does he know what all three numbers are knowing only what number he is holding (1,2, or 3) and that Alice has told them all three numbers are unique? Aug 21, 2017 at 12:09"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.98602337,"math_prob":0.93243563,"size":1962,"snap":"2022-40-2023-06","text_gpt3_token_len":540,"char_repetition_ratio":0.1639428,"word_repetition_ratio":0.024630541,"special_character_ratio":0.29459736,"punctuation_ratio":0.09662921,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98880994,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-09-30T05:32:47Z\",\"WARC-Record-ID\":\"<urn:uuid:1a91a2d6-ae55-435b-80ab-ead441e2f9aa>\",\"Content-Length\":\"258303\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:04bebf74-04d6-45b8-af8b-9813fbbb5cd4>\",\"WARC-Concurrent-To\":\"<urn:uuid:d7b3c77b-62a1-482b-a649-abdd1d56c943>\",\"WARC-IP-Address\":\"151.101.129.69\",\"WARC-Target-URI\":\"https://puzzling.stackexchange.com/questions/54283/sum-of-secret-numbers-is-101\",\"WARC-Payload-Digest\":\"sha1:MSKY3PW4A4M4XL3YBYNKP2TR4HKQBP5U\",\"WARC-Block-Digest\":\"sha1:7LIHXNDNKSY7DJHECQLTPAPG4R6ZBZQH\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-40/CC-MAIN-2022-40_segments_1664030335444.58_warc_CC-MAIN-20220930051717-20220930081717-00146.warc.gz\"}"} |
https://mathfraction.com/square-root-fraction/distance-of-points/directed-numbers-worksheet.html | [
"Try the Free Math Solver or Scroll down to Tutorials!\n\n Depdendent Variable\n\n Number of equations to solve: 23456789\n Equ. #1:\n Equ. #2:\n\n Equ. #3:\n\n Equ. #4:\n\n Equ. #5:\n\n Equ. #6:\n\n Equ. #7:\n\n Equ. #8:\n\n Equ. #9:\n\n Solve for:\n\n Dependent Variable\n\n Number of inequalities to solve: 23456789\n Ineq. #1:\n Ineq. #2:\n\n Ineq. #3:\n\n Ineq. #4:\n\n Ineq. #5:\n\n Ineq. #6:\n\n Ineq. #7:\n\n Ineq. #8:\n\n Ineq. #9:\n\n Solve for:\n\n Please use this form if you would like to have this math solver on your website, free of charge. Name: Email: Your Website: Msg:\n\n### Our users:\n\nMy fourteen year-old son, Bradley, was considered at-risk by his school. But, I couldnt make him listen to me. Then when a teacher at his school, Mr. Kindler bless his heart, got him to try an after-school program, it was like a miracle! I wouldnt say Bradley became a model student but he was no longer failing his math classes. So when I found out that Mr. Kindler based his entire program on using Algebrator, I just had to write this letter to say Thank You! Imagine that!\nSamuel Lee, CA\n\nCan I simply tell you how wonderful you are? May seem like a simple thing to you, but you just restored my faith in mankind (no small thing). Thank you for your kind and speedy response.\nMr. Tom Carol, NY\n\nThis software is the best of its kind. The explanations of each step are excellent and easy to understand. A must have for any parent with high school age children. Well done.\nChris Ress, OH\n\n### Students struggling with all kinds of algebra problems find out that our software is a life-saver. Here are the search phrases that today's searchers used to find our site. Can you find yours among them?\n\n#### Search phrases used on 2014-02-28:\n\n• algebra world problem solver online\n• matlab solving system of nonlinear differential equations\n• Conversion from mix fraction to decimal\n• slope y intercept worksheet generator\n• do my algebra\n• sample worksheets of grade VII maths\n• college algebra for dummies\n• algebra substitution method\n• math elimination worksheets\n• hard math fractions worksheets\n• Algebra For Beginners\n• how to solve maths hours problems kids sats\n• how to factor out cubes\n• linear programing word problem with solution\n• north carolina edition mcdougal littell science grade 6 standardized test practice\n• texas instruments calculator solve function\n• how to do log base 2 on a ti 89\n• algebra games for 9th graders\n• convert percentages to decimal calculator\n• java+square cube\n• ebooks free costing accounts\n• matlab ode45 tutorial\n• excel formula to convert decimal to percent\n• prentice hall algebra 2 trig answers\n• liner graph\n• how to solve 2 equation on the TI - 83calculator\n• Algebra Cheats\n• combining like term worksheet\n• cramer's rule+code in java\n• free algebra fractions calculator\n• matlab differential equation solve\n• percent formulas\n• solving homogeneous differential equations\n• how to practise maths in intermediate second year give me tips\n• how to square large polynomials\n• calculate + following expression in simplified radical form\n• how to factor on a TI 84 Silver Edition\n• Where can I find out how to do certain funtions on a TI-83 Plus calculator online for free?\n• algebra solver\n• mathematical trivia\n• sqaure\n• printable algebra exams on sequences and series\n• application of algebra\n• fractions and decimals equation calculators\n• learning basic algebra free\n• egyptian multiplication to compute the value of exponential a\n• samples of math trivia\n• FREE ADDITION AND SUBTRACTION WORKSHEET WITH FOUR ROWS\n• concept of simple interest in mathsin Indian education\n• factoring in algebra\n• Finding Values of Exponential Expressions\n• multivariable limits calculator\n• find the sum of the integers which are divisible\n• program quadratic formula into ti 83\n• algebra 1 workbook\n• holt chemistry answer to test\n• cost accounting books\n• how do I do algebra with cubes\n• Linear Equations 8TH GRADE WORKSHEETS\n• square root on ti-83\n• simultaneous equations presentation\n• rearranging linear equations\n• maths test yr8\n• common denominator algebra\n• how to solve multiple variable differential equations\n• matlab time integration step\n• free algebra for dommies\n• algebra in grade 9 or 10 with equations"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9831248,"math_prob":0.89464295,"size":1098,"snap":"2019-43-2019-47","text_gpt3_token_len":251,"char_repetition_ratio":0.075868376,"word_repetition_ratio":0.0,"special_character_ratio":0.22495446,"punctuation_ratio":0.12017167,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9973364,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-11-20T18:10:27Z\",\"WARC-Record-ID\":\"<urn:uuid:5e8a11ed-e82a-4aad-b03c-e0aa3fc02399>\",\"Content-Length\":\"80575\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:792656e0-184f-4008-9cb0-f7ddf54de44c>\",\"WARC-Concurrent-To\":\"<urn:uuid:74c11779-f2e1-4775-a56c-7bf0b3acb3a4>\",\"WARC-IP-Address\":\"54.197.228.212\",\"WARC-Target-URI\":\"https://mathfraction.com/square-root-fraction/distance-of-points/directed-numbers-worksheet.html\",\"WARC-Payload-Digest\":\"sha1:N4WZFQXBQOOFWQ6AK7SGM2ZDZHDXC2TQ\",\"WARC-Block-Digest\":\"sha1:FVOAWMA5N46XSAOQ7AW7T4C5A7WUNTN5\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-47/CC-MAIN-2019-47_segments_1573496670597.74_warc_CC-MAIN-20191120162215-20191120190215-00341.warc.gz\"}"} |
https://convertoctopus.com/66-5-grams-to-ounces | [
"## Conversion formula\n\nThe conversion factor from grams to ounces is 0.03527396194958, which means that 1 gram is equal to 0.03527396194958 ounces:\n\n1 g = 0.03527396194958 oz\n\nTo convert 66.5 grams into ounces we have to multiply 66.5 by the conversion factor in order to get the mass amount from grams to ounces. We can also form a simple proportion to calculate the result:\n\n1 g → 0.03527396194958 oz\n\n66.5 g → M(oz)\n\nSolve the above proportion to obtain the mass M in ounces:\n\nM(oz) = 66.5 g × 0.03527396194958 oz\n\nM(oz) = 2.3457184696471 oz\n\nThe final result is:\n\n66.5 g → 2.3457184696471 oz\n\nWe conclude that 66.5 grams is equivalent to 2.3457184696471 ounces:\n\n66.5 grams = 2.3457184696471 ounces\n\n## Alternative conversion\n\nWe can also convert by utilizing the inverse value of the conversion factor. In this case 1 ounce is equal to 0.42630861842105 × 66.5 grams.\n\nAnother way is saying that 66.5 grams is equal to 1 ÷ 0.42630861842105 ounces.\n\n## Approximate result\n\nFor practical purposes we can round our final result to an approximate numerical value. We can say that sixty-six point five grams is approximately two point three four six ounces:\n\n66.5 g ≅ 2.346 oz\n\nAn alternative is also that one ounce is approximately zero point four two six times sixty-six point five grams.\n\n## Conversion table\n\n### grams to ounces chart\n\nFor quick reference purposes, below is the conversion table you can use to convert from grams to ounces\n\ngrams (g) ounces (oz)\n67.5 grams 2.381 ounces\n68.5 grams 2.416 ounces\n69.5 grams 2.452 ounces\n70.5 grams 2.487 ounces\n71.5 grams 2.522 ounces\n72.5 grams 2.557 ounces\n73.5 grams 2.593 ounces\n74.5 grams 2.628 ounces\n75.5 grams 2.663 ounces\n76.5 grams 2.698 ounces"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7834575,"math_prob":0.9976091,"size":1703,"snap":"2022-40-2023-06","text_gpt3_token_len":522,"char_repetition_ratio":0.19835196,"word_repetition_ratio":0.0,"special_character_ratio":0.3840282,"punctuation_ratio":0.14854111,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9958863,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-02-08T03:54:38Z\",\"WARC-Record-ID\":\"<urn:uuid:bc864155-88ce-48ad-9a56-77899076c3f3>\",\"Content-Length\":\"25599\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:9ea85bfc-c59e-4904-aa01-acfd6f43817f>\",\"WARC-Concurrent-To\":\"<urn:uuid:72ceb85d-c901-46e6-9aae-03f710c458ad>\",\"WARC-IP-Address\":\"172.67.171.60\",\"WARC-Target-URI\":\"https://convertoctopus.com/66-5-grams-to-ounces\",\"WARC-Payload-Digest\":\"sha1:YYBEGOL7ZQASYUJLTGF5XX4I4R5I3EJ2\",\"WARC-Block-Digest\":\"sha1:CTI2CDVJNF4C57XZBVJNL2PKD44YZBK4\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-06/CC-MAIN-2023-06_segments_1674764500671.13_warc_CC-MAIN-20230208024856-20230208054856-00357.warc.gz\"}"} |
https://askinglot.com/how-is-algebra-used-in-finance | [
"",
null,
"asked in category: General Last Updated: 25th June, 2020\n\n# How is algebra used in finance?\n\nLinear algebra is used to study financial trading strategies and expectations. Financial conditions are examined via matrix equations, using rank, column space, and null space arguments.\n\nIn this manner, what kind of math is used in finance?\n\nIn addition to the Calculus I and Introduction to Probability and Statistics courses that their peers in other business programs take, these students will likely study Calculus II and III, Linear Algebra with Differential Equations, Applied Linear Regression, Fourier Analysis and Partial Differential Equations and\n\nAlso Know, is the math in finance hard? In finance, there is a stream called quantitative analysis, which is basically statistical methods. For this you will need a good grasp of mathematics, and should be able to remember or visualise the logic of formulae. however for the most part its not very hard. Like being able to multiply, take squares, roots etc.\n\nSimilarly, you may ask, what are matrices used for in finance?\n\nMatrix algebra is useful for computing the variance (or risk) of a portfolio that contains many assets. Matrix algebra is used in financial risk management. A matrix is used to describe the outcomes or payoff of an investment or venture.\n\nHow is math used in investment banking?\n\nMost of the Investment banking team (specifically M&A, Equity Capital Markets, Debt Capital Markets) will use basic Algebra and Arithmetic, however it may vary if you are working on any predictive financial model which doesn't use any of the available templates and you are building a new model from scratch.\n\n3\n\n25th June, 2020\n\n102\n\nQuestions\n\nVideos\n\nUsers"
] | [
null,
"https://askinglot.com/img/default.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.93945754,"math_prob":0.8091498,"size":1492,"snap":"2021-31-2021-39","text_gpt3_token_len":301,"char_repetition_ratio":0.104166664,"word_repetition_ratio":0.0,"special_character_ratio":0.1930295,"punctuation_ratio":0.118705034,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98681813,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-07-29T01:26:37Z\",\"WARC-Record-ID\":\"<urn:uuid:7b2f9e7d-f984-4e39-b617-cab67f80e016>\",\"Content-Length\":\"26763\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:aa082f5d-5bcf-4847-a6bf-20c9d8e70677>\",\"WARC-Concurrent-To\":\"<urn:uuid:f0917756-0f23-4aa4-a695-a1861a2c21b0>\",\"WARC-IP-Address\":\"104.26.13.3\",\"WARC-Target-URI\":\"https://askinglot.com/how-is-algebra-used-in-finance\",\"WARC-Payload-Digest\":\"sha1:6M7YVPHIQAA55RDIBO65JNLMT4ELMKLV\",\"WARC-Block-Digest\":\"sha1:WVSQMATMJLVZPSTD7PQMVR5WDKWOLBDO\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-31/CC-MAIN-2021-31_segments_1627046153814.37_warc_CC-MAIN-20210729011903-20210729041903-00571.warc.gz\"}"} |
https://www.dsprelated.com/documents-1/mp/Blogs/all.php | [
"",
null,
"## Launch of Youtube Channel: My First Videos - Embedded World 2017\n\nI went to Embedded World 2017 in Nuremberg with an ambitious plan; I would make video highlights of several exhibits (booths) to be presented to the *Related sites audience. I would try to make the vendors focus their pitch on the essential...",
null,
"## A Two Bin Exact Frequency Formula for a Pure Complex Tone in a DFT\n\n1 comment\n\nIntroduction This is an article to hopefully give a better understanding to the Discrete Fourier Transform (DFT) by deriving an exact formula for the frequency of a complex tone in a DFT. It is basically a parallel treatment to the real case...",
null,
"## DFT Bin Value Formulas for Pure Complex Tones\n\nIntroduction This is an article to hopefully give a better understanding to the Discrete Fourier Transform (DFT) by deriving an analytical formula for the DFT of pure complex tones and an alternative variation. It is basically a parallel...",
null,
"## Multi-Decimation Stage Filtering: Design and Optimization\n\n1 comment\n\nDuring my research on digital FIR decimation filters I have been developing various Matlab scripts and functions. In which I have decided later on to consolidate it in a form of a toolbox. I have developed this toolbox to assist and...",
null,
"## Canonic Signed Digit (CSD) Representation of Integers\n\n1 comment\n\nIn my last post I presented Matlab code to synthesize multiplierless FIR filters using Canonic Signed Digit (CSD) coefficients. I included a function dec2csd1.m (repeated here in Appendix A) to convert decimal integers to binary CSD...",
null,
"## Frequency Translation by Way of Lowpass FIR Filtering\n\n1 comment\n\nSome weeks ago a question appeared on the dsp.related Forum regarding the notion of translating a signal down in frequency and lowpass filtering in a single operation . It is possible to implement such a process by embedding a discrete cosine...",
null,
"## Minimum Shift Keying (MSK) - A Tutorial\n\n7 comments\n\nMinimum Shift Keying (MSK) is one of the most spectrally efficient modulation schemes available. Due to its constant envelope, it is resilient to non-linear distortion and was therefore chosen as the modulation technique for the GSM cell phone...",
null,
"## Round Round Get Around: Why Fixed-Point Right-Shifts Are Just Fine\n\n1 comment\n\nToday’s topic is rounding in embedded systems, or more specifically, why you don’t need to worry about it in many cases.One of the issues faced in computer arithmetic is that exact arithmetic requires an ever-increasing bit length to...",
null,
"## Some Thoughts on Sampling\n\n1 comment\n\nSome time ago, I came across an interesting problem. In the explanation of sampling process, a representation of impulse sampling shown in Figure 1 below is illustrated in almost every textbook on DSP and communications. The question is: how is...",
null,
"## Matlab Code to Synthesize Multiplierless FIR Filters\n\nThis article presents Matlab code to synthesize multiplierless Finite Impulse Response (FIR) lowpass filters. A filter coefficient can be represented as a sum of powers of 2. For example, if a coefficient = decimal 5 multiplies input x,..."
] | [
null,
"https://www.dsprelated.com/new2/Documents_Covers/3940.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3939.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3937.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3936.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3935.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3932.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3931.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3929.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3934.200.jpg",
null,
"https://www.dsprelated.com/new2/Documents_Covers/3926.200.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.89114916,"math_prob":0.63105685,"size":5981,"snap":"2019-35-2019-39","text_gpt3_token_len":1235,"char_repetition_ratio":0.09670403,"word_repetition_ratio":0.2138158,"special_character_ratio":0.19478348,"punctuation_ratio":0.10910816,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.96501714,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],"im_url_duplicate_count":[null,9,null,10,null,10,null,8,null,7,null,7,null,2,null,7,null,7,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-08-18T19:30:47Z\",\"WARC-Record-ID\":\"<urn:uuid:ad6a4aa3-2b89-472b-85f9-c7d51802d9f7>\",\"Content-Length\":\"54867\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:d442646d-6e75-4ada-80fc-470a25261c52>\",\"WARC-Concurrent-To\":\"<urn:uuid:cd20b748-2279-4dc0-a29a-5d1aa78ed72a>\",\"WARC-IP-Address\":\"64.64.12.128\",\"WARC-Target-URI\":\"https://www.dsprelated.com/documents-1/mp/Blogs/all.php\",\"WARC-Payload-Digest\":\"sha1:ZI2SEH5V37XSLSKPMD7SNCTM5EDUXIQ3\",\"WARC-Block-Digest\":\"sha1:CGFRH5KOMUCOFXCFSYWUOSFHTW6G2S6H\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-35/CC-MAIN-2019-35_segments_1566027313996.39_warc_CC-MAIN-20190818185421-20190818211421-00287.warc.gz\"}"} |
https://lumina.com/early-covid-19-decay-rates-for-countries-that-have-peaked/ | [
"# Early COVID-19 decay rates for countries that have peaked\n\nShare Now\n\n(Posted on 23 Apr 2020)\n\nIn previous articles [C20a, H20], my colleague and I have written about how the number of cases and deaths from COVID-19 follows a triangle shape over time when plotted with a log-scaled Y axis. A log-Y axis turns exponential growth into a straight line with a positive slope and exponential decay into a straight line with a negative slope. The negative slope results from the effects of social distancing measures. There is a roughly three week time lag between the introduction of lock down measures to the peak of the daily deaths curve, due to the fact that people who just caught the disease when social distancing starts and will eventually die from it, typically die about three weeks later.",
null,
"The Triangle Suppression model on a log-Y plot. After a time lag, the impact of lock down measures kicks in, causing an exponential decay. Figure taken from [H20].A key prediction of the Triangle Suppression model is that the decay phase is likely to be slower than the growth phase. In China, the decay during recovery was slower the growth phase by a factor of two. For the rest of the world where only less extreme lock downs are possible, the model predicts that the recovery will occur more slowly. In [C20b], I critiqued the IMHE model [IMHE20] from HealthData.org, where my largest concern was the assumption that recovery will occur at the same rate as growth, which underestimates the length of the recovery time relative to the Triangle Suppression model.\n\nA few countries appear to have crossed a peak, with just enough data to get a preliminary reading of their decay rates. In this article, I share these graphs, and look at the ratio of growth rate to decay rate for these countries.\n\n# Daily deaths\n\nThe plots in this section show the number of deaths per day from COVID-19 (from the John Hopkins data set [JH20]) for several countries that seem to have crossed a peak, plotted on a log-Y axis. Exponential growth and decay lines are super-imposed.",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"It is worth mentioning that the number of deaths per day is already below half of their peak rates for these countries (except Iran), which by any measure is a big improvement. On a linear Y scale, a reduction to 1/2 the peak rate looks dramatic, as seen in the same data for Spain shown here with a linearly-scaled Y axis.",
null,
"Daily deaths from COVID-19 in Spain on a linearly-scaled Y axis. Same data as the earlier plot for Spain.\n\n# Comparison of growth and decay rates\n\nThe following table compares the daily growth and decay rates for each country. The Growth/Decay column shows the ratio of the growth rate to the decay rate. Currently, the recovery rate varies from half the growth rate (in China) to 1/13th as fast (Iran). The final Date suppressed column shows the date when the decay trend line crosses the ten deaths per day level.",
null,
"The daily growth and decay rates, and their ratio. The final column shown the date when the current decay trend line crosses 10 deaths per day.\n\n# Summary",
null,
"The exponential decay rate during recovery gives us an indication of how long the recovery phase will last, assuming today’s level of lock down measures remain in place. The decay rate may improve with medical breakthroughs, tighter lock downs, high levels of immunity, or altered societal behaviors. They may get worse, or even reverse, with loosing of social distancing measures.\n\nWith the exception of China, all the countries shown here appear to have barely crossed the peak. The apparent decay rates as of today are preliminary given that these countries have not been past the peak for very long.\n\nShare Now\nScroll to Top"
] | [
null,
"https://analytica.com/wp-content/uploads/The-elements-of-the-suppression-triangle.png",
null,
"https://analytica.com/wp-content/uploads/China-daily-deaths.png",
null,
"https://analytica.com/wp-content/uploads/France-daily-deaths.png",
null,
"https://analytica.com/wp-content/uploads/Iran-daily-deaths.png",
null,
"https://analytica.com/wp-content/uploads/Italy-daily-deaths.png",
null,
"https://analytica.com/wp-content/uploads/Philippines-daily-deaths.png",
null,
"https://analytica.com/wp-content/uploads/Spain-daily-deaths.png",
null,
"https://analytica.com/wp-content/uploads/Switzerland-daily-deaths.png",
null,
"https://analytica.com/wp-content/uploads/Spain-daily-deaths-linear.png",
null,
"https://analytica.com/wp-content/uploads/triangle-rates-table-1.png",
null,
"https://analytica.com/wp-content/uploads/Roads_2_recovery-150x150.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.918219,"math_prob":0.95737463,"size":4012,"snap":"2021-43-2021-49","text_gpt3_token_len":901,"char_repetition_ratio":0.11576846,"word_repetition_ratio":0.015128593,"special_character_ratio":0.22981057,"punctuation_ratio":0.10219923,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9649202,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22],"im_url_duplicate_count":[null,6,null,6,null,6,null,6,null,6,null,6,null,6,null,6,null,6,null,7,null,6,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-10-28T08:16:58Z\",\"WARC-Record-ID\":\"<urn:uuid:809e8974-9e05-4b7d-88ec-f2ddbbd0fd8b>\",\"Content-Length\":\"260234\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:c7e018a6-72b1-441f-bc1a-3674d6e28ac0>\",\"WARC-Concurrent-To\":\"<urn:uuid:a3e25ccd-3492-4114-8586-8dca8c3885b5>\",\"WARC-IP-Address\":\"34.94.78.135\",\"WARC-Target-URI\":\"https://lumina.com/early-covid-19-decay-rates-for-countries-that-have-peaked/\",\"WARC-Payload-Digest\":\"sha1:HBH2EFZZ4HPXEEHMH5O5LRCIMPTEX2DB\",\"WARC-Block-Digest\":\"sha1:MMKO7XF2DW4EPLJP4LUSVOJQA4TAHP7H\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-43/CC-MAIN-2021-43_segments_1634323588282.80_warc_CC-MAIN-20211028065732-20211028095732-00569.warc.gz\"}"} |
https://stackoverflow.com/questions/5849800/what-is-the-python-equivalent-of-matlabs-tic-and-toc-functions/5849861 | [
"# What is the Python equivalent of Matlab's tic and toc functions?\n\nWhat is the Python equivalent of Matlab's tic and toc functions?\n\n• If you really want the direct equivalent, just call `tic = time.time()` and `toc = time.time()`, then `print toc-tic, 'sec Elapsed'` As folks have said below, though, `timeit` is more robust. – Joe Kington May 1 '11 at 16:53\n• I seem to get better results using @JoeKington's approach in conjunction with timeit.default_timer(), like this for example: `tic = timeit.default_timer(); (U,S,V) = np.linalg.svd(A); toc = timeit.default_timer()`, then `print toc-tic`. – littleO Dec 18 '16 at 23:43\n• The library pytictoc seems most conveinent, syntax is even slightly neater than ttictoc below. pypi.org/project/pytictoc – FlorianH Oct 7 '19 at 11:43\n\nApart from `timeit` which ThiefMaster mentioned, a simple way to do it is just (after importing `time`):\n\n``````t = time.time()\n# do stuff\nelapsed = time.time() - t\n``````\n\nI have a helper class I like to use:\n\n``````class Timer(object):\ndef __init__(self, name=None):\nself.name = name\n\ndef __enter__(self):\nself.tstart = time.time()\n\ndef __exit__(self, type, value, traceback):\nif self.name:\nprint('[%s]' % self.name,)\nprint('Elapsed: %s' % (time.time() - self.tstart))\n``````\n\nIt can be used as a context manager:\n\n``````with Timer('foo_stuff'):\n# do some foo\n# do some stuff\n``````\n\nSometimes I find this technique more convenient than `timeit` - it all depends on what you want to measure.\n\n• @eat: I respectfully disagree. People have been using the unix `time` command to measure runtimes of programs for ever, and this method replicates this inside Python code. I see nothing wrong with it, as long as it's the right tool for the job. `timeit` isn't always that, and a profiler is a much more heavyweight solution for most needs – Eli Bendersky May 2 '11 at 3:27\n• For the last line I would suggest `print 'Elapsed: %.2f seconds % (time.time() - self.tstart)'`. It is hard to understand without the %.2f. Thanks for great idea. – Can Kavaklıoğlu Jun 19 '13 at 15:01\n• This looks very convenient at first glance, but in practice requires one to indent the code block one wants to time, which can be quite inconvenient depending on the length of the code block and the editor of choice. Still an elegant solution, which behaves correctly in the case of nested use. – Stefan Nov 15 '13 at 8:44\n• I think you want `elapsed = t - time.time()`, instead of `elapsed = time.time() - t`. In the latter elapsed will be negative. I suggested this change as an edit. – rysqui Oct 15 '15 at 1:01\n• @rysqui - Isn't the current time always a larger number than a previous time? I would think that `elapsed = time.time() - t` is the form that always yields a positive value. – Scott Smith Nov 7 '17 at 22:22\n\nI had the same question when I migrated to python from Matlab. With the help of this thread I was able to construct an exact analog of the Matlab `tic()` and `toc()` functions. Simply insert the following code at the top of your script.\n\n``````import time\n\ndef TicTocGenerator():\n# Generator that returns time differences\nti = 0 # initial time\ntf = time.time() # final time\nwhile True:\nti = tf\ntf = time.time()\nyield tf-ti # returns the time difference\n\nTicToc = TicTocGenerator() # create an instance of the TicTocGen generator\n\n# This will be the main function through which we define both tic() and toc()\ndef toc(tempBool=True):\n# Prints the time difference yielded by generator instance TicToc\ntempTimeInterval = next(TicToc)\nif tempBool:\nprint( \"Elapsed time: %f seconds.\\n\" %tempTimeInterval )\n\ndef tic():\n# Records a time in TicToc, marks the beginning of a time interval\ntoc(False)\n``````\n\nThat's it! Now we are ready to fully use `tic()` and `toc()` just as in Matlab. For example\n\n``````tic()\n\ntime.sleep(5)\n\ntoc() # returns \"Elapsed time: 5.00 seconds.\"\n``````\n\nActually, this is more versatile than the built-in Matlab functions. Here, you could create another instance of the `TicTocGenerator` to keep track of multiple operations, or just to time things differently. For instance, while timing a script, we can now time each piece of the script seperately, as well as the entire script. (I will provide a concrete example)\n\n``````TicToc2 = TicTocGenerator() # create another instance of the TicTocGen generator\n\ndef toc2(tempBool=True):\n# Prints the time difference yielded by generator instance TicToc2\ntempTimeInterval = next(TicToc2)\nif tempBool:\nprint( \"Elapsed time 2: %f seconds.\\n\" %tempTimeInterval )\n\ndef tic2():\n# Records a time in TicToc2, marks the beginning of a time interval\ntoc2(False)\n``````\n\nNow you should be able to time two separate things: In the following example, we time the total script and parts of a script separately.\n\n``````tic()\n\ntime.sleep(5)\n\ntic2()\n\ntime.sleep(3)\n\ntoc2() # returns \"Elapsed time 2: 5.00 seconds.\"\n\ntoc() # returns \"Elapsed time: 8.00 seconds.\"\n``````\n\nActually, you do not even need to use `tic()` each time. If you have a series of commands that you want to time, then you can write\n\n``````tic()\n\ntime.sleep(1)\n\ntoc() # returns \"Elapsed time: 1.00 seconds.\"\n\ntime.sleep(2)\n\ntoc() # returns \"Elapsed time: 2.00 seconds.\"\n\ntime.sleep(3)\n\ntoc() # returns \"Elapsed time: 3.00 seconds.\"\n\n# and so on...\n``````\n\nI hope that this is helpful.\n\nThe absolute best analog of tic and toc would be to simply define them in python.\n\n``````def tic():\n#Homemade version of matlab tic and toc functions\nimport time\nglobal startTime_for_tictoc\nstartTime_for_tictoc = time.time()\n\ndef toc():\nimport time\nif 'startTime_for_tictoc' in globals():\nprint \"Elapsed time is \" + str(time.time() - startTime_for_tictoc) + \" seconds.\"\nelse:\nprint \"Toc: start time not set\"\n``````\n\nThen you can use them as:\n\n``````tic()\n# do stuff\ntoc()\n``````\n• This will not behave correctly in the case of nested use of `tic` and `toc`, which Matlab supports. A little more sophistication would be required. – Stefan Nov 15 '13 at 8:37\n• I have implemented similar functions in my own code when I needed some basic timing. I would however remove the `import time` outside of both functions, since it can take potentially quite some time. – Bas Swinckels Nov 15 '13 at 17:19\n• If you insist on using this technique, and you need it to handle nested tic/toc, make the global a list and let `tic` push to it and `toc` pop from it. – Ahmed Fasih Aug 24 '16 at 1:26\n• Also I read elsewhere that `timeit.default_timer()` is better than `time.time()` because `time.clock()` might be more appropriate depending on OS – Miguel Feb 14 '17 at 21:23\n• @AhmedFasih That's what my answer does, though more things could be improved. – antonimmo Apr 23 at 7:32\n\nUsually, IPython's `%time`, `%timeit`, `%prun` and `%lprun` (if one has `line_profiler` installed) satisfy my profiling needs quite well. However, a use case for `tic-toc`-like functionality arose when I tried to profile calculations that were interactively driven, i.e., by the user's mouse motion in a GUI. I felt like spamming `tic`s and `toc`s in the sources while testing interactively would be the fastest way to reveal the bottlenecks. I went with Eli Bendersky's `Timer` class, but wasn't fully happy, since it required me to change the indentation of my code, which can be inconvenient in some editors and confuses the version control system. Moreover, there may be the need to measure the time between points in different functions, which wouldn't work with the `with` statement. After trying lots of Python cleverness, here is the simple solution that I found worked best:\n\n``````from time import time\n_tstart_stack = []\n\ndef tic():\n_tstart_stack.append(time())\n\ndef toc(fmt=\"Elapsed: %s s\"):\nprint fmt % (time() - _tstart_stack.pop())\n``````\n\nSince this works by pushing the starting times on a stack, it will work correctly for multiple levels of `tic`s and `toc`s. It also allows one to change the format string of the `toc` statement to display additional information, which I liked about Eli's `Timer` class.\n\nFor some reason I got concerned with the overhead of a pure Python implementation, so I tested a C extension module as well:\n\n``````#include <Python.h>\n#include <mach/mach_time.h>\n#define MAXDEPTH 100\n\nuint64_t start[MAXDEPTH];\nint lvl=0;\n\nstatic PyObject* tic(PyObject *self, PyObject *args) {\nstart[lvl++] = mach_absolute_time();\nPy_RETURN_NONE;\n}\n\nstatic PyObject* toc(PyObject *self, PyObject *args) {\nreturn PyFloat_FromDouble(\n(double)(mach_absolute_time() - start[--lvl]) / 1000000000L);\n}\n\nstatic PyObject* res(PyObject *self, PyObject *args) {\nreturn tic(NULL, NULL), toc(NULL, NULL);\n}\n\nstatic PyMethodDef methods[] = {\n{\"tic\", tic, METH_NOARGS, \"Start timer\"},\n{\"toc\", toc, METH_NOARGS, \"Stop timer\"},\n{\"res\", res, METH_NOARGS, \"Test timer resolution\"},\n{NULL, NULL, 0, NULL}\n};\n\nPyMODINIT_FUNC\ninittictoc(void) {\nPy_InitModule(\"tictoc\", methods);\n}\n``````\n\nThis is for MacOSX, and I have omitted code to check if `lvl` is out of bounds for brevity. While `tictoc.res()` yields a resolution of about 50 nanoseconds on my system, I found that the jitter of measuring any Python statement is easily in the microsecond range (and much more when used from IPython). At this point, the overhead of the Python implementation becomes negligible, so that it can be used with the same confidence as the C implementation.\n\nI found that the usefulness of the `tic-toc`-approach is practically limited to code blocks that take more than 10 microseconds to execute. Below that, averaging strategies like in `timeit` are required to get a faithful measurement.\n\n• Extremely elegant, @Stefan - can't believe this is so low rated. Thanks! – thclark Nov 8 '16 at 15:55\n\nYou can use `tic` and `toc` from `ttictoc`. Install it with\n\n``````pip install ttictoc\n``````\n\nAnd just import them in your script as follow\n\n``````from ttictoc import tic,toc\ntic()\n# Some code\nprint(toc())\n``````\n\nI have just created a module [tictoc.py] for achieving nested tic tocs, which is what Matlab does.\n\n``````from time import time\n\ntics = []\n\ndef tic():\ntics.append(time())\n\ndef toc():\nif len(tics)==0:\nreturn None\nelse:\nreturn time()-tics.pop()\n``````\n\nAnd it works this way:\n\n``````from tictoc import tic, toc\n\n# This keeps track of the whole process\ntic()\n\n# Timing a small portion of code (maybe a loop)\ntic()\n\n# -- Nested code here --\n\n# End\ntoc() # This returns the elapse time (in seconds) since the last invocation of tic()\ntoc() # This does the same for the first tic()\n``````\n\nI hope it helps.\n\n• Nice replication of tic/toc from MATLAB! – Matt May 23 '17 at 15:50\n• I must warn you that this might not behave as desired when used simultaneously by more than 1 module, since (AFAIK) modules behave like singletons. – antonimmo Jun 27 '17 at 18:04\n\nHave a look at the `timeit` module. It's not really equivalent but if the code you want to time is inside a function you can easily use it.\n\n• Yes, `timeit` is best for benchmarks. It doesn't even have to be a single function, you can pass abritarily complex statements. – user395760 May 1 '11 at 16:49\n• Well, passing code that is not an extremely simple function call as a string is very ugly. – ThiefMaster May 1 '11 at 16:50\n``````pip install easy-tictoc\n``````\n\nIn the code:\n\n``````from tictoc import tic, toc\n\ntic()\n\n#Some code\n\ntoc()\n``````\n\nDisclaimer: I'm the author of this library.\n\nThis can also be done using a wrapper. Very general way of keeping time.\n\nThe wrapper in this example code wraps any function and prints the amount of time needed to execute the function:\n\n``````def timethis(f):\nimport time\n\ndef wrapped(*args, **kwargs):\nstart = time.time()\nr = f(*args, **kwargs)\nprint \"Executing {0} took {1} seconds\".format(f.func_name, time.time()-start)\nreturn r\nreturn wrapped\n\n@timethis\ndef thistakestime():\nfor x in range(10000000):\npass\n\nthistakestime()\n``````\n\nI changed @Eli Bendersky's answer a little bit to use the ctor `__init__()` and dtor `__del__()` to do the timing, so that it can be used more conveniently without indenting the original code:\n\n``````class Timer(object):\ndef __init__(self, name=None):\nself.name = name\nself.tstart = time.time()\n\ndef __del__(self):\nif self.name:\nprint '%s elapsed: %.2fs' % (self.name, time.time() - self.tstart)\nelse:\nprint 'Elapsed: %.2fs' % (time.time() - self.tstart)\n``````\n\nTo use, simple put Timer(\"blahblah\") at the beginning of some local scope. Elapsed time will be printed at the end of the scope:\n\n``````for i in xrange(5):\ntimer = Timer(\"eigh()\")\nx = numpy.random.random((4000,4000));\nx = (x+x.T)/2\nnumpy.linalg.eigh(x)\nprint i+1\ntimer = None\n``````\n\nIt prints out:\n\n``````1\neigh() elapsed: 10.13s\n2\neigh() elapsed: 9.74s\n3\neigh() elapsed: 10.70s\n4\neigh() elapsed: 10.25s\n5\neigh() elapsed: 11.28s\n``````\n• An issue with this implementation is the fact, that `timer` is not deleted after the last call, if any other code follows after the `for` loop. To get the last timer value, one should delete or overwrite the `timer` after the `for` loop, e.g. via `timer = None`. – bastelflp Jul 5 '16 at 15:41\n• @bastelflp Just realized that I misunderstood what you meant... Your suggestion has been incorporated in the code now. Thanks. – Shaohua Li Aug 30 '17 at 5:38\n\nUpdating Eli's answer to Python 3:\n\n``````class Timer(object):\ndef __init__(self, name=None, filename=None):\nself.name = name\nself.filename = filename\n\ndef __enter__(self):\nself.tstart = time.time()\n\ndef __exit__(self, type, value, traceback):\nmessage = 'Elapsed: %.2f seconds' % (time.time() - self.tstart)\nif self.name:\nmessage = '[%s] ' % self.name + message\nprint(message)\nif self.filename:\nwith open(self.filename,'a') as file:\nprint(str(datetime.datetime.now())+\": \",message,file=file)\n``````\n\nJust like Eli's, it can be used as a context manager:\n\n``````import time\nwith Timer('Count'):\nfor i in range(0,10_000_000):\npass\n``````\n\nOutput:\n\n``````[Count] Elapsed: 0.27 seconds\n``````\n\nI have also updated it to print the units of time reported (seconds) and trim the number of digits as suggested by Can, and with the option of also appending to a log file. You must import datetime to use the logging feature:\n\n``````import time\nimport datetime\nwith Timer('Count', 'log.txt'):\nfor i in range(0,10_000_000):\npass\n``````\n\nBuilding on Stefan and antonimmo's answers, I ended up putting\n\n``````def Tictoc():\nstart_stack = []\nstart_named = {}\n\ndef tic(name=None):\nif name is None:\nstart_stack.append(time())\nelse:\nstart_named[name] = time()\n\ndef toc(name=None):\nif name is None:\nstart = start_stack.pop()\nelse:\nstart = start_named.pop(name)\nelapsed = time() - start\nreturn elapsed\nreturn tic, toc\n``````\n\nin a `utils.py` module, and I use it with a\n\n``````from utils import Tictoc\ntic, toc = Tictoc()\n``````\n\nThis way\n\n• you can simply use `tic()`, `toc()` and nest them like in Matlab\n• alternatively, you can name them: `tic(1)`, `toc(1)` or `tic('very-important-block')`, `toc('very-important-block')` and timers with different names won't interfere\n• importing them this way prevents interference between modules using it.\n\n(here toc does not print the elapsed time, but returns it.)"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.81148607,"math_prob":0.8290489,"size":14066,"snap":"2020-24-2020-29","text_gpt3_token_len":3718,"char_repetition_ratio":0.11392405,"word_repetition_ratio":0.031863816,"special_character_ratio":0.2761979,"punctuation_ratio":0.15483871,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9833628,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-07-12T20:01:03Z\",\"WARC-Record-ID\":\"<urn:uuid:467164fe-7a82-4fdf-bd6a-7650f0625d2b>\",\"Content-Length\":\"279661\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:378663f3-3fb4-41d4-a0bb-5f9161e12e55>\",\"WARC-Concurrent-To\":\"<urn:uuid:02b872a5-6073-4514-8743-753474a93d7e>\",\"WARC-IP-Address\":\"151.101.65.69\",\"WARC-Target-URI\":\"https://stackoverflow.com/questions/5849800/what-is-the-python-equivalent-of-matlabs-tic-and-toc-functions/5849861\",\"WARC-Payload-Digest\":\"sha1:RW566ARN62ILOVC3ERWBHNCPC73OUHBT\",\"WARC-Block-Digest\":\"sha1:NJXPG5BTBHT26CW64AMUWTCFOFFWWGCQ\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-29/CC-MAIN-2020-29_segments_1593657139167.74_warc_CC-MAIN-20200712175843-20200712205843-00283.warc.gz\"}"} |
http://www.54133838.com/hk42128/DELL/ | [
"• DELL专题主页说明:DELL主页内容包括DELL最新报价、DELL热卖促销、DELL产品信息以及经营销售DELL的企业/公司。除此之外,您可以在该主页查看有关DELL的价格、供应商的联系方式以及图片等信息。阿土伯交易网是您的营销平台、是您的收银台!\n\n• A\n• B\n• C\n• D\n• E\n• F\n• G\n• H\n• I\n• J\n• K\n• L\n• M\n• N\n• O\n• P\n• Q\n• R\n• S\n• T\n• U\n• V\n• W\n• X\n• Y\n• Z"
] | [
null
] | {"ft_lang_label":"__label__zh","ft_lang_prob":0.73639375,"math_prob":0.40293527,"size":1764,"snap":"2019-26-2019-30","text_gpt3_token_len":1664,"char_repetition_ratio":0.14204545,"word_repetition_ratio":0.0,"special_character_ratio":0.32879817,"punctuation_ratio":0.37317073,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9554492,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-07-24T08:36:52Z\",\"WARC-Record-ID\":\"<urn:uuid:c22e157e-eaaa-4b13-a23f-70729506162b>\",\"Content-Length\":\"168032\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:a0e4763e-67f3-48be-b41e-abe9ec64d90d>\",\"WARC-Concurrent-To\":\"<urn:uuid:93b369ab-ad68-4217-86a7-da539e708ee3>\",\"WARC-IP-Address\":\"104.31.81.236\",\"WARC-Target-URI\":\"http://www.54133838.com/hk42128/DELL/\",\"WARC-Payload-Digest\":\"sha1:ODOXIVRZ56LJLXQDUVK6R7BLXUCACQM2\",\"WARC-Block-Digest\":\"sha1:LCWYCNTW54GGXJQBAZY5IRE5KLQAHJYE\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-30/CC-MAIN-2019-30_segments_1563195532251.99_warc_CC-MAIN-20190724082321-20190724104321-00412.warc.gz\"}"} |
https://tradenowbf.netlify.app/papay39662kuko/bond-and-stock-valuation-exercises-77.html | [
"## Bond and stock valuation exercises\n\nRanks below bonds but above common stock in security. Preferred Exercise 6- 8: An investor Section 6.5 - Valuation of a Bond Between Coupon Dates.\n\n1 EN OF CHAPTER EXERCISES - ANSWERS Chapter 14 : Stock Valuation and the Bonds. 3. Stocks Stocks and Bonds 1. Present Value 2. Bonds 3. Stocks 1 Corporate hybrid bonds are subordinated debt instruments issued by half- capital, applying the concept of 'equity content', which tends to improve the issuer's credit ratios. Extension risk: if the hybrid is not called at the first call date, the valuation of the Whenever the issuer exercises the call, the investor will be entirely The yield-to-maturity of a bond with an investment-grade rating will generally be lower than the yield-to-maturity of a bond with a speculative-grade rating. C. The yield-to-maturity of a bond with an investment-grade rating will generally be equal to the yield-to-maturity of a bond with a speculative-grade rating. Its target capital structure is 20% debt, 20% preferred stock, and 60% common equity. Its bonds have a 12% coupon, paid semiannually, a current maturity of 20 years, and a net price of \\$960. The firm could sell, at par, \\$100 preferred stock that pays a \\$10 annual dividend, but flotation costs of 5% would be incurred. Capital comes in two forms: debt capital and equity capital. To raise debt capital the companies sell bonds to the public, and to raise equity capital the corporation sells the stock of the company. Both stock and bonds are financial instruments and they have a certain intrinsic value. Stock Valuation Practice Problems 1. The Bulldog Company paid \\$1.5 of dividends this year. If its dividends are expected to grow at a rate of 3 percent per year, what is the expected dividend per share for Bulldog five years from today? 2. The current price of XYZ stock is \\$25 per share. If XYZ’s current dividend is \\$1 per share and VALUATION (BONDS AND STOCK) The general concept of valuation is very simple—the current value of any asset is the present value of the future cash flows it is expected to generate. It makes sense that you are willing to pay (invest) some amount today to receive future benefits (cash flows).\n\n## Introduction. In practice, company valuation deals with the valuation of stocks, bonds and other Let use IBM stock as an example for our valuation exercises.\n\n3 Jan 2011 Power Point Presentation for Band Valuation and the Techincal Exercise 6\n\n• A Rs 1000 par value bond carrying a coupon rate of 10% Ranks below bonds but above common stock in security. Preferred Exercise 6- 8: An investor Section 6.5 - Valuation of a Bond Between Coupon Dates. 9 Mar 2020 A convertible bond is a fixed-income debt security that pays interest, but can be converted into common stock or equity shares.There are bonds, where both bondholder and issuer own conversion rights. The holder will exercise the conversion right if the stock price lies above an upper strike level, UNCERTAIN, AND THE VALUATION OF INDEX BONDS. STANLEY The real call price, C, will be a function of the stock price and the exercise price. X(t).3 We This article explains to the reader that stock prices are subjective. Here are some of the common assumptions that will have to be made by the analyst during the stock valuation exercise: Horizon Period. As we learned in the previous article that stock valuation happens in two stages. How Interest Rates Affect Bonds ?\n\n### Bond Pricing Formula. bond valuations - price. Bond Valuation Formula can also be written as:.\n\nBond Pricing Formula. bond valuations - price. Bond Valuation Formula can also be written as:. Introduction. In practice, company valuation deals with the valuation of stocks, bonds and other Let use IBM stock as an example for our valuation exercises. 18 Jan 2019 Chapter I. Corporate bonds valuation and credit spreads: a a or common stock, or debt with a lower coupon or par-amount, lower seniority, If at maturity ≥ : the firm doesn't exercise its put option (which means that the. Convertible bonds typically offer higher yields than common stock but lower ratio”—or the number of shares that the investor receives if they exercises the\n\n### Ranks below bonds but above common stock in security. Preferred Exercise 6- 8: An investor Section 6.5 - Valuation of a Bond Between Coupon Dates.\n\nfinance 440 review: bond and stock valuation practice problems multiple choice which of the following statements is correct regarding bonds and bond ratings?\n\n## What it means to buy a company's stock (Opens a modal) Bonds vs. stocks (Opens a modal) Shorting stock. Learn. Shorting stock (Opens a modal) Market value of assets (Opens a modal) Corporate metrics and valuation. Learn. Price and market capitalization Relationship between bond prices and interest rates (Opens a modal) Treasury bond\n\n127.6108 1/5 − 1 = 4.9686% 100.136 Exercise 2.20 We consider two bonds with the Exercise 7.1 Would you say it is easier to track a bond index or a stock index. the variation in the subperiods returns are large over the valuation period. The price of a pure discount (zero coupon) bond is the present value of the par used to find the monthly interest rates for the stock and bond accounts, so:. See if you understand how bonds work and how to calculate their value with this interactive quiz and printable worksheet. With these practice Convertibles' hybrid nature presents valuation challenges and trading A convertible bond is essentially a corporate bond with an embedded equity Deciding the fair value of a convertible depends on the stock price, the exercise price, the 3 Jan 2011 Power Point Presentation for Band Valuation and the Techincal Exercise 6\n\n• A Rs 1000 par value bond carrying a coupon rate of 10% Ranks below bonds but above common stock in security. Preferred Exercise 6- 8: An investor Section 6.5 - Valuation of a Bond Between Coupon Dates. 9 Mar 2020 A convertible bond is a fixed-income debt security that pays interest, but can be converted into common stock or equity shares.There are\n\nA coupon bond that pays interest of \\$100 annually has a par value of \\$1,000, matures in 5 years, and is selling today at a \\$72 discount from par value. The yield to maturity on this bond is a) 6.00% b) 8.33% c) 10.39% d) 12.00% e) 60.00% 9. The coupon payment is the coupon rate times par value. Using this relationship, we get: Coupon rate = \\$50.66 / \\$1,000 Coupon rate = .0507, or 5.07% 6. To find the price of this bond, we need to realize that the maturity of the bond is 14 years. The bond was issued 1 year ago, with 15 years to maturity, so there are 14 years left on the bond."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8828257,"math_prob":0.95882094,"size":6813,"snap":"2021-43-2021-49","text_gpt3_token_len":1554,"char_repetition_ratio":0.14436775,"word_repetition_ratio":0.27140412,"special_character_ratio":0.2345516,"punctuation_ratio":0.10671642,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98021305,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-12-07T14:35:37Z\",\"WARC-Record-ID\":\"<urn:uuid:d7fbf810-499c-481f-b94f-2ae3806d804a>\",\"Content-Length\":\"35625\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:693b3ee6-e7fb-44ed-9f82-c818710cc1b1>\",\"WARC-Concurrent-To\":\"<urn:uuid:1560821d-a45f-4b15-8191-7bdd0c607cc4>\",\"WARC-IP-Address\":\"34.204.131.44\",\"WARC-Target-URI\":\"https://tradenowbf.netlify.app/papay39662kuko/bond-and-stock-valuation-exercises-77.html\",\"WARC-Payload-Digest\":\"sha1:C3SSUPCBZDAPQTLHCYC2HMQ4TZ2SC5EZ\",\"WARC-Block-Digest\":\"sha1:35FOO7FHYDGEGZT55D56OLAP2ISWF4AO\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-49/CC-MAIN-2021-49_segments_1637964363400.19_warc_CC-MAIN-20211207140255-20211207170255-00537.warc.gz\"}"} |
https://mathoverflow.net/questions/106164/maximal-subgroups-of-a-certain-finite-2-group | [
"# Maximal subgroups of a certain finite 2-group\n\nThe following came up in a problem on reconstruction of digraphs. I determined enough about the answer to satisfy the application completely, but still I am curious to know what the complete solution is. My group theory is weak, so apologies if this is too simple.\n\nLet $T$ be a full binary tree with depth $k$. Call its levels $L_0,\\ldots,L_k$. Here is the case $k=4$:",
null,
"(source)\n\nThe number of leaves is $n=2^k$.\n\nLet $A$ be the full automorphism group of $T$ and let $f$ be its (faithful) action on the leaves of the tree, i.e. on $L_k$. Obviously $f(A)$ is an iterated wreath product of $\\mathbb{Z}_2$ with itself and has order $2^{n-1}$. It is, indeed, the Sylow 2-subgroup of $S_n$.\n\nThe problem is: what are the subgroups of $f(A)$ of index 2?\n\nHere is what I think the answer is. Let $X$ be a union of levels of $T$, including at least one level other than $L_0$. Let $P$ be the set of all $f(\\gamma)$ such that $\\gamma\\in A$ and the action of $\\gamma$ on $X$ is an even permutation. Then $P$ is a subgroup of the desired index. I'm guessing there are no others...\n\nYou can easily count the number of maximal subgroups of $W(k)$, the $k$-fold iterated wreath product of $\\mathbb{Z}_{2},$ by calculating the index of the Frattini subgroup. You can inductively prove that the number of generators is $k,$ which is clear for $k =1,2.$\nTo proceed, note that $W(k) = W(k-1) \\wr \\mathbb{Z}_{2}.$ Factor out the Frattini subgroup of the base group, and by induction, you are left with $E(k-1) \\wr \\mathbb{Z}_{2}$, where $E(k-1)$ is elementary Abelian of order $2^{k-1}.$ If $x$ is an element of order $2$ outside the new base group, then $[E(k-1) \\times E(k-1),x]$ has order $2^{k-1},$ so that the largest elementary Abelian factor group of the original wreath product does have order $2^{k},$ as claimed.\nHence the group $W(k)$ has $2^{k}-1$ maximal subgroups, since there is a bijection between maximal subgroups of $W(k)$ and maximal subgroups of $W(k)/\\Phi(W(k)).$\n• That's great. Since the subgroups I identified are all distinct (ignoring whether $L_0\\subseteq X$) and there are exactly $2^k-1$ of them, your proof establishes that my wild guess was correct (for once). Thanks! – Brendan McKay Sep 2 '12 at 11:41\n• The fact that $W(k)$ has $2^{k}-1$ maximal subgroups is equivalent to saying that the Frattini subgroup of $W(k)$ has index $2^{k}$, which is what we are trying to establish by induction. Since this is clear for $k =1,2$, as noted, we may assume by induction that $W(k-1)$ has Frattini factor of index $2^{k-1}$, as used in the above proof. – Geoff Robinson Dec 3 '17 at 14:02"
] | [
null,
"https://i.stack.imgur.com/E8M2em.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9180884,"math_prob":0.9998555,"size":1056,"snap":"2019-43-2019-47","text_gpt3_token_len":308,"char_repetition_ratio":0.10456274,"word_repetition_ratio":0.0,"special_character_ratio":0.29166666,"punctuation_ratio":0.12184874,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9999919,"pos_list":[0,1,2],"im_url_duplicate_count":[null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-11-13T05:38:30Z\",\"WARC-Record-ID\":\"<urn:uuid:10b704bb-f131-4ba0-a905-b6481ddfc2aa>\",\"Content-Length\":\"121046\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:f23a177d-2320-4b41-bcf8-4228daebf245>\",\"WARC-Concurrent-To\":\"<urn:uuid:a60d5cd0-39c2-45f4-9aa9-e3e62c550340>\",\"WARC-IP-Address\":\"151.101.65.69\",\"WARC-Target-URI\":\"https://mathoverflow.net/questions/106164/maximal-subgroups-of-a-certain-finite-2-group\",\"WARC-Payload-Digest\":\"sha1:3YZYOSLGI3TRTZ3I6L6O5XK6QSGL72SE\",\"WARC-Block-Digest\":\"sha1:NMIBKI6BYPGVMXA6WE7LOPH7ZTPL6B3W\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-47/CC-MAIN-2019-47_segments_1573496665985.40_warc_CC-MAIN-20191113035916-20191113063916-00241.warc.gz\"}"} |
http://cran.r-project.org/web/packages/pomdp/readme/README.html | [
"# R package pomdp: Partially Observable Markov Decision Processes\n\nProvides the infrastructure to define and analyze the solutions of Partially Observable Markov Decision Processes (POMDP) models. The package includes pomdp-solve (Cassandra, 2015) to solve POMDPs using a variety of algorithms.\n\nThe package provides the following algorithms:\n\n• Exact value iteration\n• Enumeration algorithm (Sondik 1971, Mohan 1982).\n• Two pass algorithm (Sondik 1971).\n• Witness algorithm (Littman, Cassandra, Kaelbling 1996).\n• Incremental pruning algorithm (Zhang and Liu 1996, Cassandra et al 1997).\n• Approximate value iteration\n• Finite grid algorithm (Cassandra 2015), a variation of point-based value iteration to solve larger POMDPs (PBVI; see Pineau 2003) without dynamic belief set expansion.\n\n## Installation\n\nStable CRAN version: install from within R with\n\n``install.packages(\"pomdp\")``\n\nCurrent development version: install from GitHub (needs devtools).\n\n``````library(\"devtools\")\n\n## Usage\n\nSolving the simple infinite-horizon Tiger problem.\n\n``````R> library(\"pomdp\")\nR> data(\"Tiger\")\nR> Tiger``````\n``````Unsolved POMDP model: Tiger Problem\nhorizon: Inf ``````\n``````> sol <- solve_POMDP(model = Tiger)\n> sol``````\n``````Solved POMDP model: Tiger Problem\nsolution method: grid\nhorizon: Inf\nconverged: TRUE\ntotal expected reward (for start probabilities): 1.933439 ``````\n``> policy(sol)``\n``````[]\ntiger-left tiger-right action tiger-left tiger-right\n1 -98.549921 11.450079 open-left 3 3\n2 -10.854299 6.516937 listen 3 1\n3 1.933439 1.933439 listen 4 2\n4 6.516937 -10.854299 listen 5 3\n5 11.450079 -98.549921 open-right 3 3``````\n• Cassandra, A. (2015). pomdp-solve: POMDP Solver Software, http://www.pomdp.org.\n• Sondik, E. (1971). The Optimal Control of Partially Observable Markov Processes. Ph.D. Dissertation, Stanford University.\n• Cassandra, A., Littman M.L., Zhang L. (1997). Incremental Pruning: A Simple, Fast, Exact Algorithm for Partially Observable Markov Decision Processes. UAI’97: Proceedings of the Thirteenth conference on Uncertainty in artificial intelligence, August 1997, pp. 54-61.\n• Monahan, G. E. (1982). A survey of partially observable Markov decision processes: Theory, models, and algorithms. Management Science 28(1):1-16.\n• Littman, M. L.; Cassandra, A. R.; and Kaelbling, L. P. (1996). Efficient dynamic-programming updates in partially observable Markov decision processes. Technical Report CS-95-19, Brown University, Providence, RI.\n• Zhang, N. L., and Liu, W. (1996). Planning in stochastic domains: Problem characteristics and approximation. Technical Report HKUST-CS96-31, Department of Computer Science, Hong Kong University of Science and Technology.\n• Pineau J., Geoffrey J Gordon G.J., Thrun S.B. (2003). Point-based value iteration: an anytime algorithm for POMDPs. IJCAI’03: Proceedings of the 18th international joint conference on Artificial Intelligence. Pages 1025-1030.\n\n## Acknowledgments\n\nDevelopment of this package was supported in part by National Institute of Standards and Technology (NIST) under grant number 60NANB17D180."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6183299,"math_prob":0.44853008,"size":3012,"snap":"2020-34-2020-40","text_gpt3_token_len":819,"char_repetition_ratio":0.10239362,"word_repetition_ratio":0.0049875313,"special_character_ratio":0.28286853,"punctuation_ratio":0.2241993,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.95761377,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-09-29T08:47:54Z\",\"WARC-Record-ID\":\"<urn:uuid:f7446835-d908-41e8-af60-4b4420cc1e50>\",\"Content-Length\":\"11333\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:5122955a-49bc-4b1c-a6df-f9c0a483f21b>\",\"WARC-Concurrent-To\":\"<urn:uuid:b742723c-9e50-4f94-b180-d30d868fe74e>\",\"WARC-IP-Address\":\"137.208.57.37\",\"WARC-Target-URI\":\"http://cran.r-project.org/web/packages/pomdp/readme/README.html\",\"WARC-Payload-Digest\":\"sha1:VVGNFKQWHMK4WXV7M673S7WLRO3SR3A5\",\"WARC-Block-Digest\":\"sha1:BBNVCPCWLEVA3UW2XBUOO7HJFTRFE5GO\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-40/CC-MAIN-2020-40_segments_1600401632671.79_warc_CC-MAIN-20200929060555-20200929090555-00522.warc.gz\"}"} |
http://www.mathnet.ru/php/archive.phtml?jrnid=de&wshow=issue&year=1978&volume=14&volume_alt=&issue=8&issue_alt=&option_lang=eng | [
"",
null,
"",
null,
"RUS ENG JOURNALS PEOPLE ORGANISATIONS CONFERENCES SEMINARS VIDEO LIBRARY PACKAGE AMSBIB",
null,
"",
null,
"General information",
null,
"Latest issue",
null,
"Archive",
null,
"Search papers",
null,
"Search references",
null,
"RSS",
null,
"Latest issue",
null,
"Current issues",
null,
"Archive issues",
null,
"What is RSS\n\n Differ. Uravn.: Year: Volume: Issue: Page: Find\n\n Personal entry: Login: Password: Save password Enter",
null,
"Forgotten password?",
null,
"Register\n\n 1978, Volume 14, Number 8",
null,
"",
null,
"Ordinary Differential Equations",
null,
"On the theory of functional-differential equationsM. E. Drakhlin, T. K. Plyshevskaya 1347",
null,
"Stability and topological classification of invariant setsYu. V. Malyshev 1362",
null,
"On the theory of duality in control systemsB. Mordukhovich, A. M. Sasonkin 1371",
null,
"Averaging of boundary value problems in terminal optimal control problemsV. A. Plotnikov, T. S. Zverkova 1381",
null,
"Averaging of quasilinear systems with several fast variablesN. A. Reimers, K. Sh. Khodzhaev 1388",
null,
"The equivalence of systems of differential equations with reducing contractionV. S. Samovol 1400",
null,
"Asymptotic solution of certain optimal control problems with lagsA. I. Tret'yak 1414 Partial Differential Equations",
null,
"A mixed problem for a second order degenerate hyperbolic equation with two variablesF. T. Baranovskii 1424",
null,
"Solution of a boundary value problem for the Helmholtz equation in a layered space with a spherical inclusionV. T. Erofeenko 1439",
null,
"On the estimation of the classical solution of a mixed problem for a hyperbolic equationÈ. L. Кulikov, V. Ph. Kirichenko 1448",
null,
"Estimates of the derivatives of the solutions of linear equations of elliptic type on $E^n$ and related weighted imbedding theorems. IIA. S. Fokht 1455 Integral Equations",
null,
"Some properties of the set of solutions of a Volterra–Hammerstein integral inclusionA. I. Bulgakov, L. N. Lyapin 1465",
null,
"Singular numbers of integral operatorsB. D. Kotlyar 1473 Numerical methods",
null,
"Difference schemes for quasilinear nonstationary problems. IIV. N. Abrashin, V. I. Lis 1478",
null,
"A difference method with rectification of the fronts for the solution of nonlinear problems of Stefan typeV. A. Tsurko 1487 Short Communications",
null,
"Asymptotic stability in nonlinear systemsO. V. Anashkin 1490",
null,
"The Volterra model with a weakly linear hereditary characteristicR. Anvarov, G. S. Larionov 1494",
null,
"A system of integro-differential equations with a small parameter multiplying the derivative of conditionally stable typeM. P. Belyanin 1497",
null,
"Stability of a dynamical system with a cylindrical phase spaceZ. U. Blyagoz, G. A. Leonov 1502",
null,
"The Grobman–Hartman theorem for extensions of dynamical systemsI. U. Bronshtein, V. A. Glavan 1504",
null,
"Coercive solvability of abstract parabolic equations with a constant operatorV. V. Vasil'ev 1507",
null,
"Potential functions of the field of radiation of an electric quadrupole in cylindrical coordinatesA. I. Glushtsov 1511",
null,
"A method for lowering the order of linear differential equationsÈ. I. Grudo 1514",
null,
"An isoperimetric problemD. P. Zeragiâ 1516",
null,
"Combination of Čaplygin and spline-collocation methods for the solution of ordinary differential equationsV. K. Saul'ev 1520",
null,
"The calculation of eigenvalues and -vectors of linear operators on the basis of the theory of perturbationsN. A. Sidorov 1522",
null,
"On the question of absolute exponential stability of linear differential equations of lagging type in a Banach spaceV. E. Slyusarchuk 1526",
null,
"Contact us: math-net2019_10 [at] mi-ras ru",
null,
"Terms of Use",
null,
"Registration",
null,
"Logotypes © Steklov Mathematical Institute RAS, 2019"
] | [
null,
"http://www.mathnet.ru/images/de_eng.jpg",
null,
"http://www.mathnet.ru/images/mobile.gif",
null,
"http://www.mathnet.ru/images/home2.gif",
null,
"http://www.mathnet.ru/gifs/ar9.gif",
null,
"http://www.mathnet.ru/gifs/ar9.gif",
null,
"http://www.mathnet.ru/gifs/ar8.gif",
null,
"http://www.mathnet.ru/gifs/search.gif",
null,
"http://www.mathnet.ru/gifs/search.gif",
null,
"http://www.mathnet.ru/gifs/rss.gif",
null,
"http://www.mathnet.ru/gifs/1pts.gif",
null,
"http://www.mathnet.ru/gifs/1pts.gif",
null,
"http://www.mathnet.ru/gifs/1pts.gif",
null,
"http://www.mathnet.ru/gifs/1pts.gif",
null,
"http://www.mathnet.ru/images/ar5.gif",
null,
"http://www.mathnet.ru/images/ar5.gif",
null,
"http://www.mathnet.ru/images/prev2.gif",
null,
"http://www.mathnet.ru/images/next2.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/gifs/wvolsa.gif",
null,
"http://www.mathnet.ru/images/man1.jpg",
null,
"http://www.mathnet.ru/gifs/ar4.gif",
null,
"http://www.mathnet.ru/gifs/ar4.gif",
null,
"http://www.mathnet.ru/gifs/ar4.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7281716,"math_prob":0.9566609,"size":3067,"snap":"2019-43-2019-47","text_gpt3_token_len":886,"char_repetition_ratio":0.14789422,"word_repetition_ratio":0.0039525693,"special_character_ratio":0.26181936,"punctuation_ratio":0.15642458,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9579775,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-10-21T04:02:49Z\",\"WARC-Record-ID\":\"<urn:uuid:e4f49dda-fd27-4096-b6f9-41ee98270e1a>\",\"Content-Length\":\"28793\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:1a2e3912-e916-4245-aba4-e159f8ecbc25>\",\"WARC-Concurrent-To\":\"<urn:uuid:cc3f1d7e-4173-4532-a09a-0437d4bc1dec>\",\"WARC-IP-Address\":\"185.129.147.141\",\"WARC-Target-URI\":\"http://www.mathnet.ru/php/archive.phtml?jrnid=de&wshow=issue&year=1978&volume=14&volume_alt=&issue=8&issue_alt=&option_lang=eng\",\"WARC-Payload-Digest\":\"sha1:N73MHH7XYBANKIL2TL7DLC7XL642HDJM\",\"WARC-Block-Digest\":\"sha1:LZAZHFE7CRBAFLKQD6HQYV3NNR6QJCXS\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-43/CC-MAIN-2019-43_segments_1570987751039.81_warc_CC-MAIN-20191021020335-20191021043835-00326.warc.gz\"}"} |
https://mathoverflow.net/questions/241756/existence-of-mixed-nash-equilibria-for-compact-strategy-spaces | [
"# Existence of mixed Nash equilibria for compact strategy spaces\n\nIn Peleg (1969) it is shown that a game with finite strategy spaces and continuous utilities has a mixed Nash equilibrium for any cardinality of players.\n\nIs the same true if the strategy spaces are compact (maybe under some extra conditions, like only countably many players)?\n\nLones Smith offers the following proof: if you have countably many players, arbitrarily enumerate them and call the original game with this enumeration $G$. Let $G_n$ be a game where the actions of players $k>n$ are fixed arbitrarily. By Glicksburg, $G_n$ has an equilibrium -- call it $x(n)$. Let $x$ be a limit point of the sequence $(x(n))_{n=1}^\\infty$. Fix any player $i$. Now $x_i(n)$ is a best response to $x_{-i}(n)$ in $G_n$ for each $n$; to pass to limits, we appeal to the Theorem of the Maximum and continuity of the utility functions . That shows the action $x_i$ is a best response to $x_{-i}$ in $G$. So $x$ is an equilibrium of $G$.\n This assumes a topology on the action space at least as coarse as the product topology, so that whenever $x(n)$ converges to $x$ in the product topology, it converges in the topology in question. The utilities should be continuous under this topology for actions. This is a big assumption and easily violated!"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.89247864,"math_prob":0.9986677,"size":965,"snap":"2019-51-2020-05","text_gpt3_token_len":256,"char_repetition_ratio":0.11030177,"word_repetition_ratio":0.012269938,"special_character_ratio":0.27253887,"punctuation_ratio":0.091836736,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99970996,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-01-24T22:16:04Z\",\"WARC-Record-ID\":\"<urn:uuid:f1310562-6d75-4165-bb1c-42e761c692db>\",\"Content-Length\":\"113279\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:62ddc1e9-4473-4b1b-84c2-2deb96f24ef3>\",\"WARC-Concurrent-To\":\"<urn:uuid:5efcc486-4524-4b36-b64a-58d9757db6ad>\",\"WARC-IP-Address\":\"151.101.193.69\",\"WARC-Target-URI\":\"https://mathoverflow.net/questions/241756/existence-of-mixed-nash-equilibria-for-compact-strategy-spaces\",\"WARC-Payload-Digest\":\"sha1:HG4KVH4PJAASU7OYHN3UVBA6FKFWA72O\",\"WARC-Block-Digest\":\"sha1:5BT6NNI57PLVIPLE4NEONCPAKWZFJ3RL\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-05/CC-MAIN-2020-05_segments_1579250626449.79_warc_CC-MAIN-20200124221147-20200125010147-00471.warc.gz\"}"} |
https://www.radartutorial.eu/01.basics/Rayleigh-%20versus%20Mie-Scattering.en.html | [
"#",
null,
"",
null,
"Radar Basics\n\n#### Rayleigh- versus Mie- Scattering",
null,
"Rayleigh\nMie\nOptical\nA\nB\n\nFigure 1: Rayleight- and Mie- Scattering, and optical region",
null,
"Rayleigh-\nRegion\nMie- Region\noptical\nregion\nA\nB\n\nFigure 1: Rayleight- and Mie- Scattering, and optical region\n\n#### Rayleigh- versus Mie- Scattering\n\nThe following picture shows the different regions applicable to computing the radar cross-section of a sphere. The optical region („far field” counterpart) rules apply when (2π·r / λ) >10. In this region, the radar cross-section of a sphere is independent of frequency. Here, the radar cross-section of a sphere, σ = π·r2.\n\nThe radar cross-section equation breaks down primarily due to creeping waves in the area where 2π · r. The largest positive perturbation of the radar cross-section (point A) would be 4 times higher than the radar cross-section computed using the optical region formula. Just slightly a minimum occurs (point B) and the actual radar cross-section would be 0.26 times the value calculated by using the optical region formula. This area is known as the „Mie” or „resonance region”.\n\nIf we used a one-meter diameter sphere, the perturbations would occur at 95 MHz, so any frequency above 950 MHz would give predicted results.\n\nThe size of the spherical reflection area is smaller than the wavelength in the area of the „Rayleigh-Scattering”. The radar cross-section is calculated the formula σ = π·r2 · 7,11 · ( 2π·r / λ )4 here. The „Rayleigh-Scattering” is a typical application case for weather radar.\n\nApproximately this is lower L- Band still takes the Mie scattering into account at air defense and air traffic control radar sets. There are predominantly optical conditions at frequencies above 1 GHz.\n\nE.g. the ancient Russian VHF-Radars operate at frequencies about 145 to 175 MHz, ie they use the wavelength of about 1.7 to 2.1 meters. This is exactly the position on the second maximum in the diagram (located over the letter B) for the geometric dimensions of a fighter aircraft."
] | [
null,
"https://www.radartutorial.eu/style/css/images/logo.svg",
null,
"https://www.radartutorial.eu/style/css/images/logo.svg",
null,
"https://www.radartutorial.eu/01.basics/pic/RayMieOpt.print.jpg",
null,
"https://www.radartutorial.eu/01.basics/pic/RayMieOpt.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.85278875,"math_prob":0.9479303,"size":1907,"snap":"2020-34-2020-40","text_gpt3_token_len":452,"char_repetition_ratio":0.1544929,"word_repetition_ratio":0.04901961,"special_character_ratio":0.22758259,"punctuation_ratio":0.09014084,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9924937,"pos_list":[0,1,2,3,4,5,6,7,8],"im_url_duplicate_count":[null,null,null,null,null,4,null,4,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-08-07T13:04:26Z\",\"WARC-Record-ID\":\"<urn:uuid:ab587751-7691-474e-9746-8b04b6a04a04>\",\"Content-Length\":\"22221\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:96b5e28b-bd1a-4897-807c-cd36479c3da3>\",\"WARC-Concurrent-To\":\"<urn:uuid:603f1b25-bc36-4e10-8ea8-b332543a076e>\",\"WARC-IP-Address\":\"178.248.244.20\",\"WARC-Target-URI\":\"https://www.radartutorial.eu/01.basics/Rayleigh-%20versus%20Mie-Scattering.en.html\",\"WARC-Payload-Digest\":\"sha1:AV6UQJPQPC5PDMPX7WHVYQOTYWXPS2CY\",\"WARC-Block-Digest\":\"sha1:MIT4IUWV33JP56DDVAABP7KN5UYY5ZQ2\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-34/CC-MAIN-2020-34_segments_1596439737178.6_warc_CC-MAIN-20200807113613-20200807143613-00135.warc.gz\"}"} |
https://cdn.liaoxuefeng.com/wiki/1016959663602400/1017434209254976 | [
"• Index",
null,
"#### 返回函数\n\nLast updated: ... / Reads: 137764365 Edit\n\n### 函数作为返回值\n\n``````def calc_sum(*args):\nax = 0\nfor n in args:\nax = ax + n\nreturn ax\n``````\n\n``````def lazy_sum(*args):\ndef sum():\nax = 0\nfor n in args:\nax = ax + n\nreturn ax\nreturn sum\n``````\n\n``````>>> f = lazy_sum(1, 3, 5, 7, 9)\n>>> f\n<function lazy_sum.<locals>.sum at 0x101c6ed90>\n``````\n\n``````>>> f()\n25\n``````\n\n``````>>> f1 = lazy_sum(1, 3, 5, 7, 9)\n>>> f2 = lazy_sum(1, 3, 5, 7, 9)\n>>> f1==f2\nFalse\n``````\n\n`f1()``f2()`的调用结果互不影响。\n\n### 闭包\n\n``````def count():\nfs = []\nfor i in range(1, 4):\ndef f():\nreturn i*i\nfs.append(f)\nreturn fs\n\nf1, f2, f3 = count()\n``````\n\n``````>>> f1()\n9\n>>> f2()\n9\n>>> f3()\n9\n``````\n\n``````返回闭包时牢记一点:返回函数不要引用任何循环变量,或者后续会发生变化的变量。\n``````\n\n``````def count():\ndef f(j):\ndef g():\nreturn j*j\nreturn g\nfs = []\nfor i in range(1, 4):\nfs.append(f(i)) # f(i)立刻被执行,因此i的当前值被传入f()\nreturn fs\n``````\n\n``````>>> f1, f2, f3 = count()\n>>> f1()\n1\n>>> f2()\n4\n>>> f3()\n9\n``````\n\n### nonlocal\n\n``````def inc():\nx = 0\ndef fn():\n# 仅读取x的值:\nreturn x + 1\nreturn fn\n\nf = inc()\nprint(f()) # 1\nprint(f()) # 1\n``````\n\n``````# -*- coding: utf-8 -*-\n----\ndef inc():\nx = 0\ndef fn():\n# nonlocal x\nx = x + 1\nreturn x\nreturn fn\n\nf = inc()\nprint(f()) # 1\nprint(f()) # 2\n``````\n\n``````使用闭包时,对外层变量赋值前,需要先使用nonlocal声明该变量不是当前函数的局部变量。\n``````\n\n### 练习\n\n``````# -*- coding: utf-8 -*-\n----\ndef createCounter():\ndef counter():\nreturn 1\nreturn counter\n----\n# 测试:\ncounterA = createCounter()\nprint(counterA(), counterA(), counterA(), counterA(), counterA()) # 1 2 3 4 5\ncounterB = createCounter()\nif [counterB(), counterB(), counterB(), counterB()] == [1, 2, 3, 4]:\nprint('测试通过!')\nelse:\nprint('测试失败!')\n``````\n\nreturn_func.py"
] | [
null,
"https://cdn.liaoxuefeng.com/files/attachments/1340208951853121/0",
null
] | {"ft_lang_label":"__label__zh","ft_lang_prob":0.83984184,"math_prob":0.9966124,"size":2472,"snap":"2022-40-2023-06","text_gpt3_token_len":1534,"char_repetition_ratio":0.13857375,"word_repetition_ratio":0.2124183,"special_character_ratio":0.34142396,"punctuation_ratio":0.13647059,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99499863,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-02-03T19:31:53Z\",\"WARC-Record-ID\":\"<urn:uuid:39fbd11a-9b1d-4e6b-8bf3-88eeb5edb0d8>\",\"Content-Length\":\"91291\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:53150b14-171d-432d-ae47-ad535d0b9fb4>\",\"WARC-Concurrent-To\":\"<urn:uuid:715b9115-9cdc-4ebb-9788-ee945b5bc823>\",\"WARC-IP-Address\":\"8.48.85.207\",\"WARC-Target-URI\":\"https://cdn.liaoxuefeng.com/wiki/1016959663602400/1017434209254976\",\"WARC-Payload-Digest\":\"sha1:3CI3ZD6AUCEMWQE6DLNFEF7O6SSZNX3T\",\"WARC-Block-Digest\":\"sha1:LNWEYVUQENM5OREJ2IZ4VHBTCTLJLYDV\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-06/CC-MAIN-2023-06_segments_1674764500074.73_warc_CC-MAIN-20230203185547-20230203215547-00468.warc.gz\"}"} |
https://www.semanticscholar.org/paper/Continuous-representation-theory-of-p-adic-Lie-Schneider/437b804ba2a0abc350c80f35d3aac0a5ee12c1fe | [
"# Continuous representation theory of p-adic Lie groups\n\n```@inproceedings{Schneider2006ContinuousRT,\ntitle={Continuous representation theory of p-adic Lie groups},\nauthor={Peter Schneider},\nyear={2006}\n}```\nIn this paper we give an overview over the basic features of the continuous representation theory of p-adic Lie groups as it has emerged during the last five years. Themain motivation for developing such a theory is a possible extension of the local Langlands program to p-adic Galois representations. This is still very much in its infancy. But in the last section we will describe a first approximation to an extended Langlands functoriality principle for crystalline Galois representations.\n27 Citations\nAbstract Given a compact p-adic Lie group G over a finite unramified extension L/ℚp let GL/ℚp be the product over all Galois conjugates of G. We construct an exact and faithful functor from\nThe aim of the seminar is to give an introduction to the theory of representations of p-adic locally analytic groups, and the theory of Ù D-modules introduced in [2, 4]. We also aim to study\nWe study the continuous principal series representations of split connected reductive p-adic groups over p-adic fields. We show that such representations are irreducible when the inducing character\nIn this paper we study p-adic principal series representation of a padic group G as a module over the maximal compact subgroup G0. We show that there are no non-trivial G0-intertwining maps between\n• Mathematics\n• 2016\nWe study the continuous principal series representations of split connected reductive padic groups over p-adic fields. We show that such representations are irreducible when the inducing character\n• Mathematics\n• 2022\nIn this paper we view pro-p Iwahori subgroups I as rigid analytic groups I for large enough p. This is done by endowing I with a natural p-valuation, and thereby generalizing results of Lazard for\n• Mathematics\n• 2014\nLet \\$G\\$ be the group of points of a split reductive group over a finite extension of \\${\\mathbb Q}_p\\$. In this paper, we compute the dimensions of certain classes of locally analytic\nLet G be a lo/cally ℚp-analytic group and K a finite extension of ℚp with residue field k. Adapting a strategy of B. Mazur (cf. [Maz89]) we use deformation theory to study the possible liftings of a\nFor a fairly general reductive group G/Qp , we explicitly compute the space of locally algebraic vectors in the Breuil-Herzig construction Π(ρ)ord, for a potentially semistable Borel-valued\n• Mathematics\n• 2017\nLet \\$G\\$ be a reductive \\$p\\$-adic group. We consider the general question of whether the reducibility of an induced representation can be detected in a ``co-rank one\" situation. For smooth\n• Mathematics\n• 1999\nLet L be a finite extension of Qp, and let K be a spherically complete non-archimedean extension field of L. In this paper we introduce a restricted category of continuous representations of locally\nLet p be a prime number, L a finite extension of the field Qp of p-adic numbers, K a spherically complete extension field of L and G the group of L-rational points of a split reductive group over L.\n• Mathematics\n• 2000\nWe develop a duality theory between the continuous representations of a compactp-adic Lie groupG in Banach spaces over a givenp-adic fieldK and certain compact modules over the completed group\nIntroduction The congruences between automorphic forms and their appli cations to number theory are a motivation to study the smooth representations of a reductive p-adic group G over an\n• Mathematics\n• 2006\nAbstract By the theory of Colmez and Fontaine, a de Rham representation of the Galois group of a local field roughly corresponds to a representation of the Weil-Deligne group equipped with an\n• Mathematics\n• 2005\nWe take some initial steps towards illuminating the (hypothetical) \\$p\\$-adic local Langlands functoriality principle relating Galois representations of a \\$p\\$-adic field \\$L\\$ and admissible unitary\n• Mathematics\n• 2004\nWe study the problem of constructing a contragredient functor on the category of admissible locally analytic representations of a p-adic analytic group G. A naive contragredient does not exist. As a\n• Mathematics\n• 2003\nLet G be a compact, locally L-analytic group, where L is a finite extension of Qp. Let K be a discretely valued extension field of L. We study the algebra D(G,K) of K-valued locally analytic"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.83849096,"math_prob":0.8535908,"size":5750,"snap":"2023-14-2023-23","text_gpt3_token_len":1366,"char_repetition_ratio":0.19561434,"word_repetition_ratio":0.062642366,"special_character_ratio":0.204,"punctuation_ratio":0.040339705,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9832359,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-01T08:39:29Z\",\"WARC-Record-ID\":\"<urn:uuid:119db159-d741-4761-89d1-a8c6bb37c2d8>\",\"Content-Length\":\"396179\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:d8471264-2e50-4f11-bd08-6583de88cd8a>\",\"WARC-Concurrent-To\":\"<urn:uuid:445b7fc4-4784-4ae5-95c2-07b25b4e1d78>\",\"WARC-IP-Address\":\"13.32.208.4\",\"WARC-Target-URI\":\"https://www.semanticscholar.org/paper/Continuous-representation-theory-of-p-adic-Lie-Schneider/437b804ba2a0abc350c80f35d3aac0a5ee12c1fe\",\"WARC-Payload-Digest\":\"sha1:NNGXBS6WA33XVF3PLLM5UXOFIQH3GLHS\",\"WARC-Block-Digest\":\"sha1:X4MHQXORGYLPXGBLLZGOKXHPBFLTHOVN\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224647639.37_warc_CC-MAIN-20230601074606-20230601104606-00036.warc.gz\"}"} |
https://help.geogebra.org/topic/iteration-list | [
"# iteration list\n\nlohabithi shared this question 2 years ago\n\nHello, I want the series of sequential sum of a list of numbers.\n\nlike,\n\n{1,2,3,4,5} -> {1,3,6,10,15}\n\nI can use iteration list with a custom tool, like in the file attached. It works.\n\nBut if I attempt to define the expression directly, like:\n\nIterationList({Element(p,1)+1, Element(L_1, Element(p, 1))+Element(p,2)}, p, {{1, 0}}, Length(L_1) - 1)\n\nthen strange things happen!\n\nFirst, nothing happens, no error message but also no new object is created (defined of undefined). As if I had not typed anything!\n\nBut then, it becomes impossible to make any input with the mouse: no new point can be created!\n\nOn the other hand, as you can see in the file attached, iteration (NOT iterationlist) works without recourse to custom tool:\n\nIteration({Element(p,1)+1, Element(L_1, Element(p, 1))+Element(p,2)}, p, {{1, 0}}, Length(L_1) - 1)\n\ngives the proper result.\n\nThis problem with iteration list did happen repeatedly in a complicated file, and eventually it seems I have isolated the problem.",
null,
"1\n\nit works fine for me\n\nGeoGebra Classic 5.0.486.0-d (Java 1.8.0_161-32bit, 247MB. CAS Initialising) 18 August 2018",
null,
"1\n\nI also have the same installation (copy of system info below), and it doesn't work...\n\n[co]GeoGebra Classic 5.0.486.0-d (18 August 2018)\n\nJava: 1.8.0_161\n\nOS: Windows 7\n\nArchitecture: x86 / x86\n\nHeap: 247MB\n\nCAS: CAS Initializing\n\nGeoGebraLogger log:\n\n2:59:47.265 DEBUG: org.geogebra.desktop.i.a.<init>[-1]: isApplet=false runningFromJar=true\n\n2:59:47.265 DEBUG: org.geogebra.desktop.i.a.az[-1]: Setting up logging\n\n2:59:47.278 DEBUG: org.geogebra.desktop.i.a.az[-1]: Logging is redirected to C:\\Users\\Admin\\AppData\\Local\\Temp\\GeoGebraLog_rligdyqaik.txt\n\nDEBUG: org.geogebra.common.m.x.G[-1]: Number of registered views = 1\n\n* class org.geogebra.desktop.geogebra3D.b.b\n\nDEBUG: org.geogebra.desktop.i.a.aR[-1]: Waiting for the initialization: 0\n\nDEBUG: org.geogebra.common.b.c.a.a[-1]: SingularWS connection disabled by command line option\n\nINFO: org.geogebra.common.n.f.b[-1]: No SingularWS is available at http://singularws.idm.jku.at/ (yet)\n\nDEBUG: org.geogebra.desktop.l.l.a[-1]: storing geogebra_thumbnail.png false\n\nDEBUG: org.geogebra.desktop.l.l.a[-1]: storing d81d328bd62b33c156c55500b5b41145/tag1.JPG false\n\nDEBUG: org.geogebra.common.m.x.a[-1]: function ggbOnInit() {}\n\nDEBUG: org.geogebra.common.m.x.G[-1]: Number of registered views = 2\n\n* class org.geogebra.desktop.geogebra3D.b.b\n\n* class org.geogebra.common.plugin.b\n\nDEBUG: org.geogebra.common.m.d.c.a[-1]: null valid expression label\n\nDEBUG: org.geogebra.common.m.d.c.a[-1]: null valid expression label\n\nDEBUG: org.geogebra.common.m.c.bX.b[-1]: falselabel\n\nDEBUG: org.geogebra.common.m.c.bX.b[-1]: falselabel\n\nDEBUG: org.geogebra.common.m.c.bX.b[-1]: falselabel\n\nDEBUG: org.geogebra.common.i.h.a[-1]: CAS support: true\n\nDEBUG: org.geogebra.common.m.x.G[-1]: Number of registered views = 3\n\n* class org.geogebra.desktop.geogebra3D.b.b\n\n* class org.geogebra.common.plugin.b\n\n* class org.geogebra.desktop.geogebra3D.e.c.a.a\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nERROR: org.geogebra.desktop.gui.i.U.a[-1]: problem starting JavaFX\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nWARN: org.geogebra.desktop.i.a.o[-1]: Option versionCheckAllow not recognized :\n\nINFO: org.geogebra.desktop.i.B.a[-1]: No system preferences\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nDEBUG: org.geogebra.desktop.geogebra3D.input3D.intelRealSense.Socket.queryRegistry[-1]: reg query HKLM\\Software\\Intel\\RSSDK\\Components\\ivcam : 1\n\nDEBUG: org.geogebra.desktop.geogebra3D.a\\$a.a[-1]: RealSense: No key for camera in registry\n\nDEBUG: org.geogebra.desktop.geogebra3D.a\\$a.b[-1]: zSpace: try to init\n\nDEBUG: org.geogebra.desktop.geogebra3D.a\\$a.b[-1]: zSpace: Failed to init\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nDEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nDEBUG: org.geogebra.desktop.b.a.e.<init>[-1]: possible missing release()\n\nDEBUG: org.geogebra.desktop.gui.a.a\\$a.b[-1]: Checking version\n\nDEBUG: org.geogebra.desktop.gui.a.a\\$a.b[-1]: major version check needed: no check was done yet\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.x.G[-1]: Number of registered views = 1\n\n* class org.geogebra.desktop.geogebra3D.b.b\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.i.a.aR[-1]: Waiting for the initialization: 0\n\nAug 21, 2018 2:59:47 AM\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: DEBUG: org.geogebra.common.b.c.a.a[-1]: SingularWS connection disabled by command line option\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: INFO: org.geogebra.common.n.f.b[-1]: No SingularWS is available at http://singularws.idm.jku.at/ (yet)\n\nAug 21, 2018 2:59:47 AM\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.l.l.a[-1]: storing geogebra_thumbnail.png false\n\nAug 21, 2018 2:59:47 AM\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.l.l.a[-1]: storing d81d328bd62b33c156c55500b5b41145/tag1.JPG false\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.x.a[-1]: function ggbOnInit() {}\n\nAug 21, 2018 2:59:47 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.x.G[-1]: Number of registered views = 2\n\n* class org.geogebra.desktop.geogebra3D.b.b\n\n* class org.geogebra.common.plugin.b\n\nAug 21, 2018 2:59:48 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.d.c.a[-1]: null valid expression label\n\nAug 21, 2018 2:59:48 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.d.c.a[-1]: null valid expression label\n\nAug 21, 2018 2:59:48 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.c.bX.b[-1]: falselabel\n\nAug 21, 2018 2:59:48 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.c.bX.b[-1]: falselabel\n\nAug 21, 2018 2:59:48 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.c.bX.b[-1]: falselabel\n\nAug 21, 2018 2:59:48 AM\n\nSTDOUT: DEBUG: org.geogebra.common.i.h.a[-1]: CAS support: true\n\nAug 21, 2018 2:59:50 AM\n\nSTDOUT: DEBUG: org.geogebra.common.m.x.G[-1]: Number of registered views = 3\n\n* class org.geogebra.desktop.geogebra3D.b.b\n\n* class org.geogebra.common.plugin.b\n\n* class org.geogebra.desktop.geogebra3D.e.c.a.a\n\nAug 21, 2018 2:59:50 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nAug 21, 2018 2:59:50 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nAug 21, 2018 2:59:50 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nAug 21, 2018 2:59:50 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nAug 21, 2018 2:59:50 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nAug 21, 2018 2:59:50 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nAug 21, 2018 2:59:50 AM\n\nSTDERR: ERROR: org.geogebra.desktop.gui.i.U.a[-1]: problem starting JavaFX\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: WARN: org.geogebra.desktop.i.a.o[-1]: Option versionCheckAllow not recognized :\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: INFO: org.geogebra.desktop.i.B.a[-1]: No system preferences\n\nAug 21, 2018 2:59:51 AM\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.geogebra3D.input3D.intelRealSense.Socket.queryRegistry[-1]: reg query HKLM\\Software\\Intel\\RSSDK\\Components\\ivcam : 1\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.geogebra3D.a\\$a.a[-1]: RealSense: No key for camera in registry\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.geogebra3D.a\\$a.b[-1]: zSpace: try to init\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.geogebra3D.a\\$a.b[-1]: zSpace: Failed to init\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 7\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 6\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.common.n.f.a[-1]: Application.getModeText(): macro does not exist: ID = 4\n\nAug 21, 2018 2:59:51 AM\n\nAug 21, 2018 2:59:51 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.b.a.e.<init>[-1]: possible missing release()\n\nAug 21, 2018 2:59:52 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.gui.a.a\\$a.b[-1]: Checking version\n\nAug 21, 2018 2:59:52 AM\n\nSTDOUT: DEBUG: org.geogebra.desktop.gui.a.a\\$a.b[-1]: major version check needed: no check was done yet\n\nAug 21, 2018 2:59:53 AM\n\nAug 21, 2018 2:59:54 AM\n\nGGB file content:\n\n<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<geogebra format=\"5.0\" version=\"5.0.486.0\" app=\"classic\" platform=\"d\" id=\"cc537f20-a3e3-4a75-96d9-67f254e65d60\" xsi:noNamespaceSchemaLocation=\"http://www.geogebra.org/ggb...; xmlns=\"\" xmlns:xsi=\"http://www.w3.org/2001/XMLS...; >\n\n<gui>\n\n<window width=\"1366\" height=\"768\" />\n\n<perspectives>\n\n<perspective id=\"tmp\">\n\n<panes>\n\n<pane location=\"\" divider=\"0.3213762811127379\" orientation=\"1\" />\n\n</panes>\n\n<views>\n\n<view id=\"512\" toolbar=\"0 | 1 501 5 19 , 67 | 2 15 45 18 , 7 37 | 514 3 9 , 13 44 , 47 | 16 | 551 550 11 , 20 22 21 23 , 55 56 57 , 12 | 69 | 510 511 , 512 513 | 533 531 , 534 532 , 522 523 , 537 536 , 535 | 521 520 | 36 , 38 49 560 | 571 30 29 570 31 33 | 17 | 540 40 41 42 , 27 28 35 , 6 , 502\" visible=\"false\" inframe=\"false\" stylebar=\"false\" location=\"1,1,1\" size=\"500\" window=\"100,100,600,400\" />\n\n<view id=\"4\" toolbar=\"0 || 2020 , 2021 , 2022 , 66 || 2001 , 2003 , 2002 , 2004 , 2005 || 2040 , 2041 , 2042 , 2044 , 2043\" visible=\"false\" inframe=\"false\" stylebar=\"false\" location=\"1,1\" size=\"300\" window=\"100,100,600,400\" />\n\n<view id=\"8\" toolbar=\"1001 | 1002 | 1003 || 1005 | 1004 || 1006 | 1007 | 1010 || 1008 1009 || 66 68 || 6\" visible=\"false\" inframe=\"false\" stylebar=\"false\" location=\"1,3\" size=\"300\" window=\"100,100,600,400\" />\n\n<view id=\"4097\" visible=\"false\" inframe=\"false\" stylebar=\"true\" location=\"1,1\" size=\"743\" window=\"100,100,700,550\" />\n\n<view id=\"1\" visible=\"true\" inframe=\"false\" stylebar=\"true\" location=\"1\" size=\"903\" window=\"100,100,600,400\" />\n\n<view id=\"2\" visible=\"true\" inframe=\"false\" stylebar=\"true\" location=\"3\" size=\"439\" window=\"100,100,600,400\" />\n\n<view id=\"16\" visible=\"false\" inframe=\"false\" stylebar=\"false\" location=\"1\" size=\"150\" window=\"50,50,500,500\" />\n\n<view id=\"32\" visible=\"false\" inframe=\"false\" stylebar=\"true\" location=\"1\" size=\"150\" window=\"50,50,500,500\" />\n\n<view id=\"64\" toolbar=\"0\" visible=\"false\" inframe=\"false\" stylebar=\"false\" location=\"1\" size=\"150\" window=\"50,50,500,500\" />\n\n<view id=\"70\" toolbar=\"0 || 2020 || 2021 || 2022\" visible=\"false\" inframe=\"false\" stylebar=\"true\" location=\"1\" size=\"150\" window=\"50,50,500,500\" />\n\n</views>\n\n<toolbar show=\"true\" items=\"0 39 73 62 | 1 501 67 , 5 19 , 72 75 76 | 2 15 45 , 18 65 , 7 37 | 4 3 8 9 , 13 44 , 58 , 47 | 16 51 64 , 70 | 10 34 53 11 , 24 20 22 , 21 23 | 55 56 57 , 12 | 36 46 , 38 49 50 , 71 14 68 | 30 29 54 32 31 33 | 25 17 26 60 52 61 | 40 41 42 , 27 28 35 , 6 | 100001 | 100002 | 100004 | 100008 100007 100005\" position=\"1\" help=\"false\" />\n\n<input show=\"true\" cmd=\"true\" top=\"algebra\" />\n\n<dockBar show=\"true\" east=\"true\" />\n\n</perspective>\n\n</perspectives>\n\n<labelingStyle val=\"0\"/>\n\n<font size=\"12\"/>\n\n</gui>\n\n<euclidianView>\n\n<viewNumber viewNo=\"1\"/>\n\n<size width=\"903\" height=\"592\"/>\n\n<coordSystem xZero=\"175.5213327651935\" yZero=\"337.95373982179007\" scale=\"25.5662131029818\" yscale=\"25.56621310298209\"/>\n\n<evSettings axes=\"false\" grid=\"false\" gridIsBold=\"false\" pointCapturing=\"3\" rightAngleStyle=\"1\" checkboxSize=\"26\" gridType=\"3\"/>\n\n<bgColor r=\"255\" g=\"255\" b=\"255\"/>\n\n<axesColor r=\"0\" g=\"0\" b=\"0\"/>\n\n<gridColor r=\"192\" g=\"192\" b=\"192\"/>\n\n<lineStyle axes=\"1\" grid=\"0\"/>\n\n<axis id=\"0\" show=\"false\" label=\"\" unitLabel=\"\" tickStyle=\"1\" showNumbers=\"true\"/>\n\n<axis id=\"1\" show=\"false\" label=\"\" unitLabel=\"\" tickStyle=\"1\" showNumbers=\"true\"/>\n\n</euclidianView>\n\n<kernel>\n\n<continuous val=\"false\"/>\n\n<usePathAndRegionParameters val=\"true\"/>\n\n<decimals val=\"2\"/>\n\n<angleUnit val=\"degree\"/>\n\n<coordStyle val=\"0\"/>\n\n</kernel>\n\n<scripting blocked=\"false\" disabled=\"false\"/>\n\n<construction title=\"\" author=\"\" date=\"\">\n\n<element type=\"point\" label=\"A\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelOffset x=\"11\" y=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"10.189364360451709\" y=\"4.923014222869017\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<element type=\"point\" label=\"B\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelOffset x=\"16\" y=\"3\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"8.858514412069583\" y=\"0.7022447849226433\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<command name=\"Vector\">\n\n<input a0=\"A\" a1=\"B\"/>\n\n<output a0=\"v\"/>\n\n</command>\n\n<element type=\"vector\" label=\"v\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"-1.3308499483821254\" y=\"-4.220769437946373\" z=\"0.0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\" opacity=\"178\"/>\n\n<coordStyle style=\"cartesian\"/>\n\n<startPoint exp=\"A\"/>\n\n</element>\n\n<element type=\"point\" label=\"C\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"5.384954023354466\" y=\"1.9409664274293843\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<element type=\"point\" label=\"D\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"3.694774392604529\" y=\"5.66662996792482\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<command name=\"Vector\">\n\n<input a0=\"C\" a1=\"D\"/>\n\n<output a0=\"w\"/>\n\n</command>\n\n<element type=\"vector\" label=\"w\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"-1.6901796307499373\" y=\"3.7256635404954355\" z=\"0.0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\" opacity=\"178\"/>\n\n<coordStyle style=\"cartesian\"/>\n\n<startPoint exp=\"C\"/>\n\n</element>\n\n<element type=\"point\" label=\"E\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"19.10641459754691\" y=\"4.026945226775936\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<element type=\"point\" label=\"F\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"13.473980907818914\" y=\"-0.8232060060453382\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<command name=\"Vector\">\n\n<input a0=\"E\" a1=\"F\"/>\n\n<output a0=\"a\"/>\n\n</command>\n\n<element type=\"vector\" label=\"a\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"-5.6324336897279945\" y=\"-4.850151232821275\" z=\"0.0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\" opacity=\"178\"/>\n\n<coordStyle style=\"cartesian\"/>\n\n<startPoint exp=\"E\"/>\n\n</element>\n\n<element type=\"point\" label=\"G\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"6.14\" y=\"-3.5\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<element type=\"point\" label=\"H\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"5.12\" y=\"-1.02\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<command name=\"Vector\">\n\n<input a0=\"G\" a1=\"H\"/>\n\n<output a0=\"b\"/>\n\n</command>\n\n<element type=\"vector\" label=\"b\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"-1.0199999999999996\" y=\"2.48\" z=\"0.0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\" opacity=\"178\"/>\n\n<coordStyle style=\"cartesian\"/>\n\n<startPoint exp=\"G\"/>\n\n</element>\n\n<command name=\"tag1\">\n\n<input a0=\"w\"/>\n\n<output a0=\"text1\"/>\n\n</command>\n\n<element type=\"text\" label=\"text1\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<decimals val=\"2\"/>\n\n<auxiliary val=\"true\"/>\n\n<startPoint x=\"0.58\" y=\"1.26\" z=\"1.0\"/>\n\n</element>\n\n<element type=\"button\" label=\"button1\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelOffset x=\"13\" y=\"15\"/>\n\n<labelMode val=\"0\"/>\n\n<fixed val=\"true\"/>\n\n<auxiliary val=\"true\"/>\n\n<ggbscript val=\"SetValue(alltexts,RemoveUndefined(Sequence(If(Defined(Object(\"text\" + (n))), Object(\"text\" + (n))), n, 1, 200))) SetValue(duplicate,Flatten(Sequence(RemoveUndefined(Sequence(If(alltexts(a) ≟ alltexts(b), a), a, b + 1, Length(alltexts))), b, 1, Length(alltexts)))) SetValue(textnumbers,RemoveUndefined(Sequence(If(Defined(Object(\"text\" + (n))), If(Object(\"text\" + (n)) ≟ alltexts(duplicate(1)), n)), n, 1, 200))) SetValue(deleteinstructions,Zip(\"Delete(text\" + (n) + \")\", n, textnumbers)) SetValue(names1,RemoveUndefined(Zip(If(First(a, 3) ≟ \"\\$1\\$\", Take(a, 4)), a, alltexts))) SetValue(vectors1,Zip(Object(a), a, names1)) SetValue(points10,Zip(Point(a, 0), Vector(a), vectors1)) SetValue(points11,Zip(Point(a, 1), Vector(a), vectors1)) SetValue(tags1,Zip(Text(\" (funi 1) \" + (Distance(a, b)), Midpoint(a, b)), a, points10, b, points11)) SetValue(lines1,Zip(Line(a, b), a, points10, b, points11)) \"/>\n\n<caption val=\"init\"/>\n\n</element>\n\n<command name=\"RemoveUndefined\">\n\n<input a0=\"Sequence[If[Defined[Object[\"text\" + (n)]], Object[\"text\" + (n)]], n, 1, 200]\"/>\n\n<output a0=\"alltexts\"/>\n\n</command>\n\n<element type=\"list\" label=\"alltexts\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"RemoveUndefined\">\n\n<input a0=\"Zip[If[First[a, 3] ≟ \"\\$1\\$\", Take[a, 4]], a, alltexts]\"/>\n\n<output a0=\"names1\"/>\n\n</command>\n\n<element type=\"list\" label=\"names1\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"Zip\">\n\n<input a0=\"Vector[Object[a]]\" a1=\"a\" a2=\"names1\"/>\n\n<output a0=\"vectors1\"/>\n\n</command>\n\n<element type=\"list\" label=\"vectors1\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"255\" g=\"0\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"13\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"Zip\">\n\n<input a0=\"Point[a, 0]\" a1=\"Vector[a]\" a2=\"vectors1\"/>\n\n<output a0=\"points10\"/>\n\n</command>\n\n<element type=\"list\" label=\"points10\">\n\n<show object=\"false\" label=\"false\"/>\n\n<objColor r=\"255\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"9\"/>\n\n<pointStyle val=\"2\"/>\n\n</element>\n\n<command name=\"Zip\">\n\n<input a0=\"Point[a, 1]\" a1=\"Vector[a]\" a2=\"vectors1\"/>\n\n<output a0=\"points11\"/>\n\n</command>\n\n<element type=\"list\" label=\"points11\">\n\n<show object=\"false\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"9\"/>\n\n<pointStyle val=\"2\"/>\n\n</element>\n\n<command name=\"Zip\">\n\n<input a0=\"Text[\" funi 1, \" + (Distance[a, b]), Midpoint[a, b]]\" a1=\"a\" a2=\"points10\" a3=\"b\" a4=\"points11\"/>\n\n<output a0=\"tags1\"/>\n\n</command>\n\n<element type=\"list\" label=\"tags1\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"Zip\">\n\n<input a0=\"Line[a, b]\" a1=\"a\" a2=\"points10\" a3=\"b\" a4=\"points11\"/>\n\n<output a0=\"lines1\"/>\n\n</command>\n\n<element type=\"list\" label=\"lines1\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"1\" type=\"15\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"Flatten\">\n\n<input a0=\"Sequence[RemoveUndefined[Sequence[If[alltexts(a) ≟ alltexts(b), a], a, b + 1, Length[alltexts]]], b, 1, Length[alltexts]]\"/>\n\n<output a0=\"duplicate\"/>\n\n</command>\n\n<element type=\"list\" label=\"duplicate\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<auxiliary val=\"true\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<listType val=\"numeric\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"RemoveUndefined\">\n\n<input a0=\"Sequence[If[Defined[Object[\"text\" + (n)]], If[Object[\"text\" + (n)] ≟ alltexts(duplicate(1)), n]], n, 1, 200]\"/>\n\n<output a0=\"textnumbers\"/>\n\n</command>\n\n<element type=\"list\" label=\"textnumbers\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<auxiliary val=\"true\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<listType val=\"numeric\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"Zip\">\n\n<input a0=\"\"Delete(text\" + (n) + \")\"\" a1=\"n\" a2=\"textnumbers\"/>\n\n<output a0=\"deleteinstructions\"/>\n\n</command>\n\n<element type=\"list\" label=\"deleteinstructions\">\n\n<show object=\"false\" label=\"true\" ev=\"4\"/>\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<auxiliary val=\"true\"/>\n\n<ggbscript onUpdate=\"Execute(CopyFreeObject(deleteinstructions))\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<ggbscript onUpdate=\"Execute(CopyFreeObject(deleteinstructions))\"/>\n\n<listType val=\"text\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n</element>\n\n<command name=\"tag1\">\n\n<input a0=\"a\"/>\n\n<output a0=\"text3\"/>\n\n</command>\n\n<element type=\"text\" label=\"text3\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<decimals val=\"2\"/>\n\n<auxiliary val=\"true\"/>\n\n<startPoint x=\"0.58\" y=\"1.26\" z=\"1.0\"/>\n\n</element>\n\n<command name=\"Iteration\">\n\n<input a0=\"addparamlist[p, points10, points11]\" a1=\"p\" a2=\"{{2, points10(1), points11(1)}}\" a3=\"Length[points10] - 1\"/>\n\n<output a0=\"resultant\"/>\n\n</command>\n\n<element type=\"list\" label=\"resultant\">\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"-1\"/>\n\n<symbolic val=\"true\" />\n\n</element>\n\n<command name=\"plotvector\">\n\n<input a0=\"resultant\"/>\n\n<output a0=\"u\"/>\n\n</command>\n\n<element type=\"vector\" label=\"u\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"-7.322613320477931\" y=\"-1.1244876923258396\" z=\"0.0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\" opacity=\"178\"/>\n\n<coordStyle style=\"cartesian\"/>\n\n<startPoint x=\"8.558989061096916\" y=\"-5.055560096278123\" z=\"1.0\"/>\n\n</element>\n\n</construction>\n\n</geogebra>\n\n<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<geogebra format=\"5.0\" version=\"5.0.486.0\" app=\"classic\" platform=\"d\" xsi:noNamespaceSchemaLocation=\"http://www.geogebra.org/ggt...; xmlns=\"\" xmlns:xsi=\"http://www.w3.org/2001/XMLS...; >\n\n<macro cmdName=\"tag1\" toolName=\"tag 1\" toolHelp=\"vector\" iconFile=\"d81d328bd62b33c156c55500b5b41145/tag1.JPG\" showInToolBar=\"true\" copyCaptions=\"true\">\n\n<macroInput a0=\"u\"/>\n\n<macroOutput a0=\"text1\"/>\n\n<construction title=\"\" author=\"\" date=\"\">\n\n<element type=\"vector\" label=\"u\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"0\" playing=\"false\"/>\n\n<coords x=\"1.0\" y=\"2.0\" z=\"0.0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\" opacity=\"178\"/>\n\n<coordStyle style=\"cartesian\"/>\n\n</element>\n\n<expression label=\"text1\" exp=\"\"\\$1\\$\" + (Name[u]) + \"\"\" />\n\n<element type=\"text\" label=\"text1\">\n\n<show object=\"false\" label=\"true\" ev=\"40\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<auxiliary val=\"true\"/>\n\n<startPoint x=\"0.58\" y=\"1.26\" z=\"1.0\"/>\n\n</element>\n\n</construction>\n\n</macro>\n\n<macro cmdName=\"plotvector\" toolName=\"plot vector\" toolHelp=\"{i, A, B}\" iconFile=\"\" showInToolBar=\"true\" copyCaptions=\"true\">\n\n<macroInput a0=\"L_1\"/>\n\n<macroOutput a0=\"c\"/>\n\n<construction title=\"\" author=\"\" date=\"\">\n\n<expression label=\"L_1\" exp=\"{2, (13.113045232123852, -2.8968392426220193), (12.18, -1.54)}\"/>\n\n<element type=\"list\" label=\"L_1\">\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"0\" playing=\"false\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n<symbolic val=\"true\" />\n\n</element>\n\n<command name=\"Vector\">\n\n<input a0=\"L_1(2)\" a1=\"L_1(3)\"/>\n\n<output a0=\"c\"/>\n\n</command>\n\n<element type=\"vector\" label=\"c\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"-0.9330452321238525\" y=\"1.3568392426220193\" z=\"0.0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\" opacity=\"178\"/>\n\n<coordStyle style=\"cartesian\"/>\n\n<startPoint x=\"13.113045232123852\" y=\"-2.8968392426220193\" z=\"1.0\"/>\n\n</element>\n\n</construction>\n\n</macro>\n\n<macro cmdName=\"iHvparaallpoints\" toolName=\"iHvparaallpoints\" toolHelp=\"{(i,0),A,B}, C, D\" iconFile=\"\" showInToolBar=\"true\" copyCaptions=\"true\">\n\n<macroInput a0=\"parami\" a1=\"J\" a2=\"I\"/>\n\n<macroOutput a0=\"paramo\"/>\n\n<construction title=\"\" author=\"\" date=\"\">\n\n<element type=\"point\" label=\"I\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"24.01160830163898\" y=\"-1.5246958786762785\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<element type=\"point\" label=\"J\">\n\n<show object=\"true\" label=\"true\" ev=\"4\"/>\n\n<objColor r=\"77\" g=\"77\" b=\"255\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"1\" playing=\"false\"/>\n\n<coords x=\"25.538303805846848\" y=\"-3.8660921215646016\" z=\"1.0\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"parami\" exp=\"{(1, 0), (19.01502, -5.00546), (20.69926, -2.64752)}\"/>\n\n<element type=\"list\" label=\"parami\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"255\" g=\"0\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"0\" playing=\"false\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"C\" exp=\"parami(3)\" type=\"point\" />\n\n<element type=\"point\" label=\"C\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"255\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"20.69926\" y=\"-2.64752\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"B\" exp=\"parami(2)\" type=\"point\" />\n\n<element type=\"point\" label=\"B\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"255\" g=\"0\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"19.01502\" y=\"-5.00546\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<command name=\"Intersect\">\n\n<input a0=\"Line[B, C]\" a1=\"Line[I, J]\"/>\n\n<output a0=\"M\"/>\n\n</command>\n\n<element type=\"point\" label=\"M\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"172.0906395061673\" y=\"2.3579401183622366\" z=\"7.543329605314129\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<command name=\"If\">\n\n<input a0=\"Defined[M]\" a1=\"M\" a2=\"Intersect[Line[I, C + I - J], Line[C, I + C - B]]\"/>\n\n<output a0=\"A\"/>\n\n</command>\n\n<element type=\"point\" label=\"A\">\n\n<show object=\"false\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"172.0906395061673\" y=\"2.3579401183622366\" z=\"7.543329605314129\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"N\" exp=\"A + C - B + I - J\" type=\"point\" />\n\n<element type=\"point\" label=\"N\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"22.971162421877818\" y=\"5.011922360920487\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"paramo\" exp=\"{parami(1) + (1, 0), A, N}\" />\n\n<element type=\"list\" label=\"paramo\">\n\n<show object=\"true\" label=\"false\"/>\n\n<objColor r=\"0\" g=\"0\" b=\"255\" alpha=\"0.10000000149011612\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n</construction>\n\n</macro>\n\n<macroInput a0=\"parami\" a1=\"L_{10}\" a2=\"L_{11}\"/>\n\n<macroOutput a0=\"paramo\"/>\n\n<construction title=\"\" author=\"\" date=\"\">\n\n<expression label=\"L_{11}\" exp=\"{(2.765753794656004, 2.0201400933233042)}\"/>\n\n<element type=\"list\" label=\"L_{11}\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"0\" playing=\"false\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"L_{10}\" exp=\"{(3.214194256994519, 0.9214609605939584)}\"/>\n\n<element type=\"list\" label=\"L_{10}\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"0\" playing=\"false\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"parami\" exp=\"{1, (0, 1), (2, 3)}\"/>\n\n<element type=\"list\" label=\"parami\">\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n<animation step=\"1\" speed=\"1\" type=\"0\" playing=\"false\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n<symbolic val=\"true\" />\n\n</element>\n\n<expression label=\"indice\" exp=\"parami(1)\" />\n\n<element type=\"numeric\" label=\"indice\">\n\n<value val=\"1.0\"/>\n\n<symbolic val=\"true\" />\n\n<objColor r=\"0\" g=\"0\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n</element>\n\n<expression label=\"Q\" exp=\"L_{11}(indice)\" type=\"point\" />\n\n<element type=\"point\" label=\"Q\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"2.765753794656004\" y=\"2.0201400933233042\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"P\" exp=\"L_{10}(indice)\" type=\"point\" />\n\n<element type=\"point\" label=\"P\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"3.214194256994519\" y=\"0.9214609605939584\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"M\" exp=\"parami(2)\" type=\"point\" />\n\n<element type=\"point\" label=\"M\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"0.0\" y=\"1.0\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"N\" exp=\"parami(3)\" type=\"point\" />\n\n<element type=\"point\" label=\"N\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"2.0\" y=\"3.0\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<command name=\"Intersect\">\n\n<input a0=\"Line[M, N]\" a1=\"Line[P, Q]\"/>\n\n<output a0=\"L\"/>\n\n</command>\n\n<element type=\"point\" label=\"L\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelOffset x=\"-20\" y=\"-11\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"6.992296151111027\" y=\"10.08653534124675\" z=\"3.0942391901357222\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"O\" exp=\"L + N - M + Q - P\" type=\"point\" />\n\n<element type=\"point\" label=\"O\">\n\n<show object=\"true\" label=\"true\"/>\n\n<objColor r=\"68\" g=\"68\" b=\"68\" alpha=\"0.0\"/>\n\n<layer val=\"0\"/>\n\n<labelMode val=\"0\"/>\n\n<coords x=\"3.8113383464239465\" y=\"6.358457941491808\" z=\"1.0\"/>\n\n<pointSize val=\"4\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n<expression label=\"paramo\" exp=\"{indice + 1, L, O}\" />\n\n<element type=\"list\" label=\"paramo\">\n\n<objColor r=\"0\" g=\"100\" b=\"0\" alpha=\"0.10000000149011612\"/>\n\n<lineStyle thickness=\"5\" type=\"0\" typeHidden=\"1\"/>\n\n<pointSize val=\"5\"/>\n\n<pointStyle val=\"0\"/>\n\n</element>\n\n</construction>\n\n</macro>\n\n</geogebra>\n\nLibraryJavaScript:\n\nfunction ggbOnInit() {}\n\nPreferences:\n\n<?xml version=\"1.0\" encoding=\"utf-8\"?><geogebra format=\"5.0\" xsi:noNamespaceSchemaLocation=\"http://www.geogebra.org/ggb...; xmlns=\"\" xmlns:xsi=\"http://www.w3.org/2001/XMLS...; ><gui><window width=\"800\" height=\"600\" /><settings ignoreDocument=\"false\" showTitleBar=\"true\" /><labelingStyle val=\"0\"/><font size=\"12\"/><menuFont size=\"-1\"/><tooltipSettings language=\"\" timeout=\"0\"/></gui><euclidianView><size width=\"640\" height=\"480\"/><coordSystem xZero=\"215.0\" yZero=\"315.0\" scale=\"50.0\" yscale=\"50.0\"/><evSettings axes=\"true\" grid=\"true\" gridIsBold=\"false\" pointCapturing=\"3\" rightAngleStyle=\"1\" checkboxSize=\"26\" gridType=\"3\"/><bgColor r=\"255\" g=\"255\" b=\"255\"/><axesColor r=\"0\" g=\"0\" b=\"0\"/><gridColor r=\"192\" g=\"192\" b=\"192\"/><lineStyle axes=\"1\" grid=\"0\"/><axis id=\"0\" show=\"true\" label=\"\" unitLabel=\"\" tickStyle=\"1\" showNumbers=\"true\" axisCross=\"0.0\" positiveAxis=\"false\"/><axis id=\"1\" show=\"true\" label=\"\" unitLabel=\"\" tickStyle=\"1\" showNumbers=\"true\" axisCross=\"0.0\" positiveAxis=\"false\"/></euclidianView><kernel><continuous val=\"false\"/><decimals val=\"2\"/><angleUnit val=\"degree\"/><algebraStyle val=\"0\"/><coordStyle val=\"0\"/><localization digits=\"false\" labels=\"true\"/><angleFromInvTrig val=\"false\"/><casSettings timeout=\"5\" expRoots=\"true\"/></kernel><scripting blocked=\"false\"/></geogebra>[/co]",
null,
"",
null,
"1\n\nHello,\n\nI have made system that can add and remove vectors at will from a list, not necessarily by erasing them, just by clicking on them, ON/OFF type. This ON/OFF system allows easy removal of a tag applied by mistake, without having to erase the vector, that could be part of another construction. The file is very stable it seems. (see file \"delete duplicates e.ggb\" below).\n\nHowever, as soon as I add the calculation of the resultant of forces (for which iteration is required), the file becomes extremely unstable. Almost 50% of the time, the file doesn't open again after being saved. (see file \"delete duplicates with resultant.ggb\")\n\nIt seems as if there was an unwanted interference between the list of object names \"text\" (n), utilising iterationlist, and the iteration that calculates the force resultant, utilising iteration.\n\nIs GGB overwhelmed by too much use of iterations?\n\nThe only alternative is to use the spreadsheet, but this would be complicated, first because it involves fixing in advance the maximum number of forces, and second because it would be very difficult to organise 3 to 4 different catenaries in the same worksheet. So iteration is much more pliable. If it works...\n\nThanks,\n\nLaurent",
null,
"1\n\ntry element(points10,1) instead points10(1) in iteraton command\n\nsometimes the short version of element command does not work"
] | [
null,
"https://accounts.geogebra.org/api/avatar.php",
null,
"https://accounts.geogebra.org/api/avatar.php",
null,
"https://help.geogebra.org/public/avatars/default-avatar.svg",
null,
"https://accounts.geogebra.org/api/avatar.php",
null,
"https://accounts.geogebra.org/api/avatar.php",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.91892964,"math_prob":0.77650213,"size":2513,"snap":"2020-45-2020-50","text_gpt3_token_len":620,"char_repetition_ratio":0.116779596,"word_repetition_ratio":0.025125628,"special_character_ratio":0.25308397,"punctuation_ratio":0.16792452,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9967594,"pos_list":[0,1,2,3,4,5,6,7,8,9,10],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-12-02T10:34:21Z\",\"WARC-Record-ID\":\"<urn:uuid:f1d9f664-16ee-4d11-9a56-8b488dcd5bb4>\",\"Content-Length\":\"138438\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:7975bab3-1faa-4ef7-b5ca-7c11919d1447>\",\"WARC-Concurrent-To\":\"<urn:uuid:cd380ebd-012e-4db2-a359-1c61b9cca885>\",\"WARC-IP-Address\":\"140.78.116.223\",\"WARC-Target-URI\":\"https://help.geogebra.org/topic/iteration-list\",\"WARC-Payload-Digest\":\"sha1:6ZMHFPJ7BMXSQOATIB6SFIUQ2JAQTLQL\",\"WARC-Block-Digest\":\"sha1:OHZOSFMFDSNNDTNJ4IWXQCG7YMUVR2DL\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-50/CC-MAIN-2020-50_segments_1606141706569.64_warc_CC-MAIN-20201202083021-20201202113021-00680.warc.gz\"}"} |
https://ch.mathworks.com/help/stats/classificationlinear.edge.html | [
"# edge\n\nClass: ClassificationLinear\n\nClassification edge for linear classification models\n\n## Syntax\n\n``e = edge(Mdl,X,Y)``\n``e = edge(Mdl,Tbl,ResponseVarName)``\n``e = edge(Mdl,Tbl,Y)``\n``e = edge(___,Name,Value)``\n\n## Description\n\nexample\n\n````e = edge(Mdl,X,Y)` returns the classification edges for the binary, linear classification model `Mdl` using predictor data in `X` and corresponding class labels in `Y`. `e` contains a classification edge for each regularization strength in `Mdl`.```\n````e = edge(Mdl,Tbl,ResponseVarName)` returns the classification edges for the trained linear classifier `Mdl` using the predictor data in `Tbl` and the class labels in `Tbl.ResponseVarName`.```\n````e = edge(Mdl,Tbl,Y)` returns the classification edges for the classifier `Mdl` using the predictor data in table `Tbl` and the class labels in vector `Y`.```\n\nexample\n\n````e = edge(___,Name,Value)` specifies options using one or more name-value pair arguments in addition to any of the input argument combinations in previous syntaxes. For example, you can specify that columns in the predictor data correspond to observations or supply observation weights. NoteIf the predictor data `X` or the predictor variables in `Tbl` contain any missing values, the `edge` function can return NaN. For more details, see edge can return NaN for predictor data with missing values. ```\n\n## Input Arguments\n\nexpand all\n\nBinary, linear classification model, specified as a `ClassificationLinear` model object. You can create a `ClassificationLinear` model object using `fitclinear`.\n\nPredictor data, specified as an n-by-p full or sparse matrix. This orientation of `X` indicates that rows correspond to individual observations, and columns correspond to individual predictor variables.\n\nNote\n\nIf you orient your predictor matrix so that observations correspond to columns and specify `'ObservationsIn','columns'`, then you might experience a significant reduction in computation time.\n\nThe length of `Y` and the number of observations in `X` must be equal.\n\nData Types: `single` | `double`\n\nClass labels, specified as a categorical, character, or string array; logical or numeric vector; or cell array of character vectors.\n\n• The data type of `Y` must be the same as the data type of `Mdl.ClassNames`. (The software treats string arrays as cell arrays of character vectors.)\n\n• The distinct classes in `Y` must be a subset of `Mdl.ClassNames`.\n\n• If `Y` is a character array, then each element must correspond to one row of the array.\n\n• The length of `Y` must be equal to the number of observations in `X` or `Tbl`.\n\nData Types: `categorical` | `char` | `string` | `logical` | `single` | `double` | `cell`\n\nSample data used to train the model, specified as a table. Each row of `Tbl` corresponds to one observation, and each column corresponds to one predictor variable. Optionally, `Tbl` can contain additional columns for the response variable and observation weights. `Tbl` must contain all the predictors used to train `Mdl`. Multicolumn variables and cell arrays other than cell arrays of character vectors are not allowed.\n\nIf `Tbl` contains the response variable used to train `Mdl`, then you do not need to specify `ResponseVarName` or `Y`.\n\nIf you train `Mdl` using sample data contained in a table, then the input data for `edge` must also be in a table.\n\nResponse variable name, specified as the name of a variable in `Tbl`. If `Tbl` contains the response variable used to train `Mdl`, then you do not need to specify `ResponseVarName`.\n\nIf you specify `ResponseVarName`, then you must specify it as a character vector or string scalar. For example, if the response variable is stored as `Tbl.Y`, then specify `ResponseVarName` as `'Y'`. Otherwise, the software treats all columns of `Tbl`, including `Tbl.Y`, as predictors.\n\nThe response variable must be a categorical, character, or string array; a logical or numeric vector; or a cell array of character vectors. If the response variable is a character array, then each element must correspond to one row of the array.\n\nData Types: `char` | `string`\n\n### Name-Value Arguments\n\nSpecify optional pairs of arguments as `Name1=Value1,...,NameN=ValueN`, where `Name` is the argument name and `Value` is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.\n\nBefore R2021a, use commas to separate each name and value, and enclose `Name` in quotes.\n\nPredictor data observation dimension, specified as `'rows'` or `'columns'`.\n\nNote\n\nIf you orient your predictor matrix so that observations correspond to columns and specify `'ObservationsIn','columns'`, then you might experience a significant reduction in computation time. You cannot specify `'ObservationsIn','columns'` for predictor data in a table.\n\nData Types: `char` | `string`\n\nObservation weights, specified as the comma-separated pair consisting of `'Weights'` and a numeric vector or the name of a variable in `Tbl`.\n\n• If you specify `Weights` as a numeric vector, then the size of `Weights` must be equal to the number of observations in `X` or `Tbl`.\n\n• If you specify `Weights` as the name of a variable in `Tbl`, then the name must be a character vector or string scalar. For example, if the weights are stored as `Tbl.W`, then specify `Weights` as `'W'`. Otherwise, the software treats all columns of `Tbl`, including `Tbl.W`, as predictors.\n\nIf you supply weights, then for each regularization strength, `edge` computes the weighted classification edge and normalizes weights to sum up to the value of the prior probability in the respective class.\n\nData Types: `double` | `single`\n\n## Output Arguments\n\nexpand all\n\nClassification edges, returned as a numeric scalar or row vector.\n\n`e` is the same size as `Mdl.Lambda`. `e(j)` is the classification edge of the linear classification model trained using the regularization strength `Mdl.Lambda(j)`.\n\n## Examples\n\nexpand all\n\n`load nlpdata`\n\n`X` is a sparse matrix of predictor data, and `Y` is a categorical vector of class labels. There are more than two classes in the data.\n\nThe models should identify whether the word counts in a web page are from the Statistics and Machine Learning Toolbox™ documentation. So, identify the labels that correspond to the Statistics and Machine Learning Toolbox™ documentation web pages.\n\n`Ystats = Y == 'stats';`\n\nTrain a binary, linear classification model that can identify whether the word counts in a documentation web page are from the Statistics and Machine Learning Toolbox™ documentation. Specify to holdout 30% of the observations. Optimize the objective function using SpaRSA.\n\n```rng(1); % For reproducibility CVMdl = fitclinear(X,Ystats,'Solver','sparsa','Holdout',0.30); CMdl = CVMdl.Trained{1};```\n\n`CVMdl` is a `ClassificationPartitionedLinear` model. It contains the property `Trained`, which is a 1-by-1 cell array holding a `ClassificationLinear` model that the software trained using the training set.\n\nExtract the training and test data from the partition definition.\n\n```trainIdx = training(CVMdl.Partition); testIdx = test(CVMdl.Partition);```\n\nEstimate the training- and test-sample edges.\n\n`eTrain = edge(CMdl,X(trainIdx,:),Ystats(trainIdx))`\n```eTrain = 15.6660 ```\n`eTest = edge(CMdl,X(testIdx,:),Ystats(testIdx))`\n```eTest = 15.4767 ```\n\nOne way to perform feature selection is to compare test-sample edges from multiple models. Based solely on this criterion, the classifier with the highest edge is the best classifier.\n\n`load nlpdata`\n\n`X` is a sparse matrix of predictor data, and `Y` is a categorical vector of class labels. There are more than two classes in the data.\n\nThe models should identify whether the word counts in a web page are from the Statistics and Machine Learning Toolbox™ documentation. So, identify the labels that correspond to the Statistics and Machine Learning Toolbox™ documentation web pages. For quicker execution time, orient the predictor data so that individual observations correspond to columns.\n\n```Ystats = Y == 'stats'; X = X'; rng(1); % For reproducibility```\n\nCreate a data partition which holds out 30% of the observations for testing.\n\n```Partition = cvpartition(Ystats,'Holdout',0.30); testIdx = test(Partition); % Test-set indices XTest = X(:,testIdx); YTest = Ystats(testIdx);```\n\n`Partition` is a `cvpartition` object that defines the data set partition.\n\nRandomly choose half of the predictor variables.\n\n```p = size(X,1); % Number of predictors idxPart = randsample(p,ceil(0.5*p));```\n\nTrain two binary, linear classification models: one that uses the all of the predictors and one that uses half of the predictors. Optimize the objective function using SpaRSA, and indicate that observations correspond to columns.\n\n```CVMdl = fitclinear(X,Ystats,'CVPartition',Partition,'Solver','sparsa',... 'ObservationsIn','columns'); PCVMdl = fitclinear(X(idxPart,:),Ystats,'CVPartition',Partition,'Solver','sparsa',... 'ObservationsIn','columns');```\n\n`CVMdl` and `PCVMdl` are `ClassificationPartitionedLinear` models.\n\nExtract the trained `ClassificationLinear` models from the cross-validated models.\n\n```CMdl = CVMdl.Trained{1}; PCMdl = PCVMdl.Trained{1};```\n\nEstimate the test sample edge for each classifier.\n\n`fullEdge = edge(CMdl,XTest,YTest,'ObservationsIn','columns')`\n```fullEdge = 15.4767 ```\n`partEdge = edge(PCMdl,XTest(idxPart,:),YTest,'ObservationsIn','columns')`\n```partEdge = 13.4458 ```\n\nBased on the test-sample edges, the classifier that uses all of the predictors is the better model.\n\nTo determine a good lasso-penalty strength for a linear classification model that uses a logistic regression learner, compare test-sample edges.\n\nLoad the NLP data set. Preprocess the data as in Feature Selection Using Test-Sample Edges.\n\n```load nlpdata Ystats = Y == 'stats'; X = X'; Partition = cvpartition(Ystats,'Holdout',0.30); testIdx = test(Partition); XTest = X(:,testIdx); YTest = Ystats(testIdx);```\n\nCreate a set of 11 logarithmically-spaced regularization strengths from $1{0}^{-8}$ through $1{0}^{1}$.\n\n`Lambda = logspace(-8,1,11);`\n\nTrain binary, linear classification models that use each of the regularization strengths. Optimize the objective function using SpaRSA. Lower the tolerance on the gradient of the objective function to `1e-8`.\n\n```rng(10); % For reproducibility CVMdl = fitclinear(X,Ystats,'ObservationsIn','columns',... 'CVPartition',Partition,'Learner','logistic','Solver','sparsa',... 'Regularization','lasso','Lambda',Lambda,'GradientTolerance',1e-8)```\n```CVMdl = ClassificationPartitionedLinear CrossValidatedModel: 'Linear' ResponseName: 'Y' NumObservations: 31572 KFold: 1 Partition: [1x1 cvpartition] ClassNames: [0 1] ScoreTransform: 'none' Properties, Methods ```\n\nExtract the trained linear classification model.\n\n`Mdl = CVMdl.Trained{1}`\n```Mdl = ClassificationLinear ResponseName: 'Y' ClassNames: [0 1] ScoreTransform: 'logit' Beta: [34023x11 double] Bias: [-11.2409 -11.2409 -11.2409 -11.2409 -11.2409 ... ] Lambda: [1.0000e-08 7.9433e-08 6.3096e-07 5.0119e-06 ... ] Learner: 'logistic' Properties, Methods ```\n\n`Mdl` is a `ClassificationLinear` model object. Because `Lambda` is a sequence of regularization strengths, you can think of `Mdl` as 11 models, one for each regularization strength in `Lambda`.\n\nEstimate the test-sample edges.\n\n`e = edge(Mdl,X(:,testIdx),Ystats(testIdx),'ObservationsIn','columns')`\n```e = 1×11 0.9986 0.9986 0.9986 0.9986 0.9986 0.9932 0.9765 0.9115 0.8332 0.8128 0.8128 ```\n\nBecause there are 11 regularization strengths, `e` is a 1-by-11 vector of edges.\n\nPlot the test-sample edges for each regularization strength. Identify the regularization strength that maximizes the edges over the grid.\n\n```figure; plot(log10(Lambda),log10(e),'-o') [~, maxEIdx] = max(e); maxLambda = Lambda(maxEIdx); hold on plot(log10(maxLambda),log10(e(maxEIdx)),'ro'); ylabel('log_{10} test-sample edge') xlabel('log_{10} Lambda') legend('Edge','Max edge') hold off```",
null,
"Several values of `Lambda` yield similarly high edges. Higher values of lambda lead to predictor variable sparsity, which is a good quality of a classifier.\n\nChoose the regularization strength that occurs just before the edge starts decreasing.\n\n`LambdaFinal = Lambda(5);`\n\nTrain a linear classification model using the entire data set and specify the regularization strength yielding the maximal edge.\n\n```MdlFinal = fitclinear(X,Ystats,'ObservationsIn','columns',... 'Learner','logistic','Solver','sparsa','Regularization','lasso',... 'Lambda',LambdaFinal);```\n\nTo estimate labels for new observations, pass `MdlFinal` and the new data to `predict`.\n\nexpand all\n\n## Algorithms\n\nBy default, observation weights are prior class probabilities. If you supply weights using `Weights`, then the software normalizes them to sum to the prior probabilities in the respective classes. The software uses the normalized weights to estimate the weighted edge.\n\n## Version History\n\nIntroduced in R2016a\n\nexpand all\n\nBehavior changed in R2022a\n\nBehavior changed in R2022a"
] | [
null,
"https://ch.mathworks.com/help/examples/stats/win64/FindGoodLassoPenaltyUsingEdgeExample_01.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6709842,"math_prob":0.94339705,"size":12700,"snap":"2022-05-2022-21","text_gpt3_token_len":2978,"char_repetition_ratio":0.15406427,"word_repetition_ratio":0.13656633,"special_character_ratio":0.22275591,"punctuation_ratio":0.16816817,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99381256,"pos_list":[0,1,2],"im_url_duplicate_count":[null,3,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-05-19T04:46:01Z\",\"WARC-Record-ID\":\"<urn:uuid:b0a7e30a-f788-4c4e-9f51-ec43a269043e>\",\"Content-Length\":\"137810\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:672dfc96-a89c-4343-b062-5693e0ece43a>\",\"WARC-Concurrent-To\":\"<urn:uuid:59d6c546-6239-4afb-b26b-21ee0a4ac66e>\",\"WARC-IP-Address\":\"104.69.217.80\",\"WARC-Target-URI\":\"https://ch.mathworks.com/help/stats/classificationlinear.edge.html\",\"WARC-Payload-Digest\":\"sha1:L3HOV5XPUPUJLQVTUL3KP2JXWZZIHA7C\",\"WARC-Block-Digest\":\"sha1:BUDWPVQI7PRTWMUBYNXG7YWTYQHRHPVP\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-21/CC-MAIN-2022-21_segments_1652662525507.54_warc_CC-MAIN-20220519042059-20220519072059-00572.warc.gz\"}"} |
http://mail.calculus.info/algebra/logs/log2/log2.html | [
"#",
null,
"A REVIEW OF LOGARITHMS",
null,
"## Equivalence\n\nBefore you choose a topic from the list, let's review what you know about the word \"equivalent.\" You will come across this word in all your math courses. According to Webster, the word \"equivalent\" means to have equal value, equal amount, equal measure, equal area, equal length, etc. You get the picture.\nFor example, 1 yard is equivalent to 3 feet because both represent the same measure. You will see the notation 1 yard = 3 feet. Obviously, the left side of the = sign is not identical to the right side. The numbers and the words are different. However, the left side is equivalent to the right side because both sides denote the same length. In this case, the = sign is used to denote equivalence.\nSuppose you wish to purchase an item for",
null,
", you could pay for it with a dollar bill and 2 dimes, you could pay for it with 12 dimes, you could pay it for 4 quarters and 4 nickels, etc. If you put each method of payment in a separate pile, you will note that they do not look the same. They are in fact not identical. However, they are equivalent because all the methods of payment total",
null,
".\n\nThe number 1 has many equivalent faces:",
null,
"to name a few. The number 0 has many equivalent faces:",
null,
"to name a few.\n\n## Exponential Shortcuts\n\nExponents represent shortcuts in multiplication.\n\nExample 1: The expression",
null,
"can be written",
null,
".\n\nExample 2: The expression",
null,
"means",
null,
".\n\nExample 3: The expression",
null,
"can be written",
null,
".\n\nExample 4: The expression (-7)(-7)(-7)(-7) can be written",
null,
".\n\nYou would much rather write the expression",
null,
"than write out 8 one thousand times. You can also use exponents with variables.\n\nExample 5: The expression (a+b)(a+b)(a+b)(a+b)(a+b) is more conveniently written as",
null,
".\n\nIf you want to review the rules for exponents, click on Exponential Rules.",
null,
"[Exponential Rules] [Logarithms]\n\n[Algebra] [Trigonometry ] [Complex Variables]",
null,
"S.O.S MATHematics home page\n\nDo you need more help? Please post your question on our S.O.S. Mathematics CyberBoard.",
null,
"Author: Nancy Marcus"
] | [
null,
"http://mail.calculus.info/logos001.gif",
null,
"http://mail.calculus.info/gif/bar.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img01.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img01.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img1.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img2.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img3.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img4.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img5.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img6.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img7.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img8.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img9.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img10.gif",
null,
"http://mail.calculus.info/algebra/logs/log2/img11.gif",
null,
"http://mail.calculus.info/gif/bar.gif",
null,
"http://mail.calculus.info/gif/lighthouse.gif",
null,
"http://mail.calculus.info/gif/sailbar.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9294234,"math_prob":0.9635634,"size":1856,"snap":"2022-27-2022-33","text_gpt3_token_len":440,"char_repetition_ratio":0.12473002,"word_repetition_ratio":0.055384614,"special_character_ratio":0.23706897,"punctuation_ratio":0.14395887,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9847848,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36],"im_url_duplicate_count":[null,null,null,null,null,2,null,2,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-06-26T03:12:27Z\",\"WARC-Record-ID\":\"<urn:uuid:b7fa8e1c-2e07-4916-8e25-f291d5a6c2e6>\",\"Content-Length\":\"7198\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:31242ad3-5392-48c9-b693-2cb300e86d41>\",\"WARC-Concurrent-To\":\"<urn:uuid:4977e31f-ddf3-40d5-ab3d-b41e4e13b57b>\",\"WARC-IP-Address\":\"69.13.193.154\",\"WARC-Target-URI\":\"http://mail.calculus.info/algebra/logs/log2/log2.html\",\"WARC-Payload-Digest\":\"sha1:RYVYF7TQP3VGTJDSX55NWBOAIMTEEWOG\",\"WARC-Block-Digest\":\"sha1:EQXRJW5WHVGNP6RWHR364N2JMAGSYSTY\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-27/CC-MAIN-2022-27_segments_1656103036363.5_warc_CC-MAIN-20220626010644-20220626040644-00640.warc.gz\"}"} |
https://answers.everydaycalculation.com/simplify-fraction/2785-2105 | [
"Solutions by everydaycalculation.com\n\n## Reduce 2785/2105 to lowest terms\n\nThe simplest form of 2785/2105 is 557/421.\n\n#### Steps to simplifying fractions\n\n1. Find the GCD (or HCF) of numerator and denominator\nGCD of 2785 and 2105 is 5\n2. Divide both the numerator and denominator by the GCD\n2785 ÷ 5/2105 ÷ 5\n3. Reduced fraction: 557/421\nTherefore, 2785/2105 simplified to lowest terms is 557/421.\n\nMathStep (Works offline)",
null,
"Download our mobile app and learn to work with fractions in your own time:"
] | [
null,
"https://answers.everydaycalculation.com/mathstep-app-icon.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6653703,"math_prob":0.7389663,"size":373,"snap":"2021-31-2021-39","text_gpt3_token_len":123,"char_repetition_ratio":0.1598916,"word_repetition_ratio":0.0,"special_character_ratio":0.44772118,"punctuation_ratio":0.092307694,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9535244,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-08-03T10:50:51Z\",\"WARC-Record-ID\":\"<urn:uuid:3ef6020a-f22f-4bf4-8428-1204d8f8a1d9>\",\"Content-Length\":\"6509\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:78d09ab0-7929-4c8c-9056-ce1476d49c2d>\",\"WARC-Concurrent-To\":\"<urn:uuid:e5c223a2-a241-4ee5-b3f5-db9ad0d5daa3>\",\"WARC-IP-Address\":\"96.126.107.130\",\"WARC-Target-URI\":\"https://answers.everydaycalculation.com/simplify-fraction/2785-2105\",\"WARC-Payload-Digest\":\"sha1:KUOJRAG2VIZK5H3353MLG6NKSZDFXV2K\",\"WARC-Block-Digest\":\"sha1:IMR7AH2FVW2WZINGXHRIN6L7VMHT5BCN\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-31/CC-MAIN-2021-31_segments_1627046154457.66_warc_CC-MAIN-20210803092648-20210803122648-00425.warc.gz\"}"} |
https://www.hpmuseum.org/forum/thread-9793-post-87180.html | [
"Numericintegration\n12-27-2017, 11:43 PM (This post was last modified: 12-28-2017 05:55 PM by Arno K.)\nPost: #1\n Arno K",
null,
"Senior Member Posts: 432 Joined: Mar 2015\nNumericintegration\nThis program uses an hybrid of CAS and Home-program to compute the integral of an via input entered function, the borders and intervals to compute diverse numeric integrals. It can easily be extended to other formulas, the included ones are those I sometimes need to check hand-calculations made by my pupils.\nArno",
null,
"NumericIntegr.hpprgm (Size: 5.85 KB / Downloads: 11)\nEdit: Update attachment, now provides exact value, too\n12-28-2017, 03:46 PM\nPost: #2",
null,
"Namir",
null,
"Senior Member Posts: 690 Joined: Dec 2013\nRE: Numericintegration\nCan you please post the listing?\n\nThanks!\n\nNamir\n12-28-2017, 04:20 PM (This post was last modified: 12-28-2017 05:47 PM by Arno K.)\nPost: #3\n Arno K",
null,
"Senior Member Posts: 432 Joined: Mar 2015\nRE: Numericintegration\nIts a little bit long, but here it is:\nCode:\n #cas integr(g,a,b):= BEGIN logal h,x; g:=expr(g); IF type(g)==DOM_SYMBOLIC THEN g:=unapply(g,x); END; h:=int(g(x),x,a,b); RETURN (h); END; #end #cas simpsonint(g,a,b,n):= BEGIN local l,l1; g:=expr(g); IF even(n) THEN IF (type(g)==DOM_SYMBOLIC OR type(g)== DOM_FUNC) THEN l:=MAKELIST(X,X,a,b,(b-a)/n); IF type(g)==DOM_SYMBOLIC THEN g:=unapply(g,x); END; l:=apply(g,l); l1:=MAKELIST(even(X)+1,X,1,n+1); return (2*DOT(l,l1)-g(a)-g(b))*(b-a)/(3*n); ELSE return (\"f must be symbolic or function!\"); END; ELSE return \"n must be even!\"; END; END; #end #cas trapezregel(g,a,b,n):= BEGIN local l; g:=expr(g); IF (type(g)==DOM_SYMBOLIC OR type(g)== DOM_FUNC) THEN l:=MAKELIST(X,X,a,b,(b-a)/n); IF type(g)==DOM_SYMBOLIC THEN g:=unapply(g,x); END; l:=apply(g,l); return (2*ΣLIST(l)-g(a)-g(b))*(b-a)/(2*n); ELSE return (\"f must be symbolic or function!\"); END; END; #end #cas rightsum(g,a,b,n):= BEGIN local l; g:=expr(g); IF (type(g)==DOM_SYMBOLIC OR type(g)== DOM_FUNC) THEN l:=MAKELIST(X,X,a,b,(b-a)/n); IF type(g)==DOM_SYMBOLIC THEN g:=unapply(g,x); END; l:=apply(g,l); return (ΣLIST(l)-g(a))*(b-a)/n; ELSE return (\"f must be symbolic or function!\"); END; END; #end #cas leftsum(g,a,b,n):= BEGIN local l; g:=expr(g); IF (type(g)==DOM_SYMBOLIC OR type(g)== DOM_FUNC) THEN l:=MAKELIST(X,X,a,b,(b-a)/n); IF type(g)==DOM_SYMBOLIC THEN g:=unapply(g,x); END; l:=apply(g,l); return (ΣLIST(l)-g(b))*(b-a)/n; ELSE return (\"f must be symbolic or function!\"); END; END; #end EXPORT NumericIntegr() BEGIN local a,N,f,b; N:=12; a:=1;b:=3; f:='X^2'; if input( {{f,,{20,70,0}}, {a,,{20,30,1}}, {b,,{20,30,2}}, {N,,{20,30,3}}}, \"Enter Data\", {\"f(X)=\", \"a= \", \"b= \",\"N= \" }, { \"Enter the function, upper case X!\", \"Enter the starting point\", \"Enter the endpoint\", \"Enter the amount of intervals\" }, {f,a,b,N} ) then f:=lower(string(f)); PRINT(); PRINT(\"Simpsonsum: \"+simpsonint(f,a,b,N)); PRINT(\"Trapezoidsum: \"+trapezregel(f,a,b,N)); PRINT(\"Rectangleleft: \"+leftsum(f,a,b,N)); PRINT(\"Rectangleright: \"+rightsum(f,a,b,N)); PRINT(\"Integral:\"+integr(f,a,b)); return; end; END;\nArno\nEdit: Got that thing with the exact integral implemented, I thought it to be nice to see it for comparing.\n12-28-2017, 06:22 PM\nPost: #4",
null,
"Namir",
null,
"Senior Member Posts: 690 Joined: Dec 2013\nRE: Numericintegration\nThank you!\n\n:-)\n\nNamir\n « Next Oldest | Next Newest »\n\nUser(s) browsing this thread: 1 Guest(s)"
] | [
null,
"https://www.hpmuseum.org/forum/images/buddy_offline.gif",
null,
"https://www.hpmuseum.org/forum/images/attachtypes/unknown.gif",
null,
"https://www.hpmuseum.org/forum/uploads/avatars/avatar_88.jpg",
null,
"https://www.hpmuseum.org/forum/images/buddy_offline.gif",
null,
"https://www.hpmuseum.org/forum/images/buddy_offline.gif",
null,
"https://www.hpmuseum.org/forum/uploads/avatars/avatar_88.jpg",
null,
"https://www.hpmuseum.org/forum/images/buddy_offline.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8177533,"math_prob":0.9802604,"size":1092,"snap":"2020-10-2020-16","text_gpt3_token_len":325,"char_repetition_ratio":0.13878676,"word_repetition_ratio":0.043956045,"special_character_ratio":0.32783884,"punctuation_ratio":0.18376069,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9984413,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-02-27T04:53:50Z\",\"WARC-Record-ID\":\"<urn:uuid:a499aee5-672a-4da8-b56a-17dafad9991f>\",\"Content-Length\":\"28497\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:c41f6b92-e301-4d7b-998b-548245ca6934>\",\"WARC-Concurrent-To\":\"<urn:uuid:6e6ff12d-7ed8-4b27-97bb-9f1a1d39884c>\",\"WARC-IP-Address\":\"209.197.117.170\",\"WARC-Target-URI\":\"https://www.hpmuseum.org/forum/thread-9793-post-87180.html\",\"WARC-Payload-Digest\":\"sha1:NV44UBACNS3QV5IBPQH6P3PO4CHNIYVE\",\"WARC-Block-Digest\":\"sha1:DWF7FVSXADGLLFCYUA2V67Q72GH27HEZ\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-10/CC-MAIN-2020-10_segments_1581875146647.82_warc_CC-MAIN-20200227033058-20200227063058-00100.warc.gz\"}"} |
https://grams-to-kilograms.appspot.com/754-grams-to-kilograms.html | [
"Grams To Kilograms\n\n# 754 g to kg754 Grams to Kilograms\n\ng\n=\nkg\n\n## How to convert 754 grams to kilograms?\n\n 754 g * 0.001 kg = 0.754 kg 1 g\nA common question is How many gram in 754 kilogram? And the answer is 754000.0 g in 754 kg. Likewise the question how many kilogram in 754 gram has the answer of 0.754 kg in 754 g.\n\n## How much are 754 grams in kilograms?\n\n754 grams equal 0.754 kilograms (754g = 0.754kg). Converting 754 g to kg is easy. Simply use our calculator above, or apply the formula to change the length 754 g to kg.\n\n## Convert 754 g to common mass\n\nUnitMass\nMicrogram754000000.0 µg\nMilligram754000.0 mg\nGram754.0 g\nOunce26.59656731 oz\nPound1.6622854569 lbs\nKilogram0.754 kg\nStone0.1187346755 st\nUS ton0.0008311427 ton\nTonne0.000754 t\nImperial ton0.0007420917 Long tons\n\n## What is 754 grams in kg?\n\nTo convert 754 g to kg multiply the mass in grams by 0.001. The 754 g in kg formula is [kg] = 754 * 0.001. Thus, for 754 grams in kilogram we get 0.754 kg.\n\n## 754 Gram Conversion Table",
null,
"## Alternative spelling\n\n754 Grams to kg, 754 Grams in kg, 754 Grams to Kilograms, 754 Grams in Kilograms, 754 g to Kilograms, 754 g in Kilograms, 754 Gram to Kilograms, 754 Gram in Kilograms, 754 Grams to Kilogram, 754 Grams in Kilogram, 754 g to kg, 754 g in kg, 754 Gram to kg, 754 Gram in kg"
] | [
null,
"https://grams-to-kilograms.appspot.com/image/754.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7695743,"math_prob":0.9279219,"size":754,"snap":"2023-40-2023-50","text_gpt3_token_len":239,"char_repetition_ratio":0.25866666,"word_repetition_ratio":0.0,"special_character_ratio":0.3846154,"punctuation_ratio":0.15384616,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9776603,"pos_list":[0,1,2],"im_url_duplicate_count":[null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-12-09T08:04:45Z\",\"WARC-Record-ID\":\"<urn:uuid:f3b4f456-b086-4876-89c6-c87732a71710>\",\"Content-Length\":\"29085\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:79226e13-b99a-4c76-bdb8-7fa3ca05c28a>\",\"WARC-Concurrent-To\":\"<urn:uuid:cd9d7b9b-caa1-451d-8fc7-908c0afe7f7f>\",\"WARC-IP-Address\":\"172.253.63.153\",\"WARC-Target-URI\":\"https://grams-to-kilograms.appspot.com/754-grams-to-kilograms.html\",\"WARC-Payload-Digest\":\"sha1:5S6N67CJSAJBMYHUFDPEJESOP5CRGT27\",\"WARC-Block-Digest\":\"sha1:C5M5YF27VV4CNRQAVS7ZTIXSMUKJUIZ5\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-50/CC-MAIN-2023-50_segments_1700679100873.6_warc_CC-MAIN-20231209071722-20231209101722-00311.warc.gz\"}"} |
https://www.schittkowski.de/numericalsoftware_nlplsx.php | [
" Softwareentwicklung Schittkowski GmbH \n\nBack NLPLSX\n\nNonlinear Least Squares Optimization with Very Many Observations\n\nVersion 2.5 (2011)\n\n## Purpose\n\nNLPLSX solves constrained nonlinear least squares problems, i.e., nonlinear optimization problems, where the objective function is the sum of squares of function. In addition there may be any set of equality or inequality constraints. It is assumed that all individual problem functions are continuously differentiable, and that the number of squared functions or, alternatively, the number of experimental data is too large to apply an available Gauss-Newton-type algorithm.\n\n## Numerical Method\n\nThe problem is transformed into a general smooth nonlinear programming problem which is then solved by the sequential quadratic programming (SQP) code NLPQLP.\n\n## Program Organization\n\nNLPLSX is a double precision FORTRAN subroutine and parameters are passed through arguments.\n\n## Special Features\n\n• reverse communication\n• nonlinear constraints\n• bounds and linear constraints remain satisfied\n• FORTRAN source code (close to F77, conversion to C by f2c possible)\n\n## Applications\n\nNLPLSX is part of the interactive data fitting system EASY-FIT which contains now 1,300 test examples."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.80846596,"math_prob":0.949233,"size":2235,"snap":"2023-40-2023-50","text_gpt3_token_len":514,"char_repetition_ratio":0.11026446,"word_repetition_ratio":0.08580858,"special_character_ratio":0.20671141,"punctuation_ratio":0.17368421,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.97028875,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-12-10T04:28:22Z\",\"WARC-Record-ID\":\"<urn:uuid:328c1dbc-a91d-4e87-b417-13b0fcfa4a54>\",\"Content-Length\":\"14558\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:60022c64-54f9-47da-8ce0-74c6b6de9cfa>\",\"WARC-Concurrent-To\":\"<urn:uuid:f46098a2-669e-40b8-a178-d849343b4ef4>\",\"WARC-IP-Address\":\"172.67.149.43\",\"WARC-Target-URI\":\"https://www.schittkowski.de/numericalsoftware_nlplsx.php\",\"WARC-Payload-Digest\":\"sha1:PSDJCN3JA2ELJ5BZVKOVXD6WANMTXSI7\",\"WARC-Block-Digest\":\"sha1:TUDI3BXC5Q2G5ZDA43EY2MOLRKKTNSX4\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-50/CC-MAIN-2023-50_segments_1700679101195.85_warc_CC-MAIN-20231210025335-20231210055335-00811.warc.gz\"}"} |
https://cn.bridgat.com/buy/womens-blue-fashion-worn-tapered-zip-front-denim-jeans-with-leopard-lining.html | [
"妇女的蓝色时尚破旧的锥形的 Zip 前台粗斜纹棉布牛仔裤豹内衬\n\nSKU: 7G0I2J8W6Z9\n\\$17.10\n\n QTY:\n\n• 美国\n• 阿富汗\n• 奥兰群岛\n• 阿尔巴尼亚\n• 阿尔及利亚\n• 美属萨摩亚\n• 安道尔\n• 安哥拉\n• 安圭拉\n• 南极洲\n• 安提瓜和巴布达\n• 阿根廷\n• 亚美尼亚\n• 阿鲁巴\n• 亚洲太平洋\n• 澳大利亚\n• 奥地利\n• 阿塞拜疆\n• 亚速尔群岛 (葡萄牙)\n• 巴哈马\n• 巴林\n• 孟加拉国\n• 巴巴多斯\n• 白俄罗斯\n• 比利时\n• 伯利兹\n• 贝宁\n• 百慕大\n• 不丹\n• 玻利维亚\n• 博内尔\n• 波斯尼亚和黑塞哥维那\n• 博茨瓦纳\n• 布维岛\n• 巴西\n• 英属印度洋领地\n• 英属维尔京群岛\n• 文莱\n• Buesingen (德国)\n• 保加利亚\n• 布吉纳法索\n• 布隆迪\n• 柬埔寨\n• 喀麦隆\n• Campione/湖 Lugano (意大利)\n• 加拿大\n• 加那利群岛 (西班牙)\n• 佛得角\n• 开曼群岛\n• 中非共和国\n• 休达 (西班牙)\n• 乍得\n• 智利\n• 中国\n• 圣诞岛\n• 科科斯 (基林) 群岛\n• 哥伦比亚\n• 科摩罗\n• 刚果 (布)\n• 刚果 (金)\n• 库克群岛\n• 哥斯达黎加\n• 科特迪瓦\n• 克罗地亚\n• 古巴\n• 库拉索岛 (荷属安地列斯群岛)\n• 塞浦路斯\n• 捷克共和国\n• 丹麦\n• 吉布提\n• 多米尼克\n• 多米尼加共和国\n• 东蒂汶\n• 厄瓜多尔\n• 埃及\n• 萨尔瓦多\n• 赤道几内亚\n• 厄立特里亚\n• 爱沙尼亚\n• 埃塞俄比亚\n• 福克兰群岛 (马尔维纳斯群岛)\n• 法罗群岛\n• 斐济\n• 芬兰\n• 法国\n• 法国大都会\n• 法属圭亚那\n• 法属波利尼西亚\n• 法国南部领地\n• 加蓬\n• 冈比亚\n• 加沙 (西岸)\n• 格鲁吉亚\n• 德国\n• 加纳\n• 直布罗陀\n• 大开曼岛\n• 大茅草岛\n• 大多巴哥岛\n• 希腊\n• 格陵兰岛\n• 格林纳达\n• 瓜德罗普岛\n• 关岛\n• 危地马拉\n• 根西岛\n• 几内亚\n• 几内亚比绍\n• 圭亚那\n• 海地\n• 听到岛和麦克唐纳群岛\n• 海利 (德国)\n• 洪都拉斯\n• 香港\n• 匈牙利\n• 冰岛\n• 印度\n• 印度尼西亚\n• 伊朗\n• 伊拉克\n• 爱尔兰\n• 马恩岛\n• 以色列\n• 意大利\n• 牙买加\n• 日本\n• 泽西岛\n• 约旦\n• 约斯特范堤岛\n• 哈萨克斯坦\n• 肯尼亚\n• 基里巴斯\n• 朝鲜\n• 韩国\n• 科索沃\n• 科斯雷 (密克罗尼西亚)\n• 科威特\n• 吉尔吉斯斯坦\n• 老挝\n• 拉托维亚\n• 黎巴嫩\n• 莱索托\n• 利比里亚\n• 利比亚\n• 列支敦士登\n• 立陶宛\n• 利维尼奥 (意大利)\n• 卢森堡\n• 澳门\n• 马其顿\n• 马达加斯加\n• 马德拉 (葡萄牙)\n• 马拉维\n• 马来西亚\n• 马尔代夫\n• 马里\n• 马耳他\n• 马绍尔群岛\n• 马提尼克岛\n• 毛里塔尼亚\n• 毛里求斯\n• 马约特岛\n• 梅利利亚 (西班牙)\n• 墨西哥\n• 密克罗尼西亚\n• 摩尔多瓦\n• 摩纳哥\n• 蒙古\n• 黑山\n• 蒙特塞拉特岛\n• 摩洛哥\n• 阿陀斯山 (希腊)\n• 莫桑比克\n• 缅甸\n• 纳米比亚\n• 瑙鲁\n• 尼泊尔\n• 荷兰\n• 荷属安地列斯群岛\n• 尼维斯\n• 新喀里多尼亚\n• 新西兰\n• 尼加拉瓜\n• 尼日尔\n• 尼日利亚\n• 纽埃\n• 诺福克岛\n• 诺曼岛\n• 北马里亚纳群岛\n• 挪威\n• 阿曼\n• 巴基斯坦\n• 帕劳\n• 巴勒斯坦权力机构\n• 巴拿马\n• 巴布亚新几内亚\n• 巴拉圭\n• 秘鲁\n• 菲律宾\n• 皮特凯恩\n• 波兰\n• 波纳佩 (密克罗尼西亚)\n• 葡萄牙\n• 波多黎各\n• 卡塔尔\n• 团聚\n• 罗马尼亚\n• 罗塔 (北马里亚纳群岛)\n• 俄罗斯\n• 卢旺达\n• 萨巴 (荷属安地列斯群岛)\n• 塞班岛 (北马里亚纳群岛)\n• 萨摩亚\n• 圣马利诺\n• 圣多美和普林西比\n• 沙特阿拉伯\n• 塞内加尔\n• 塞尔维亚\n• 塞舌尔\n• 塞拉利昂\n• 新加坡\n• 斯洛伐克\n• 斯洛文尼亚\n• 索罗门群岛\n• 索马里\n• 南非\n• 西班牙\n• 斯里兰卡\n• 圣巴泰勒米 (瓜德罗普岛)\n• 圣克罗伊 (美属维尔京群岛)\n• 圣尤斯特歇斯 (荷属安地列斯群岛)\n• 圣赫勒拿\n• 圣 · 约翰 (美属维尔京群岛)\n• 圣基茨和尼维斯\n• 圣卢西亚\n• 圣马丁岛\n• 圣马丁 (瓜德罗普岛)\n• 圣 Pierre 和密克隆群岛\n• 圣 Thomas (美属维尔京群岛)\n• 圣 Vincent 和格林纳丁斯\n• 苏丹\n• 苏里南\n• 斯瓦尔巴特和扬马延岛\n• 斯威士兰\n• 瑞典\n• 瑞士\n• 叙利亚\n• 大溪地岛 (法属)\n• 台湾\n• 塔吉克斯坦\n• 坦桑尼亚\n• 泰国\n• 蒂妮 (北马里亚纳群岛)\n• 多哥\n• 托克劳\n• 汤加\n• 托尔托拉 (英属维尔京群岛)\n• 特立尼达和多巴哥\n• 特鲁克 (密克罗尼西亚)\n• 突尼斯\n• 土耳其\n• 土库曼斯坦\n• 特克斯和凯科斯群岛\n• 图瓦卢\n• 美属维尔京群岛\n• 乌干达\n• 乌克兰\n• 联盟岛屿 (圣 Vincent)\n• 阿拉伯联合酋长国\n• 英国\n• 乌拉圭\n• 乌兹别克斯坦\n• 瓦努阿图\n• 梵蒂冈城\n• 委内瑞拉\n• 越南\n• 维尔京戈尔达 (英属维尔京群岛)\n• 瓦利斯群岛和富图纳群岛\n• 西撒哈拉\n• Yap (密克罗尼西亚)\n• 也门\n• 赞比亚\n• 津巴布韦\n\nSize: 27, 28, 29, 30\n\n 尺寸/厘米 27/S 28/M 29/L 30/XL 腰 68 70 72 76 臀部 90 92 94 96 大腿 46 48 50 52 长度 91 93 95 96",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"Product Reviews (0)\n\nWrite a product review now!\n(There are no customer reviews yet.)",
null,
"刷新"
] | [
null,
"https://www.bridgat.com/img/lazyload.gif",
null,
"https://www.bridgat.com/img/lazyload.gif",
null,
"https://www.bridgat.com/img/lazyload.gif",
null,
"https://www.bridgat.com/img/lazyload.gif",
null,
"https://www.bridgat.com/img/lazyload.gif",
null,
"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",
null
] | {"ft_lang_label":"__label__zh","ft_lang_prob":0.95571077,"math_prob":0.4219296,"size":212,"snap":"2019-26-2019-30","text_gpt3_token_len":174,"char_repetition_ratio":0.028846154,"word_repetition_ratio":0.0,"special_character_ratio":0.759434,"punctuation_ratio":0.074074075,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98547834,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-06-26T00:21:21Z\",\"WARC-Record-ID\":\"<urn:uuid:84380ec1-2b42-45c4-b0f3-2d7971c7127b>\",\"Content-Length\":\"146449\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:6283aac5-52df-4a43-8d73-2f7279d2a3db>\",\"WARC-Concurrent-To\":\"<urn:uuid:5aa586cc-963f-436d-8ed3-37378e4df23c>\",\"WARC-IP-Address\":\"104.244.120.79\",\"WARC-Target-URI\":\"https://cn.bridgat.com/buy/womens-blue-fashion-worn-tapered-zip-front-denim-jeans-with-leopard-lining.html\",\"WARC-Payload-Digest\":\"sha1:KJAYELQVG6PS3WQXL2NCPUWALSW5LLIP\",\"WARC-Block-Digest\":\"sha1:Q7LPI4CLSMAD3A7YA2K77QGX3WZDJKCI\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-26/CC-MAIN-2019-26_segments_1560627999964.8_warc_CC-MAIN-20190625233231-20190626015231-00505.warc.gz\"}"} |
https://mc2.nmsu.edu/628-2/ | [
"# How many ways can you find x?\n\n*Submitted by Dr. Ted Stanford, NMSU Mathematician.\n\n•",
null,
"• Here are some solutions strategies. Each strategy has several possible variations. Try at least two methods! You should get the same answer, no matter which method you use, although the form of your answer might be different.\n\n1. Use a trig function to find one of the acute angles, then use another trig function on that angle to find x.\n2. Find the area of the large triangle using the two given sides. Find the hypotenuse of the large triangle using Pythagoras, then use the hypotenuse as the base and x as the height.\n3. Choose two new variables, y and z, to represent the two horizontal line segments. Use Pythagoras to set up several equations involving x, y, and z, and solve these.\n4. Same as 3, only use similar triangles to set up your equations instead of Pythagoras.\n5. Put the triangle in a coordinate plane, and use facts about the slopes of perpendicular lines, and the distance formula.\n6. Draw the figure carefully with a ruler and other geometry tools, then measure x."
] | [
null,
"https://mc2.nmsu.edu/files/2017/08/feb09-1024x649.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.90426576,"math_prob":0.9660488,"size":1033,"snap":"2020-10-2020-16","text_gpt3_token_len":227,"char_repetition_ratio":0.110787176,"word_repetition_ratio":0.011111111,"special_character_ratio":0.21297193,"punctuation_ratio":0.13658537,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99893993,"pos_list":[0,1,2],"im_url_duplicate_count":[null,3,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-04-07T19:58:02Z\",\"WARC-Record-ID\":\"<urn:uuid:fd2a7ba6-a169-4b28-8554-9bcec5a4870c>\",\"Content-Length\":\"35073\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:ae7b3418-2e7e-4721-bf76-3d015335948b>\",\"WARC-Concurrent-To\":\"<urn:uuid:92423e65-808b-4852-8e5a-51b3d55cdeec>\",\"WARC-IP-Address\":\"128.123.88.129\",\"WARC-Target-URI\":\"https://mc2.nmsu.edu/628-2/\",\"WARC-Payload-Digest\":\"sha1:QM43H7LQBNGYJYBYI76X6KSY4F4EBFK3\",\"WARC-Block-Digest\":\"sha1:B74HQQWY6Q2BURT55ZJ33JH6XXPFARJ3\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-16/CC-MAIN-2020-16_segments_1585371805747.72_warc_CC-MAIN-20200407183818-20200407214318-00194.warc.gz\"}"} |
http://www.optimization-online.org/DB_HTML/2021/10/8629.html | [
"-",
null,
"Exactness of Parrilo's conic approximations for copositive matrices and associated low order bounds for the stability number of a graph Monique Laurent(monique.laurent",
null,
"cwi.nl) Luis Felipe Vargas(luis.vargas",
null,
"cwi.nl) Abstract: De Klerk and Pasechnik (2002) introduced the bounds $\\vartheta^{(r)}(G)$ ($r\\in \\mathbb{N}$) for the stability number $\\alpha(G)$ of a graph $G$ and conjectured exactness at order $\\alpha(G)-1$: $\\vartheta^{(\\alpha(G)-1)}(G)=\\alpha(G)$. These bounds rely on the conic approximations $\\mathcal{K}_n^{(r)}$ by Parrilo (2000) for the copositive cone $\\text{COP}_n$. A difficulty in the convergence analysis of $\\vartheta^{(r)}$ is the bad behaviour of the cones $\\mathcal{K}_n^{(r)}$ under adding a zero row/column: when applied to a matrix not in $\\mathcal{K}^{(0)}_n$ this gives a matrix not in any ${\\mathcal{K}}^{(r)}_{n+1}$, thereby showing strict inclusion $\\bigcup_{r\\ge 0}{\\mathcal{K}}^{(r)}_n\\subset \\text{COP}_n$ for $n\\ge 6$. We investigate the graphs with $\\vartheta^{(r)}(G)=\\alpha(G)$ for $r=0,1$: we algorithmically reduce testing exactness of $\\vartheta^{(0)}$ to acritical graphs, we characterize critical graphs with $\\vartheta^{(0)}$ exact, and we exhibit graphs for which exactness of $\\vartheta^{(1)}$ is not preserved under adding an isolated node. This disproves a conjecture by Gvozdenovi\\'c and Laurent (2007) which, if true, would have implied the above conjecture by de Klerk and Pasechnik. Keywords: stable set problem \\and $\\alpha$-critical graph \\and sum-of-squares polynomial \\and copositive matrix \\and semidefinite programming \\and Shor relaxation Category 1: Linear, Cone and Semidefinite Programming (Semi-definite Programming ) Category 2: Combinatorial Optimization (Approximation Algorithms ) Citation: arXiv:2109.12876 Download: [PDF]Entry Submitted: 10/12/2021Entry Accepted: 10/12/2021Entry Last Modified: 10/12/2021Modify/Update this entry Visitors Authors More about us Links Subscribe, Unsubscribe Digest Archive Search, Browse the Repository Submit Update Policies Coordinator's Board Classification Scheme Credits Give us feedback Optimization Journals, Sites, Societies Optimization Online is supported by the Mathematical Optmization Society.",
null,
""
] | [
null,
"http://www.optimization-online.org/images2/new-oo1-dot.gif",
null,
"http://www.optimization-online.org/cgi-bin/foo.gif",
null,
"http://www.optimization-online.org/cgi-bin/foo.gif",
null,
"http://www.optimization-online.org/images2/mos_minilogo.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7111953,"math_prob":0.99240303,"size":2060,"snap":"2022-05-2022-21","text_gpt3_token_len":592,"char_repetition_ratio":0.11138132,"word_repetition_ratio":0.0,"special_character_ratio":0.26893204,"punctuation_ratio":0.08797654,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9989815,"pos_list":[0,1,2,3,4,5,6,7,8],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-01-24T10:28:13Z\",\"WARC-Record-ID\":\"<urn:uuid:85189b58-f6e8-48cb-a6bb-405de348a3a6>\",\"Content-Length\":\"7882\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:1d5276d2-cbfb-4f55-bdd4-70cff89c6f36>\",\"WARC-Concurrent-To\":\"<urn:uuid:f01fb26d-c935-44d1-acf9-e6312461071c>\",\"WARC-IP-Address\":\"128.104.153.111\",\"WARC-Target-URI\":\"http://www.optimization-online.org/DB_HTML/2021/10/8629.html\",\"WARC-Payload-Digest\":\"sha1:CA3OZPXT4JBHFH77X2GB4WI5CBVDLCWC\",\"WARC-Block-Digest\":\"sha1:WRKSE7WNF63XQI4PW3XHN7JKO22AOMXB\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-05/CC-MAIN-2022-05_segments_1642320304528.78_warc_CC-MAIN-20220124094120-20220124124120-00421.warc.gz\"}"} |
http://methods.sagepub.com/Reference/encyclopedia-of-survey-research-methods/n263.xml | [
"# Knowledge Gap\n\nEncyclopedia\nEdited by: Published: 2008\n\n• ## Subject Index\n\nThis entry focuses on the concept of the knowledge gap, which is a specific hypothesis within the area of diffusion of knowledge, and subsequent derivations. A number of models of social change are based on the notion that change is a cumulative process. In such models, small changes result in differential rates of change for the social system—slow system change at first, followed by increasingly faster rates of change during the middle of the change process, followed by slowing rates of societal change at the end. This process is reflected in the familiar \"S-curve\" which shows an accumulative sum over time. Two prominent models that follow the logic and assumptions of the cumulative process perspective include models of diffusion of technologies and diffusion of ...\n\n• All\n• A\n• B\n• C\n• D\n• E\n• F\n• G\n• H\n• I\n• J\n• K\n• L\n• M\n• N\n• O\n• P\n• Q\n• R\n• S\n• T\n• U\n• V\n• W\n• X\n• Y\n• Z\n\n## Methods Map",
null,
"Research Methods\n\nCopy and paste the following HTML into your website"
] | [
null,
"http://methods.sagepub.com/images/img-bg.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8562538,"math_prob":0.51913065,"size":1484,"snap":"2021-04-2021-17","text_gpt3_token_len":349,"char_repetition_ratio":0.12702702,"word_repetition_ratio":0.0,"special_character_ratio":0.21630728,"punctuation_ratio":0.063025214,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.96882004,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-01-24T22:20:06Z\",\"WARC-Record-ID\":\"<urn:uuid:109397a2-e98c-4c02-a153-a106b655f2ad>\",\"Content-Length\":\"273864\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:24b00f2d-30d0-4ded-9879-a7bab6334856>\",\"WARC-Concurrent-To\":\"<urn:uuid:02ff60fc-ecb2-4754-bd95-281987a0dd45>\",\"WARC-IP-Address\":\"128.121.3.195\",\"WARC-Target-URI\":\"http://methods.sagepub.com/Reference/encyclopedia-of-survey-research-methods/n263.xml\",\"WARC-Payload-Digest\":\"sha1:IRNBNWKS2M57KCXI5GGMQA4RQ3VNTYM7\",\"WARC-Block-Digest\":\"sha1:OYSSCWMV3PF36CFSQ65TNSWOMYU5LIE3\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-04/CC-MAIN-2021-04_segments_1610703557462.87_warc_CC-MAIN-20210124204052-20210124234052-00299.warc.gz\"}"} |
https://resistanceisuseful.com/blog/2016/01/04/driving-leds-why-the-resistor/ | [
"# Driving LEDs: Why the resistor?\n\nRecently I was asked by one of my customers about using resistors with LEDs. The question came down to “What is the purpose of the resistor?”\n\nFor many people starting out in electronics today, LEDs (Light Emitting Diodes) are a popular starting point. They are a fundamental circuit (or, more often, sub-circuit). LEDs have traditionally been used for indicators of all sorts (looking around my desk, there are 5 of them telling me things are turned on and one telling me if I have voicemail). But now, since the advent of white LEDs, they now serve as a very energy-efficient lighting source. So driving a LED is a good starting project, and learning why we need the resistor is a great way to learn some basic electronics concepts. So let me try to explain.\n\nFirst let’s start with the LED. A light emitting diode is, fundamentally, a diode. Diodes conduct electricity in one direction only. When current flows though a LED in the correct direction (from the anode to the cathode), two things happen: light is emitted of course, and there is a well defined drop in voltage across the LED.\n\nAll LEDs vary the amount of light they produce in direct relation to the current going through them: more current = brighter light. But with everything, there is a limit. (This same relationship applies to tungsten light bulbs, but if you take a light bulb made for the U.S. and take it over to Europe, it will burn much brighter, but only for a fraction of a second before burning out.) In LED datasheets this limit is referred to as forward current (IF), and a typical safe operating limit is 20mA. For lighting uses, we will normally want to run this much current through the LED. Note this is sometimes referred to as the test current (as the manufacturer’s tests use this current as a standard) and is almost always lower than the forward current in the Absolute Maximum Ratings section. For indicators, full brightness may be too bright and might want as little as 1-2mA through the LED.\n\n##### So what does this have to do with resistors?\n\nWell, everything, really. The resistor is what makes everything work right. Remember the LED has a defined voltage drop? Most likely your power source isn’t exactly equal to that drop (if it is, you might be able to get away without a resistor). Let’s say you have a 5V power supply and are driving a Cree bright white LED which has a voltage drop of 3.2V at 20mA. A simplification of Kirchoff’s Voltage Law (KVL) tells us that the total voltage drops (in this case the LED) have to equal the total voltage gains (the 5V power supply). Here we have a difference of 1.8V to account for. The wire offers minimal resistance of its own, essentially 0Ω. The most fundamental relationship in electronics, Ohm’s Law, says that the current through an element is equal to the voltage across it divided by its resistance (I = V/R). Here we have 1.8V/0Ω, or infinite current, which equals your LED going poof (and maybe a fire if you’re unlucky). This is where the resistor come in.\n\nWe have a 1.8V drop to deal with before the LED will work properly on a 5V supply. We also know we want to get the most brightness we can safely get from these little critters, so we’d like 20mA going through them. Using simple algebra, Ohm’s Law can be shuffled around to find any of the three values if we know the other two. In the case, we shuffle it so that R = V/I, since we know V (1.8V) and I (20mA). So R = 1.8V/20mA = 1.8V/0.02A = 90Ω. We would then round to the next highest standard value (or the next highest we have at hand). In this case, a 91Ω or 100Ω resistor would be a good choice."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9497034,"math_prob":0.95891035,"size":4486,"snap":"2022-05-2022-21","text_gpt3_token_len":1077,"char_repetition_ratio":0.115127176,"word_repetition_ratio":0.0,"special_character_ratio":0.2336157,"punctuation_ratio":0.105596624,"nsfw_num_words":1,"has_unicode_error":false,"math_prob_llama3":0.96232206,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-05-19T14:53:07Z\",\"WARC-Record-ID\":\"<urn:uuid:7bb20398-499d-47e1-8442-dc8f984835e4>\",\"Content-Length\":\"58823\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:db6571f5-6edd-4799-b2aa-93682a3324ad>\",\"WARC-Concurrent-To\":\"<urn:uuid:39b45099-2241-473c-bc6a-8be51270e1fd>\",\"WARC-IP-Address\":\"74.207.243.228\",\"WARC-Target-URI\":\"https://resistanceisuseful.com/blog/2016/01/04/driving-leds-why-the-resistor/\",\"WARC-Payload-Digest\":\"sha1:KVOYX624526U7C7YGSOIU3RVUOB6TDVO\",\"WARC-Block-Digest\":\"sha1:64JULSR2KFSIEK4EVBKWH7OCQO6HOMAZ\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-21/CC-MAIN-2022-21_segments_1652662529538.2_warc_CC-MAIN-20220519141152-20220519171152-00433.warc.gz\"}"} |
http://www.mrithescienceguy.com/2014/09/week-3-physics-vector-lab-and-velocity.html | [
"## Sunday, September 14, 2014\n\n### Week 3: Physics Vector Lab and Velocity\n\n This week we are: doing a vector lab, reviewing Velocity and introducing velocity time graphs I will: calculate both the displacement and distance to different points around the school I will: review how to do velocity calculations. I will: learn about velocity/time graphs. I can: differentiate between scalar and vector in a lab setting I can: calculate velocity using the basic formula I can: relate the motion of an object based on its velocity time graph\n\nMonday\n1. Vector Lab\n\nTuesday\n1. Review velocity HW\n2. Hand in Lab work and HW.\n\nWednesday\n1. Introduce Lesson 8, velocity/time graphs\n2. Class work demonstrating formula work\n3. Discussion on Formula work expectations.\n4. Review Lab and velocity HW\n\nThursday\n1. Formative Assessment on velocity\n2. Review & HW for velocity/time graphs\n\nFriday\n1. Lesson 9"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8831329,"math_prob":0.63070536,"size":1100,"snap":"2019-51-2020-05","text_gpt3_token_len":250,"char_repetition_ratio":0.14416058,"word_repetition_ratio":0.0,"special_character_ratio":0.21909091,"punctuation_ratio":0.125,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9891378,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-01-23T02:17:08Z\",\"WARC-Record-ID\":\"<urn:uuid:623bb2b2-5891-4245-a0ea-0ad2ffefe073>\",\"Content-Length\":\"137909\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:d2b82602-e14b-4452-b43b-c2ebc8f1d9fa>\",\"WARC-Concurrent-To\":\"<urn:uuid:2d375d56-3237-4d06-8ba0-1459546edf33>\",\"WARC-IP-Address\":\"172.217.15.115\",\"WARC-Target-URI\":\"http://www.mrithescienceguy.com/2014/09/week-3-physics-vector-lab-and-velocity.html\",\"WARC-Payload-Digest\":\"sha1:ZSCLLSH3V4ROR2D6FXS26AN7UOVWOTLV\",\"WARC-Block-Digest\":\"sha1:RZTKKOZCMTJXRJ43OCJ2S4R3B4E4ZQAE\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-05/CC-MAIN-2020-05_segments_1579250608062.57_warc_CC-MAIN-20200123011418-20200123040418-00317.warc.gz\"}"} |
https://codereview.stackexchange.com/questions/235536/compare-length-of-iterator-with-as-few-next-calls-as-possible-how-can-i-dedup | [
"# Compare length of iterator with as few next calls as possible. How can I deduplicate this code?\n\nI'm writing a few simple functions that compare the length of an iterator to an integer, returning as early as possible. Right now I have:\n\nclass ILengthComparator:\ndef __init__(self, iterator: Iterator):\nself.iterator = iterator\n\ndef has_more(self) -> bool:\ntry:\nnext(self.iterator)\nexcept StopIteration:\nreturn False\n\nreturn True\n\ndef __eq__(self, length: int) -> bool:\nif length < 0:\nreturn False\n\nif not self.has_more():\nreturn length == 0\n\nreturn self == length-1\n\ndef __gt__(self, length: int) -> bool:\nif length < 1:\nreturn False\n\nif not self.has_more():\nreturn True\n\nreturn self > length-1\n\ndef __lt__(self, length: int) -> bool:\nif length < 0:\nreturn True\n\nif not self.has_more():\nreturn False\n\nreturn self < length - 1\n\n\nClearly this class isn't finished (__neq__, __gte__, __lte__), and anything after the first comparison isn't guaranteed to work (as the iterator may be consumed), but I'm wondering: is it is possible to logically simplify this into a single function with an operator function as an argument (ie operator.eq, operator.lt), or at least just reduce the semi-duplicate parts (ie, every function has a comparison with length against a number, and a case for checking if the iterator is empty - each with a rather ad-hoc return value).\n\n(any suggestions don't need to be recursive or use the has_more method, those were just the first thing I reached for when trying to solve this problem)\n\nPastebin with the above some quick and dirty unit tests: https://pastebin.com/N65Q2qcJ\n\n• (Would you believe in total ordering? Jan 13 '20 at 1:00\n• @greybeard I could be wrong, but I don't think that would work, because these methods have the side effect of consuming the iterator. So if the implementation requires combining __eq__ and __lt__ to determine __gt__, by the time __lt__ was called, __eq__ would have already consumed the iterator. Jan 14 '20 at 1:06\n• (For handling consuming, see 409_conflict's answer.) Jan 14 '20 at 4:07\n• As I understand it, .tee() often isn't a good idea, because it has to store the results of each next() call for _re_iteration (which can consume a decent amount of memory depending on what the iterator is iterating over). Even if not for this specific use case, it still seems like a pretty awesome decorator! Jan 14 '20 at 4:50\n\nTo know the answer to your comparison to $$\\N\\$$, you need to attempt at least:\n\n• $$\\N\\$$ next calls if you test with $$\\\\lt\\$$ (succeeding will result to False) or $$\\\\ge\\$$ (succeeding will result to True);\n• $$\\N+1\\$$ next calls in all 4 other cases.\n\nObviously, if the iterator length is fewer than $$\\N\\$$ there will be less calls.\n\nSo, in order to simplify things, you could extract the first $$\\N+1\\$$ elements of the iterator and count them to compare this count to $$\\N\\$$:\n\n• extracting can be simplified with itertools.islice\n• counting can be done using either\n\n• enumerate and dumping the content into a 1-length collections.deque\n\nfrom itertools import islice\nfrom collections import deque\n\ndef compare_length(iterable, n, operation):\nchunck = islice(iterable, max(0, n+1))\ntry:\n(length, _) = deque(enumerate(chunk, 1), maxlen=1)\nexcept ValueError:\nlength = 0\nreturn operation(length, n)\n\n• sum\n\nfrom itertools import islice\n\ndef compare_length(iterable, n, operation):\nchunck = islice(iterable, max(0, n+1))\nlength = sum(1 for _ in chunck)\nreturn operation(length, n)\n\n\nThe former should be more efficient, the latter more readable. As suggested in the question, this function takes the operation to perform as its third argument and compares min(<iterable length>, n+1) to n. This is sufficient in most cases.\n\nIf you truly want to reduce the amount of next calls needed for $$\\\\lt\\$$ and $$\\\\ge\\$$, you can keep your class approach and factorize the min(<iterable length>, n) part into an helper method:\n\nfrom itertools import islice\n\nclass ILengthComparator:\ndef __init__(self, iterable):\nself._iterable = iterable\n\ndef _length_up_to(self, n):\nreturn sum(1 for _ in islice(self._iterable, max(0, n)))\n\ndef __eq__(self, n):\nreturn self._length_up_to(n+1) == n\n\ndef __ne__(self, n):\nreturn self._length_up_to(n+1) != n\n\ndef __lt__(self, n):\nreturn self._length_up_to(n) < n\n\ndef __le__(self, n):\nreturn self._length_up_to(n+1) <= n\n\ndef __gt__(self, n):\nreturn self._length_up_to(n+1) > n\n\ndef __ge__(self, n):\nreturn self._length_up_to(n) >= n\n\n\nLastly, if you want to avoid consuming the iterator while performing those tests, you can check itertools.tee."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.82891583,"math_prob":0.96787804,"size":1923,"snap":"2021-43-2021-49","text_gpt3_token_len":468,"char_repetition_ratio":0.13913497,"word_repetition_ratio":0.055737704,"special_character_ratio":0.26209047,"punctuation_ratio":0.14794521,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98690784,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-11-28T05:18:27Z\",\"WARC-Record-ID\":\"<urn:uuid:cb3b91bf-3e2e-47f7-9c4d-8d7fecb63915>\",\"Content-Length\":\"144753\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:a9e07faa-e293-468d-886b-a5f58cebf37f>\",\"WARC-Concurrent-To\":\"<urn:uuid:230cabaf-fc9e-456a-b1d0-57e2eee48a1f>\",\"WARC-IP-Address\":\"151.101.1.69\",\"WARC-Target-URI\":\"https://codereview.stackexchange.com/questions/235536/compare-length-of-iterator-with-as-few-next-calls-as-possible-how-can-i-dedup\",\"WARC-Payload-Digest\":\"sha1:N3N2EUNJZXOYAFHL2L5QNWNUH4NKSPM3\",\"WARC-Block-Digest\":\"sha1:6IQ2U2IVFSU5R3LFK366UMVH6PFCMV72\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-49/CC-MAIN-2021-49_segments_1637964358469.34_warc_CC-MAIN-20211128043743-20211128073743-00031.warc.gz\"}"} |
https://holooly.com/solutions-v20/the-propped-uniform-cantilever-in-fig-14-6-4a-is-of-plastic-moment-mp-determine-the-value-of-p-at-collapse-using-a-the-work-method-b-the-statical-method/ | [
"## Textbooks & Solution Manuals\n\nFind the Source, Textbook, Solution Manual that you are looking for in 1 click.\n\n## WriteWise AI Model by Holooly Genius\n\nYour Ultimate AI Essay Writer & Assistant.\n\n## Holooly Arabia\n\nFor Arabic Users, find a teacher/tutor in your City or country in the Middle East.\n\n## Holooly Help Desk\n\nNeed Help? We got you covered.\n\nProducts\n\n## Textbooks & Solution Manuals\n\nFind the Source, Textbook, Solution Manual that you are looking for in 1 click.\n\n## WriteWise AI Model by Holooly Genius\n\nYour Ultimate AI Essay Writer & Assistant.\n\n## Holooly Arabia\n\nFor Arabic Users, find a teacher/tutor in your City or country in the Middle East.\n\n## Holooly Help Desk\n\nNeed Help? We got you covered.\n\n## Q. 14.6.1\n\nThe propped uniform cantilever in Fig. 14.6-4(a) is of plastic moment $M_{P}$. Determine the value of P at collapse using (a) the work method (b) the statical method.",
null,
"## Verified Solution\n\n(a) The work method (or virtual work method)\n\nThere are three possible collapse mechanisms, as shown in Figs. 14.6-4(b), (c) and (d). We shall calculate the collapse load for each in turn.\n\nThe work equation is\n\n$\\qquad P\\left(\\phi L\\right)+2P(3\\phi L/2)=M_{p}\\phi +M_{p}(4\\phi )$\n\nTherefore P = 5Mp/4L\n\n$\\qquad P\\left(\\phi L\\right)+2P(\\phi L/2)=M_{p}\\phi +M_{p}(2\\phi )$\n\nTherefore P = 3Mp/2L\n\n$\\qquad 2P(\\phi L/2)=M_{p}\\phi +M_{p}(2\\phi )$\n\nTherefore P = 3Mp/L\n\nWe have now examined all the three possible mechanisms and found that the one in Fig. 14.6-4(b) gives the lowest collapse load. This means that as the magnitude of P is gradually increased from zero, the collapse mechanism in Fig. 14.6-4(b) will be the first to form, when P reaches $5M_{p}/4L$. The other two mechanisms cannot form unless this one is prevented from forming, for example by strengthening the cross sections at points where hinges would have formed. We therefore conclude that $P = 5M_{p}/4L$ is the correct collapse value. (See Comment (2) below on the upper bound theorem.)\n\n(b) The statical method\n\nFigs. 14.6-4(e), (f) and (g) show three bending moment diagrams. Each diagram has been so drawn that the moment ordinate is exactly equal to the plastic moment$M_{P}$ at two sections. In Figs, (e) and (f), α1 α2 b is the moment diagram due to the redundant moment $M_{P}$ at A, and α1c2d2b is the simple-span moment diagram due to the external loads P and 2P. In Fig. (g) the moment Mp at section C has been selected as the redundant; that is, the triangle a1a2c2bc1a1 is the redundant moment diagram (The reader should verify this. Hint: the moment Mp at C produces shear forces.), and a1a3c1d2b is the moment diagram for the loads P and 2P acting on the beam with a hinge at C. The collapse values of P can be calculated from the geometry of the three bending moment diagrams.\n\nThe three values for P obtained by the statical method agree with those obtained by the work method. As before, we conclude that the lowest value, namely P = 5Mp/4L, is the correct one.\n(1) In the statical method above, we need not have calculated the collapse value of P for all the three bending moment diagrams. A closer examination will immediately reveal that both Figs. 14.6-4(f) and (g) violate the yield condition. In Fig. 14.6-4(f), the moment ordinate d1d2 exceeds Mp, which means that the collapse mechanism in Fig. 14.6-4(c) cannot occur unless plastic hinge formation is prevented at D by strengthening the cross section there. Similarly, in Fig. 14.6-4(g), a2a3 exceeds Mp ; again, the mechanism in Fig. 14.6-4(d) cannot occur unless plastic hinge formation at A is deliberately prevented. The bending moment diagram in Fig. 14.6-4(e), on the other hand, satisfies the three conditions of mechanism (with plastic hinges at A and D), equilibrium (by the manner of its construction) and yield (since moment ordinates nowhere exceed M p). Therefore we can at once conclude from the uniqueness theorem that the corresponding collapse load is the correct one; there is in fact no need to consider any other mechanisms.\n\n$\\qquad \\begin{matrix} \\qquad & d_{1} d_{2}&=PL-a_{1} a_{2}/4 \\\\ Therefore & M_{p} &=PL-M_{p}/4 \\\\or & P &=5M_{p}/4L \\end{matrix}$\n\n$\\qquad \\begin{matrix} \\qquad & c_{1}c_{2} &= PL-a_{1} a_{2} /2 \\\\ & M_{p} &=PL-M_{p}/2 \\\\Therefore & P &=3M_{p}/2L \\end{matrix}$\n\n$\\qquad \\begin{matrix}\\\\ \\qquad & d_{1}d_{2}&=PL/2-c_{1}c_{2}/2 \\\\ & M_{p}&=PL/2-M_{p}/2 \\\\Therefore & P &=3M_{p}/L \\end{matrix}$\n\n(2) A fundamental theorem of plastic collapse is the upper bound theorem (sometimes called the kinematic theorem) which states that for a given structure subjected to a given loading, the magnitude of the loading which is found to correspond to any assumed collapse mechanism must be either greater than or equal to, but cannot be less than, the true collapse load. (The proof of the theorem will be given in Section 14.9.)\n\nTherefore, in an analysis we simply compute the collapse load for each possible mechanism and accept the lowest value as the correct one, as we did in the work method above. However, sometimes there is uncertainty about the number of possible mechanisms. A statical check is then necessary: the collapse bending moment diagram is drawn for the mechanism that gives the lowest collapse load; if the moment ordinate nowhere exceeds the plastic moment $M_{P}$ then the uniqueness theorem guarantees that this mechanism will give the true collapse load. If $M_{P}$ is exceeded somewhere, then the yield condition is not satisfied, and the search for a correct collapse mechanism must continue.\n\n(3) The upper bound theorem is often referred to as the unsafe theorem, because, interpreted in a design sense, it states that the value of the plastic moment Mp obtained on the basis of an arbitrarily assumed collapse mechanism is smaller than, or at best equal to, that actually required. Consider, for example, the beam in Fig.14.6-4(a). Suppose we have to determine the plastic moment of resistance required to carry the known loads P and 2P. As we have seen in Example 14.6-1, the correct collapse mechanism (Fig. 14.6-4(b)) gives $M_{P} — 4PL/5$. The incorrect mechanisms in Figs, (c) and (d) give Mp as 2PL/3 and PL/3 respectively.\n\n(4) Another fundamental theorem of plastic collapse is the lower bound theorem (sometimes called the static theorem), which states that if a distribution of bending moments can be found such that the structure is in equilibrium under the external loading and such that nowhere is the plastic moment of resistance Mp exceeded, then the structure will not collapse under that loading—however ‘unlikely’ that distribution of moments may appear. The theorem is often referred to as the safe theorem. (The proof of this theorem will be given in Section 14.9).\n\nThe use of the lower bound theorem is illustrated in Example 14.6-2.\n\n(5) For future reference the three fundamental theorems of plastic collapse are displayed together below:",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
""
] | [
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6-4a-1.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.4.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.4-b.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.4-c.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.4-d.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.4-e.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.4-f.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.4-g.jpg",
null,
"https://holooly.com/wp-content/uploads/2022/10/fig14.6.5.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.89883894,"math_prob":0.9873107,"size":6062,"snap":"2022-40-2023-06","text_gpt3_token_len":1567,"char_repetition_ratio":0.15351601,"word_repetition_ratio":0.036437247,"special_character_ratio":0.2594853,"punctuation_ratio":0.10096931,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.998423,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],"im_url_duplicate_count":[null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-02-09T05:26:42Z\",\"WARC-Record-ID\":\"<urn:uuid:e425e606-dfc1-458f-8b66-c353db711a56>\",\"Content-Length\":\"132048\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:078d573a-f821-42b7-8ac6-aae79c44c6a0>\",\"WARC-Concurrent-To\":\"<urn:uuid:904959b2-78cd-4473-8fff-a47663375984>\",\"WARC-IP-Address\":\"172.67.197.112\",\"WARC-Target-URI\":\"https://holooly.com/solutions-v20/the-propped-uniform-cantilever-in-fig-14-6-4a-is-of-plastic-moment-mp-determine-the-value-of-p-at-collapse-using-a-the-work-method-b-the-statical-method/\",\"WARC-Payload-Digest\":\"sha1:6WSQH6JOSPAUPODTGESEEYGKXMU2CP5V\",\"WARC-Block-Digest\":\"sha1:YFRIJR76DNFMEI73Z33U6KULGZGWU4JO\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-06/CC-MAIN-2023-06_segments_1674764501407.6_warc_CC-MAIN-20230209045525-20230209075525-00150.warc.gz\"}"} |
https://onlinejudge.org/board/viewtopic.php?f=2&t=948&p=32089 | [
"## 254 - Towers of Hanoi\n\nModerator: Board moderators\n\ncytse\nLearning poster\nPosts: 67\nJoined: Mon Sep 16, 2002 2:47 pm\nLocation: Hong Kong\nContact:\nYes, BigInt is needed here, because m can be as large as 2^100-1.\n\npc5971\nNew poster\nPosts: 34\nJoined: Mon Aug 05, 2002 11:24 am\nContact:\n\nI solved problem 254 in so many ways but now I can't see what's still wrong with my problem...\n\nFirst I made the stupid error to move only 1 ring every time, after that I tried to move k rings (2^k-1<=m) but I was still wrong because I didn't use big numbers...\n\nAfter I used big numbers (implemented with string - in Pascal) and I received TLE . . . I found that the program calculate for more then one time some of powers of 2. So finaly I precalculate the 2^k-1 powers for k=1,100. And now I receive WA...\n\nThis problem make me crazy, so pls. help me to find some tests for this program...\n\n[pascal]\nprogram p254;\nvar m,s:string;\ni,n:integer;\nt:array[1..3] of integer;\np:array[1..100] of string;\n\nprocedure decr(var m:string);\n{ m <- m-1 }\nvar i,t,c:integer;\nbegin\nt:=1; i:=length(m);\nwhile t>0 do\nbegin\nc:=ord(m)-ord('0')-t;\nif c<0 then\nc:=10-c\nelse\nt:=0;\nm:=chr(c+ord('0'));\ni:=i-1;\nend;\nwhile (length(m)>0) and (m='0') do\ndelete(m,1,1);\nend;\n\n{m <- m-s}\nvar t,l1,l2,c1,c2,d,i:integer;\nbegin\nl1:=length(m); l2:=length(s); d:=l1-l2;\nt:=0;\nfor i:=l2 downto 1 do\nbegin\nc1:=ord(m[i+d])-ord('0')-t;\nc2:=ord(s)-ord('0');\nif c1<c2 then\nt:=1\nelse\nt:=0;\nm[i+d]:=chr(c1+10*t-c2+ord('0'));\nend;\nif t>0 then\nbegin\nc1:=ord(m[d])-ord('0');\nc1:=c1-1;\nm[d]:=chr(c1+ord('0'));\nend;\nwhile (length(m)>0) and (m='0') do delete(m,1,1);\nend;\n\nprocedure doila(n:integer;var s:string);\n{ s <- 2^n }\nvar i,j,c,t:integer;\nbegin\ns:='1';\nt:=0;\nfor i:=1 to n do\nbegin\nt:=0;\nfor j:=length(s) downto 1 do\nbegin\nc:=ord(s[j])-ord('0');\nc:=2*c+t;\ns[j]:=chr(c mod 10+ord('0'));\nt:=c div 10;\nend;\nif t>0 then\ninsert(chr(t+ord('0')),s,1);\nend;\nend;\n\nfunction smaller(s,m:string):boolean;\n{ =true if s<=m}\nvar i:integer;\nbegin\nif length(s)<length(m) then\nsmaller:=true\nelse\nif length(s)>length(m) then\nsmaller:=false\nelse\nbegin\nsmaller:=true;\nfor i:=1 to length(s) do\nif s>m then\nbegin\nsmaller:=false;\nbreak;\nend;\nend;\nend;\n\nprocedure H(n,a,b,c:integer);\nbegin\nif smaller(p[n],m) then\nbegin\nt[a]:=t[a]-n;\nt:=t+n;\nend\nelse\nbegin\nH(n-1,a,c,b);\nif length(m)=0 then exit;\nt[a]:=t[a]-1;\nt:=t+1;\ndecr(m);\nif length(m)>0 then\nH(n-1,c,b,a);\nend;\nend;\n\nbegin\nfor i:=1 to 100 do\nbegin\ndoila(i,p);\ndecr(p);\nend;\nwhile m=' ' do\ndelete(m,1,1);\nwhile not ((n=0) and (m='0')) do\nbegin\nt:=n; t:=0; t:=0;\nif n mod 2 =0 then\nH(n,1,3,2)\nelse\nH(n,1,2,3);\nwriteln(t,' ',t,' ',t);\nwhile m=' ' do\ndelete(m,1,1);\nend;\nend.\n[/pascal]\n\nThanks a lot . . .\n\nIlham Kurnia\nNew poster\nPosts: 31\nJoined: Sat Nov 17, 2001 2:00 am\nContact:\n\n### A hint\n\nTry to think bitwise. (that is, convert m to base 2 and then play with it). Try finding the link between the binary represenatation of m and the number of disks in each peg.\n\nBest wishes and Merry Christmas to those celebrating.\n\nIlham\n\nGhost77 dimen\nLearning poster\nPosts: 67\nJoined: Sun Sep 22, 2002 5:40 am\nLocation: Taiwan\n\n### The Specification of problem 254.\n\nQuite strange.\n\nI test my program step by step, and it seems ok.\n\nAnd I make sure the BigInt handled well.\n\nHowever, I can't pass this problem.\n\nOne problem, should I transfer disks from peg A to peg C or peg B?\n\nIn the problem statement, it says \"transfer them from peg A to one\n\nof the other pegs\".\n\nBut the solutions won't be indentical with the other.\n\nIn sample input, the problemsetter choose the data which can't\n\ndistinguish the right solution.\n\nAfter submitting two type of solution, I got two wrong answer replies.\n\nSo there will be still some specification not clear or hidden.\n\nOne more problem, does the test data contain illegal input?\n\nThe legal ones should be n(wthin the range[0 100]) and\n\nm(within the range[0 2^n-1]).\n\nIf m is more than or equal to 2^n, what should be printed?\n\nThanks for reading it.",
null,
"little joey\nGuru\nPosts: 1080\nJoined: Thu Dec 19, 2002 7:37 pm\nfor odd moves, take the smallest disk (number 1) from the peg where it lies to the next one in the circular sequence ABCABC for even moves, make the only possible move not involving disk 1.\nThis completely specificies where the tower should go, since the first move (an odd move) takes disk 1 from A to B. Think about it.\n\nI don't think there is illegal input. My program doesn't test it and would produce nonsense if there was.\n\nGhost77 dimen\nLearning poster\nPosts: 67\nJoined: Sun Sep 22, 2002 5:40 am\nLocation: Taiwan\nThanks for your reply.",
null,
"anupam\nA great helper\nPosts: 405\nJoined: Wed Aug 28, 2002 6:45 pm\nContact:\nI tried to memorized all the moves but it gives tle. Is there any faster algorithm? will any1 describe shortly??",
null,
"--\nanupam\n\"Everything should be made simple, but not always simpler\"\n\nGhost77 dimen\nLearning poster\nPosts: 67\nJoined: Sun Sep 22, 2002 5:40 am\nLocation: Taiwan\nHello, anupam.\n\nMemorizing all moves is much time consuming, maybe never be done,\n\nbecause the most numbers of moves would be 2^100-1.\n\nTry to solve it with your background knowledge.\n\nThe Tower of Honai tells you that moves n disks from one peg to another\n\nneeds 2^n-1 steps.\n\nSo when you get a number, dividing them into 2^a-1, 2^b-1, 2^c-1, and\n\nso on.(a>b>c>....)\n\nBut for better speed, I divided them into 2^a, 2^b, 2^c, and so on.\n\nMoving them in sets instead of in steps, you'll get what you want.\n\nIf you still have no idea of my method, please let me know.",
null,
"anupam\nA great helper\nPosts: 405\nJoined: Wed Aug 28, 2002 6:45 pm\nContact:\nwell i misunderstood a little and fixed now. Thanks Boss.\n--\nAnupam\n\"Everything should be made simple, but not always simpler\"\n\nRed Scorpion\nExperienced poster\nPosts: 192\nJoined: Sat Nov 30, 2002 5:14 am\n\n### P-254\n\nHi, I always got WA.\n\nCan somebody post some I/O for this problem(Towers Of Hanoi).\n\nPlease...",
null,
"",
null,
"nesqi\nNew poster\nPosts: 5\nJoined: Thu Sep 30, 2004 4:18 pm\nif n is 0, m has to be 0 since 2^0 -1 = 1 - 1 = 0\n\nSo if n is 0 the program should terminate.\n\nd91-lek\nNew poster\nPosts: 22\nJoined: Thu Sep 16, 2004 2:25 am\nLocation: KTH, Stockholm\nContact:\n\n### Test data needed\n\nCould some merciful soul please post the result of this indata:\n\nCode: Select all\n\n``````3 5\n64 2\n8 45\n100 1267650600228229401496703205375\n100 1\n36 23478162346434234\n23 231234\n80 398573924759238475987234\n67 2349302402348238482342348\n99 3895732987529387459237955432\n88 747328293948729334241100234\n0 0\n``````\nI get\n\nCode: Select all\n\n``````1 1 1\n62 1 1\n4 2 2\n0 100 0\n99 0 1\n2 16 18\n7 10 6\n27 22 31\n11 25 31\n43 30 26\n26 36 26\n``````\nand WA of course, since I'm wondering.\n\nd91-lek\nNew poster\nPosts: 22\nJoined: Thu Sep 16, 2004 2:25 am\nLocation: KTH, Stockholm\nContact:\n\n### Test data needed\n\n- deleted -\nLast edited by d91-lek on Fri Nov 18, 2005 4:48 am, edited 1 time in total.\n\nd91-lek\nNew poster\nPosts: 22\nJoined: Thu Sep 16, 2004 2:25 am\nLocation: KTH, Stockholm\nContact:\nGot AC when I reversed the peg order. Example input is\nnot decisive in this matter. 100 1 should of course give\n99 1 0 and not 99 0 1.\n\nCorrect output for the input above is:\n\nCode: Select all\n\n``````1 1 1\n62 1 1\n4 2 2\n0 0 100\n99 1 0\n2 18 16\n7 6 10\n27 31 22\n11 31 25\n43 26 30\n26 26 36\n``````\n\nahmed hasan\nNew poster\nPosts: 9\nJoined: Fri Jan 21, 2005 5:09 pm\n\n### 254 Why WA?\n\nThis code does not run in vc++.\n\nCode: Select all\n\n``````#include<cstdio>\n#include<cstdlib>\n#include<cstring>\n#include<cmath>\n\nunsigned long long A,B,C;\nunsigned long long Moves;\n\nvoid MoveDisks(unsigned long long n, unsigned long long *peg1, unsigned long long *peg2)\n{\nMoves-=(unsigned long long)pow(2,n)-1;\n*peg1-=n;\n*peg2+=n;\n}\n\nunsigned long long MoveStack(unsigned long long n, unsigned long long *p, unsigned long long *e, unsigned long long *t)\n{\nif(Moves==0) return 0;\nif(Moves>=pow(2,n)-1) {MoveDisks(n,p,t);return 0;}\nelse\n{\nMoveStack(n-1,p,t,e);\nif(Moves>=1)MoveDisks(1,p,t);\nMoveStack(n-1,e,p,t);\n}\nreturn 0;\n}\n\nint main()\n{\nunsigned long long NumberOfDisks;\nwhile(1)\n{\nscanf(\"%llu %llu\",&NumberOfDisks,&Moves);\nif(NumberOfDisks==0 && Moves==0) break;\nA=NumberOfDisks; B=0; C=0;\nMoveStack(NumberOfDisks,&A,&B,&C);\nprintf(\"%llu \",A);\nprintf(\"%llu \",B);\nprintf(\"%llu\\n\",C);\n}\nreturn 0;\n}``````"
] | [
null,
"https://onlinejudge.org/board/images/smilies/icon_cool.gif",
null,
"https://onlinejudge.org/board/images/smilies/icon_cool.gif",
null,
"https://onlinejudge.org/board/images/smilies/icon_redface.gif",
null,
"https://onlinejudge.org/board/images/smilies/icon_cool.gif",
null,
"https://onlinejudge.org/board/images/smilies/icon_cry.gif",
null,
"https://onlinejudge.org/board/images/smilies/icon_cry.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6770883,"math_prob":0.9214412,"size":10953,"snap":"2020-34-2020-40","text_gpt3_token_len":3792,"char_repetition_ratio":0.10740707,"word_repetition_ratio":0.7132557,"special_character_ratio":0.37551355,"punctuation_ratio":0.21583696,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9739011,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-09-30T19:01:01Z\",\"WARC-Record-ID\":\"<urn:uuid:cafd7138-4e2e-4114-9ef0-d3ea58463543>\",\"Content-Length\":\"83638\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:8125ff1e-f0ac-4fab-9c4f-1ed683fee231>\",\"WARC-Concurrent-To\":\"<urn:uuid:2a9d8f37-22dd-4193-83c2-e9cdf34faa46>\",\"WARC-IP-Address\":\"51.255.0.192\",\"WARC-Target-URI\":\"https://onlinejudge.org/board/viewtopic.php?f=2&t=948&p=32089\",\"WARC-Payload-Digest\":\"sha1:UHMJMEPCEWKTTSPIJWRWL3RKNVUGVBXP\",\"WARC-Block-Digest\":\"sha1:LETVA44IN2GG277YQB2UHZSMTASCKYYQ\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-40/CC-MAIN-2020-40_segments_1600402127397.84_warc_CC-MAIN-20200930172714-20200930202714-00463.warc.gz\"}"} |
https://golangbot.com/first-class-functions/ | [
"",
null,
"Welcome to tutorial no. 33 in Golang tutorial series.\n\n### What are first class functions?\n\nA language which supports first class functions allows functions to be assigned to variables, passed as arguments to other functions and returned from other functions. Go has support for first class functions.\n\nIn this tutorial we will discuss about the syntax and various use cases of first class functions.\n\n### Anonymous functions\n\nLet's start with a simple example which assigns a function to a variable.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc main() {\na := func() {\nfmt.Println(\"hello world first class function\")\n}\na()\nfmt.Printf(\"%T\", a)\n}\n``````\n\nRun in playground\n\nIn the program above, we have assigned a function to the variable `a` in line no. 8. This is the syntax for assigning a function to a variable. If you notice carefully, the function assigned to `a` does not have a name. These kind of functions are called anonymous functions since they do not have a name.\n\nThe only way to call this function is using the variable `a`. We have done this in the next line. `a()` calls the function and this prints `hello world first class function`. In line no. 12 we print variable `a`'s type . This will print `func()`.\n\nRunning this program will output\n\n``````hello world first class function\nfunc()\n``````\n\nIt is also possible to call a anonymous function without assigning it to a variable. Let's see how this is done in the following example.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc main() {\nfunc() {\nfmt.Println(\"hello world first class function\")\n}()\n}\n``````\n\nRun in playground\n\nIn the program above, an anonymous function is defined in line no. 8 and immediately after the function definition, we call the function using `()` in line no. 10. This program will output,\n\n``````hello world first class function\n``````\n\nIt is also possible to pass arguments to anonymous functions just like any other function.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc main() {\nfunc(n string) {\nfmt.Println(\"Welcome\", n)\n}(\"Gophers\")\n}\n``````\n\nRun in playground\n\nIn the program above, a string argument is passed to the anonymous function in line no. 10. Running this program will print,\n\n``````Welcome Gophers\n``````\n\n### User defined function types\n\nJust like we define our own struct types, it is possible to define our own function types.\n\n``````type add func(a int, b int) int\n``````\n\nThe code snippet above creates a new function type `add` which accepts two integer arguments and returns a integer. Now we can define variables of type `add`.\n\nLet's write a program which defines a variable of type `add`.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\ntype add func(a int, b int) int\n\nfunc main() {\nvar a add = func(a int, b int) int {\nreturn a + b\n}\ns := a(5, 6)\nfmt.Println(\"Sum\", s)\n}\n``````\n\nRun in playground\n\nIn the program above, in line no.10, we define a variable `a` of type `add` and assign to it a function whose signature matches the type `add`. We call the function in line no. 13 and assign the result to `s`. This program will print,\n\n``````Sum 11\n``````\n\n### Higher-order functions\n\nThe definition of Higher-order function from wiki is a function which does at least one of the following\n\n• takes one or more functions as arguments\n• returns a function as its result\n\nLet's look at some simple examples for the above two scenarios.\n\n#### Passing functions as arguments to other functions\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc simple(a func(a, b int) int) {\nfmt.Println(a(60, 7))\n}\n\nfunc main() {\nf := func(a, b int) int {\nreturn a + b\n}\nsimple(f)\n}\n``````\n\nRun in playground\n\nIn the above example, in line no. 7 we define a function `simple` which takes a function which accepts two int arguments and returns a int as a parameter. Inside the main function in line no. 12 we create a anonymous function `f` whose signature matches the parameter of the function `simple`. We call `simple` and pass `f` as an argument to it in the next line. This program prints `67` as output.\n\n#### Returning functions from other functions\n\nNow let's rewrite the program above and return a function from the `simple` function.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc simple() func(a, b int) int {\nf := func(a, b int) int {\nreturn a + b\n}\nreturn f\n}\n\nfunc main() {\ns := simple()\nfmt.Println(s(60, 7))\n}\n``````\n\nRun in playground\n\nIn the program above, the simple function in line no 7 returns a function that takes two `int` arguments and returns a `int` argument.\n\nThis simple function is called from line no. 15. The return value from simple is assigned to `s`. Now `s` contains the function returned by `simple` function. We call `s` and pass it two int arguments in line no. 16. This program outputs `67`.\n\n### Closures\n\nClosures are a special case of anonymous functions. Closures are anonymous functions which access the variables defined outside the body of the function.\n\nAn example will make things more clear.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc main() {\na := 5\nfunc() {\nfmt.Println(\"a =\", a)\n}()\n}\n``````\n\nRun in playground\n\nIn the program above, the anonymous function accesses the variable `a` which is present outside its body in line no. 10. Hence this anonymous function is a closure.\n\nEvery closure is bound to its own surrounding variable. Let's understand what this means by using a simple example.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc appendStr() func(string) string {\nt := \"Hello\"\nc := func(b string) string {\nt = t + \" \" + b\nreturn t\n}\nreturn c\n}\n\nfunc main() {\na := appendStr()\nb := appendStr()\nfmt.Println(a(\"World\"))\nfmt.Println(b(\"Everyone\"))\n\nfmt.Println(a(\"Gopher\"))\nfmt.Println(b(\"!\"))\n}\n``````\n\nRun in background\n\nIn the program above, the function `appendStr` returns a closure. This closure is bound to the variable `t`. Let's understand what this means.\n\nThe variables `a` and `b` declared in line nos. 17, 18 are closures and they are bound to their own value of `t`.\n\nWe first call `a` with the parameter `World`. Now the value of `a`'s version of `t` becomes `Hello World`.\n\nIn line no. 20 we call `b` with the parameter `Everyone`. Since `b` is bound to its own variable `t`, `b`'s version of `t` has a initial value of `Hello` again. Hence after this function call, the value of `b`'s version of t becomes `Hello Everyone`. The rest of the program is self explanatory.\n\nThis program will print,\n\n``````Hello World\nHello Everyone\nHello World Gopher\nHello Everyone !\n``````\n\n### Practical use of first class functions\n\nTill now we have defined what first class functions are and we have seen a few contrived examples to learn how they work. Now lets write a concrete program which shows the practical use of first class functions.\n\nWe will create a program which filters a slice of students based on some criteria. Let's approach this step by step.\n\nFirst lets define the student type.\n\n``````type student struct {\nfirstName string\nlastName string\ncountry string\n}\n``````\n\nThe next step is to write the `filter` function. This function takes a slice of students and a function which determines whether a student matches the filtration criteria as parameters. We will understand better once we write this function. Let's go ahead and do it.\n\n``````func filter(s []student, f func(student) bool) []student {\nvar r []student\nfor _, v := range s {\nif f(v) == true {\nr = append(r, v)\n}\n}\nreturn r\n}\n``````\n\nIn the above function, the second parameter to `filter` is a function which takes a `student` as parameter and returns a `bool`. This function determines whether a particular student matches a criteria or not. We iterate through the student slice in line no. 3 and and we pass each student as parameter to the function `f`. If this returns `true`, it means that that the student has passed the filter criteria and he is added to the result slice `r`. You might be a little confused about the real use of this function, but it will be clear once we complete the program. I have added the main function and have provided the full program below.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\ntype student struct {\nfirstName string\nlastName string\ncountry string\n}\n\nfunc filter(s []student, f func(student) bool) []student {\nvar r []student\nfor _, v := range s {\nif f(v) == true {\nr = append(r, v)\n}\n}\nreturn r\n}\n\nfunc main() {\ns1 := student{\nfirstName: \"Naveen\",\nlastName: \"Ramanathan\",\ncountry: \"India\",\n}\ns2 := student{\nfirstName: \"Samuel\",\nlastName: \"Johnson\",\ncountry: \"USA\",\n}\ns := []student{s1, s2}\nf := filter(s, func(s student) bool {\nreturn true\n}\nreturn false\n})\nfmt.Println(f)\n}\n``````\n\nRun in playground\n\nIn the main function, we first create two students `s1` and `s2` and add them to slice `s`. Now let's say we want to find out all students who have grade `B`. We have established this in the above program by passing a function which checks whether the student has grade `B` and if so then returning true, as parameter to the `filter` function in line no. 38. The above program will print,\n\n``````[{Samuel Johnson B USA}]\n``````\n\nLet's say we want to find all students from India. This can be done easily by changing the function parameter to the filter function.\nI have provided code that does this below,\n\n``````c := filter(s, func(s student) bool {\nif s.country == \"India\" {\nreturn true\n}\nreturn false\n})\nfmt.Println(c)\n``````\n\nLet's conclude this section by writing one more program. This program will perform the same operations on each element of a slice and return the result. For example if we want to multiply all integers in a slice by 5 and return the output, it can be easily done using first class functions. These kind of functions which operate on every element of a collection are called `map` functions. I have provided the program below. It is self explanatory.\n\n``````package main\n\nimport (\n\"fmt\"\n)\n\nfunc iMap(s []int, f func(int) int) []int {\nvar r []int\nfor _, v := range s {\nr = append(r, f(v))\n}\nreturn r\n}\nfunc main() {\na := []int{5, 6, 7, 8, 9}\nr := iMap(a, func(n int) int {\nreturn n * 5\n})\nfmt.Println(r)\n}\n``````\n\nRun in playground\n\nThe above program will print,\n\n``````[25 30 35 40 45]\n``````\n\nHere's a quick recap of what we learnt in this tutorial,\n\n• What are first class functions?\n• Anonymous functions\n• User defined function types\n• Higher-order functions\n• Passing functions as arguments to other functions\n• Returning functions from other functions\n• Closures\n• Practical use of first class functions\n\nThat's about it for first class functions. Have a good day.\n\nPlease show your support by donating on Patreon. Your donations will help me create more awesome tutorials.",
null,
"Next tutorial - Reflection"
] | [
null,
"https://golangbot.com/content/images/2018/03/first-class-functions-golang.png",
null,
"https://golangbot.com/ghost/img/patreon.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7598299,"math_prob":0.9494875,"size":10065,"snap":"2020-24-2020-29","text_gpt3_token_len":2405,"char_repetition_ratio":0.17205049,"word_repetition_ratio":0.1273816,"special_character_ratio":0.25434676,"punctuation_ratio":0.112296745,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9903752,"pos_list":[0,1,2,3,4],"im_url_duplicate_count":[null,5,null,4,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-07-16T14:30:15Z\",\"WARC-Record-ID\":\"<urn:uuid:169c6d01-6087-49a5-a2b8-9e8e2037e2b6>\",\"Content-Length\":\"43334\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:1aa67732-b19d-49af-b34d-710d25addc6c>\",\"WARC-Concurrent-To\":\"<urn:uuid:ead6c60e-06b4-454a-a58c-a928bb3cfa72>\",\"WARC-IP-Address\":\"162.216.17.200\",\"WARC-Target-URI\":\"https://golangbot.com/first-class-functions/\",\"WARC-Payload-Digest\":\"sha1:3YRIDA6WMJDKFBRLVCATQX47JCSRYBXP\",\"WARC-Block-Digest\":\"sha1:J7MS7CJUWNSOHZRWYLQCJJX2HQJIHMG3\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-29/CC-MAIN-2020-29_segments_1593657169226.65_warc_CC-MAIN-20200716122414-20200716152414-00345.warc.gz\"}"} |
https://www.gradesaver.com/textbooks/math/algebra/algebra-1/chapter-12-data-analysis-and-probability-12-3-measures-of-central-tendency-and-dispersion-practice-and-problem-solving-exercises-page-730/16 | [
"## Algebra 1\n\nTo find the mean, we add up all of the values and divide by the total number of values. Mean A: $\\frac{0+12+7+19+21}{5} = 11.8$ Mean B: $\\frac{13+16+15+17+12}{5} = 14.6$ To find the range, we subtract the smallest term from the largest term. Range A: $21-0 = 21$ Range B: $17-12=5$ The mean of Set B is greater than the mean of Set A, but the range of Set A is greater than the range of Set B."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.83701587,"math_prob":0.99987006,"size":479,"snap":"2023-14-2023-23","text_gpt3_token_len":170,"char_repetition_ratio":0.15578948,"word_repetition_ratio":0.0,"special_character_ratio":0.4091858,"punctuation_ratio":0.140625,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99996173,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-07T18:12:47Z\",\"WARC-Record-ID\":\"<urn:uuid:5f8b0baf-dba9-4043-90a9-547bae11796e>\",\"Content-Length\":\"84997\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:5370310e-da5f-4468-b956-b47457a8e3bd>\",\"WARC-Concurrent-To\":\"<urn:uuid:d8792939-6bdd-4e86-8d8c-bb2999c7dbdb>\",\"WARC-IP-Address\":\"44.198.254.134\",\"WARC-Target-URI\":\"https://www.gradesaver.com/textbooks/math/algebra/algebra-1/chapter-12-data-analysis-and-probability-12-3-measures-of-central-tendency-and-dispersion-practice-and-problem-solving-exercises-page-730/16\",\"WARC-Payload-Digest\":\"sha1:VOBV4F7HGJLPUHMLKEIOYVHDM5D3INE3\",\"WARC-Block-Digest\":\"sha1:3VX5C5BEWDWAUGWRBFRDUAS6GVRVHEHM\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224654012.67_warc_CC-MAIN-20230607175304-20230607205304-00109.warc.gz\"}"} |
https://answers.everydaycalculation.com/divide-fractions/5-84-divided-by-25-81 | [
"Solutions by everydaycalculation.com\n\n## Divide 5/84 with 25/81\n\n5/84 ÷ 25/81 is 27/140.\n\n#### Steps for dividing fractions\n\n1. Find the reciprocal of the divisor\nReciprocal of 25/81: 81/25\n2. Now, multiply it with the dividend\nSo, 5/84 ÷ 25/81 = 5/84 × 81/25\n3. = 5 × 81/84 × 25 = 405/2100\n4. After reducing the fraction, the answer is 27/140\n\nMathStep (Works offline)",
null,
"Download our mobile app and learn to work with fractions in your own time:"
] | [
null,
"https://answers.everydaycalculation.com/mathstep-app-icon.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7498995,"math_prob":0.9617208,"size":287,"snap":"2021-04-2021-17","text_gpt3_token_len":108,"char_repetition_ratio":0.1590106,"word_repetition_ratio":0.0,"special_character_ratio":0.42857143,"punctuation_ratio":0.08196721,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9686116,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-01-25T01:56:22Z\",\"WARC-Record-ID\":\"<urn:uuid:6f6fa649-a1f4-4043-9e47-f9e6dc85d864>\",\"Content-Length\":\"7152\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:69088cf6-d4fd-4c7e-ab8f-7868ae2a9018>\",\"WARC-Concurrent-To\":\"<urn:uuid:62e1ab8e-4299-494a-ab7e-df8949a9411d>\",\"WARC-IP-Address\":\"96.126.107.130\",\"WARC-Target-URI\":\"https://answers.everydaycalculation.com/divide-fractions/5-84-divided-by-25-81\",\"WARC-Payload-Digest\":\"sha1:OBJL2LLBOBP4ZUNFFHTM6YQAXCJWKV37\",\"WARC-Block-Digest\":\"sha1:X4GB2XSTHCM5DPNRELTQP2UAUW6GDNZ4\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-04/CC-MAIN-2021-04_segments_1610703561996.72_warc_CC-MAIN-20210124235054-20210125025054-00339.warc.gz\"}"} |
https://brilliant.org/discussions/thread/divisors-of-an-integer/ | [
"# This note has been used to help create the Factors wiki\n\n## Definition\n\nWhat is a divisor of a number $N$? We say that $m$ is a divisor of $N$, if there exists an integer $k$ such that $N = km$.\n\nIn general, the divisors of a number refer to the positive divisors, unless otherwise noted. Since the negative divisors will be the negative of a positive divisor (and vice versa), we shall just consider positive divisors.\n\nWe also tend to ignore 0 the possibility for any of these numbers to be 0. Since $0 = 0 \\times m$ our definition above gives us that every integer is a divisor of $0$.\n\n## Technique\n\nLet the integer $N$ have a prime factorization $p_1 ^{q_1} p_2^{q_2} \\ldots p_n ^ {q_n}$, where $p_1, p_2 \\ldots , p_n$ are distinct prime numbers, and $q_1, q_2 \\ldots q_n$ are positive integers. Let $d$ be a divisor of $N$; then any prime factor $p$ that divides $d$ must divide $N$, hence it must be one of $p_1, p_2, \\ldots , p_n$.\n\nWithout loss of generality, set $p = p_i$. Let the highest power of $p$ that divides $d$ be $p_i^{r_i}$. Then, $p_i^{r_i}$ divides $d$, which in turn divides $N$, hence, $p_i^{r_i}$ must divide $p_i ^{q_i}$, which means that $r_i \\leq q_i$. Thus, by considering all the prime factors of $d$, we get that it must have the form $d = p_1^{r_1} p_2^{r_2} \\ldots p_n^{r_n}$ where $0 \\leq r_i \\leq q_i$ for all $i$.\n\nConversely, given a number $d$ that has the form $d = p_1^{r_1} p_2^{r_2} \\ldots p_n^{r_n}$ where $0 \\leq r_i \\leq q_i$ for all $i,$ it is clear that $d$ is a divisor of $N$. As such, we have a complete classification of all the divisors.\n\n### Divisor Function\n\nHow many divisors does the number $N$ have? From the above classification, we can set up a direct bijection between $d = p_1^{r_1} p_2^{r_2} \\ldots p_n^{r_n}$ and sets of $n$ integers $( r_1, r_2, \\ldots r_n )$ that satisfy $0 \\leq r_i \\leq q_i$. For each $r_i$, there are $q_i - 0 + 1 = q_i + 1$ possibilities. Hence, by the product rule, there are going to be $(q_1 +1) (q_2 +1) \\ldots (q_n + 1)$ divisors in all. The number of divisors of an integer $N$ is often denoted as the $\\phi (N)$ or $\\sigma_0 (N)$.\n\n### How many divisors does the number $2000$ have?\n\nWe have $2000 = 2^4 5^3$. Hence, from the above discussion, it has $(4+1)(3+1)=20$ divisors.\n\nWe can list them out as 1, 2, 4, 8, 16, 5, 10, 20, 40, 80, 25, 50, 100, 200, 400, 125, 250, 500, 1000, 2000.\n\n(Can you see why we listed out the divisors this way, instead of in increasing order?)\n\n### What is the sum of all divisors of the number $2000$?\n\nConsider the product $(1+2+2^2+2^3+2^4)(1+5+5^2+5^3)$ when expanded out. From the classification of the divisors, each divisor would appear exactly once as a term. Moreover, every term would be a divisor of the number $2000$. Hence the product represents the sum of all the divisors of the number $2000$, which is $31\\times 156 = 4836$.\n\n(Pop quiz: How would you generalize this to find the sum of all divisors of the number $N$? It is sometimes denoted as $\\sigma (N)$ or $\\sigma_1(N)$.)\n\n## Application and Extensions\n\n### Show that an integer $N$ has an odd number of divisors if and only if it is a perfect square.\n\nSince $\\phi(N) = (q_1 +1)(q_2+1) \\ldots (q_n+1)$, this product is odd if and only if every term is odd, which happens if and only if every value $q_i$ is even, which happens if and only if $N$ is a perfect square.\n\n### What is the smallest integer $N$ that has exactly 14 divisors?\n\nSince $14 = 2 \\cdot 7$, an integer has exactly 14 divisors if it has the form $p^{13}$ or $p_1 \\cdot p_2 ^6$. The smallest number in the first case and second case are, $2^{13} = 8192$ and $3 \\cdot 2^6 = 192$, respectively. Hence 192 is the smallest integer that has exactly 14 divisors.",
null,
"Note by Calvin Lin\n5 years, 10 months ago\n\nThis discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.\n\nWhen posting on Brilliant:\n\n• Use the emojis to react to an explanation, whether you're congratulating a job well done , or just really confused .\n• Ask specific questions about the challenge or the steps in somebody's explanation. Well-posed questions can add a lot to the discussion, but posting \"I don't understand!\" doesn't help anyone.\n• Try to contribute something new to the discussion, whether it is an extension, generalization or other idea related to the challenge.\n\nMarkdownAppears as\n*italics* or _italics_ italics\n**bold** or __bold__ bold\n- bulleted- list\n• bulleted\n• list\n1. numbered2. list\n1. numbered\n2. list\nNote: you must add a full line of space before and after lists for them to show up correctly\nparagraph 1paragraph 2\n\nparagraph 1\n\nparagraph 2\n\n[example link](https://brilliant.org)example link\n> This is a quote\nThis is a quote\n # I indented these lines\n# 4 spaces, and now they show\n# up as a code block.\n\nprint \"hello world\"\n# I indented these lines\n# 4 spaces, and now they show\n# up as a code block.\n\nprint \"hello world\"\nMathAppears as\nRemember to wrap math in $$ ... $$ or $ ... $ to ensure proper formatting.\n2 \\times 3 $2 \\times 3$\n2^{34} $2^{34}$\na_{i-1} $a_{i-1}$\n\\frac{2}{3} $\\frac{2}{3}$\n\\sqrt{2} $\\sqrt{2}$\n\\sum_{i=1}^3 $\\sum_{i=1}^3$\n\\sin \\theta $\\sin \\theta$\n\\boxed{123} $\\boxed{123}$\n\nSort by:\n\nAs a fact, 0 divides 0, according to the definition, but the result is undefined, as every integer becomes 0 when multiplied by 0.\n\n- 3 years, 8 months ago\n\nA Number has exactly 13 divisors.What can we say about the number?\n\n- 1 year, 11 months ago\n\nIt is a perfect square\n\n- 1 year, 9 months ago\n\nThe Number 4096 has 13 posirive divisors exactly.4096 is a ecen composite number and it is also called an deficiency number.Because the sum of its proper divisors is 4095.Then 4096-4095 =1.The remainder is 1 so that it is a deficiency number\n\n- 1 year, 9 months ago\n\n13 is a prime number. Its only divisor is itself. Therefore integer n has 13 divisors if and only if it is of the form p^(12).\n\nThe smallest such positive integer n is 2^12 = 4096.\n\nAlso, since 13 is a prime number > 2, it is odd, n has an odd number of divisors, and n must be a perfect square. p^12 = (p^6)^2.\n\n- 1 year, 5 months ago\n\nI don't understand the part of p1xp2^6. Huhu\n\n- 5 years, 6 months ago\n\nIt is $p^{13}.. OR.. p_{1}^{2 - 1} \\times p_{2}^{7 - 1} ..... 14 ...implies.. p^{14 - 1}.. OR.... 14 = 2\\times 7.. .implies... p_{1}^{2 - 1} \\times p_{2}^{7 - 1}$\n14 are number of factors, including 1 and the number. Hope this might be useful.\n\n- 5 years, 6 months ago\n\nYes, it is. Thank you so much! :D\n\n- 5 years, 6 months ago\n\nThank you so much\n\n- 5 years, 6 months ago\n\nBrilliant sir\n\n- 4 years, 7 months ago"
] | [
null,
"https://ds055uzetaobb.cloudfront.net/brioche/avatars-2/resized/45/e6e66b8981c1030d5650da159e79539a.3fe78221256b7adcfbcc8b609332e38a.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.92315894,"math_prob":0.9995135,"size":4627,"snap":"2019-51-2020-05","text_gpt3_token_len":1209,"char_repetition_ratio":0.16266493,"word_repetition_ratio":0.05620609,"special_character_ratio":0.2736114,"punctuation_ratio":0.16618358,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99992526,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-01-25T12:54:17Z\",\"WARC-Record-ID\":\"<urn:uuid:3a839816-aa50-4bab-8b17-c6c29f69b2b0>\",\"Content-Length\":\"192976\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:c3c671ba-5149-4756-803c-8c734f61008d>\",\"WARC-Concurrent-To\":\"<urn:uuid:04d9efe6-7ad5-4b08-9655-cef9d7c378d8>\",\"WARC-IP-Address\":\"104.20.35.242\",\"WARC-Target-URI\":\"https://brilliant.org/discussions/thread/divisors-of-an-integer/\",\"WARC-Payload-Digest\":\"sha1:DJ3L4WLY2PHUVTDKDXN64HNFOGFQJ2TJ\",\"WARC-Block-Digest\":\"sha1:VDNNP2HUGMC35QTFSHJOPGP7YDRUKVX6\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-05/CC-MAIN-2020-05_segments_1579251672440.80_warc_CC-MAIN-20200125101544-20200125130544-00436.warc.gz\"}"} |
https://math.stackexchange.com/questions/2516564/find-palindromes-in-two-consecutive-number-bases | [
"Find palindromes in two consecutive number bases?\n\nUpdate: So far I've been able to find (I believe all) solutions for $$d=3,5,7$$, and partially for $$d=9$$. If It turns out that a closed form for all solutions for a fixed (large enough) $$d$$ is too messy to compile, I'll probably include those as a partial self-answer here.\n\nWhat is allowing me to solve and find closed forms for a fixed $$d$$ case now, is solving the related system with a CAS like Mathematica - and is now summarized in the answer below.\n\nQuestion\n\nCan we generate all numbers which are palindromic in two consecutive number bases $$(b, b+1)$$ and have $$(2d+1, d\\in\\mathbb N)$$ digits when written in their palindromic bases?\n\n$$3$$ digit pattern\n\nI've found the pattern for $$d=1$$, the $$3$$ digit palindromes rather straightforward (simple):\n(Just look at the examples below and you'll see it)\n\nAll solutions that are palindromic in number bases $$b\\in\\{n+1, n+2\\}$$ for $$n\\gt3$$, are given by the following equation: (pick all $$k$$ in range to get a solution per value of $$k$$)\n\n$$P_3(n) = \\begin{cases} n^3+2n^2+2n, & \\text{k=1} \\\\ n^3-n^2(k-4)-n(k-7)-3k+4, & \\text{n\\gt k \\gt1} \\end{cases}$$\n\nThat gives you $$n-1$$ solutions, which are palindromic in $$n+1,n+2$$ bases.\n\nThe digits of given examples in base $$b=n+1$$ are: $$[n-k+1], [(n-k+2) \\mod (n+1)], [n-k+1]$$\n\n$$\\text{(Examples)}$$ You can see the solutions for $$n=4,5,6$$ below:\n\n5 67 3 [2, 3, 2] [1, 5, 1]\n5 98 3 [3, 4, 3] [2, 4, 2]\n5 104 3 [4, 0, 4] [2, 5, 2]\n\n6 92 3 [2, 3, 2] [1, 6, 1]\n6 135 3 [3, 4, 3] [2, 5, 2]\n6 178 3 [4, 5, 4] [3, 4, 3]\n6 185 3 [5, 0, 5] [3, 5, 3]\n\n7 121 3 [2, 3, 2] [1, 7, 1]\n7 178 3 [3, 4, 3] [2, 6, 2]\n7 235 3 [4, 5, 4] [3, 5, 3]\n7 292 3 [5, 6, 5] [4, 4, 4]\n7 300 3 [6, 0, 6] [4, 5, 4]\n\nSame pattern holds for all $$n\\gt3$$, as observed.\n\nFirst column is the base $$b=n+1$$, second is the number, third are the digits, and last two are number representations in number bases $$(n+1,n+2)$$.\n\nThe solutions for $$n=2,3$$ which are not included in $$P_3(n)$$ are $$10, 46$$ ;\n\nWhere number bases $$(2,3)$$, the $$n=1$$ case, has no solutions.\n\n$$5,7,9\\dots$$ digit pattern?\n\nI've found patterns for $$5,7,9,\\dots$$ digits to be similar among themselves but not so simple as the three digit one, as they seem to be more unpredictable with more digits.\n\nCan we define a function / algorithm to generate all the solutions for some $$P_d(n)$$?\n\nMeaning, the solutions are palindromic in bases $$(n+1,n+2)$$ and have $$d$$ digits?\n\n$$P_3(n)$$ above is the simplest example, which generates all solutions for $$(n+1,n+2)$$ bases by iterating $$k\\in(n,1]$$. How can one find patterns for other digit cases? (see linked code below to generate examples for some $$2d+1$$ digits)\n\nUse linked code to generate solutions for any case of $$2d+1$$ digits by simply changing the digit = 4 variable to some other integer. (You can also generate from/to any number base)\n\n$$9$$ digit pattern?\n\nI'm interested in the $$9$$ digit pattern before the rest.\n\n(Since this would help search for solutions for numbers palindromic in three consecutive bases which also have $$9$$ digits; where $$3,5,7$$ digit patterns were found, but no examples for $$\\ge9$$ digits have been found. - I've posted these patterns in my question regarding numbers palindromic in four or more consecutive bases. The MSE version of the question is linked in the comments.)\n\nYou can see all solutions for bases up to $$32$$ here, which were generated by my python code.\n\nLinked code checks every palindrome in some number base to see if it is palindromic in bases $$(b, b+1)$$; but this is extremely slow at larger bases, so I need to find $$P_9(n)$$ to generate them instead.\n\nIn the linked output text, you can notice patterns in digits. For example, notice patterns emerging at base $$b=30$$, for first couple examples; highlighted here.\n\nCan you predict these patterns for some base $$b$$, at least to some degree? I couldn't.\n\n• You might be interested in this question about palindromes in 4 successive bases – Ross Millikan Nov 14 '17 at 20:15\n\nThis is a (partial) answer for $$d=3,5,7,\\ge 9$$. - I doubt there is a nice general from for all $$d$$.\n\nUpdate: The relevant Diophantine system is now asked about on Math Overflow.\n\nThe problem in terms of Diophantine equations\n\nNotation\n\nWe have palindrome in base $$b$$ digits: $$(a_1,\\dots,a_d)$$ and it holds $$a_i=a_{d-i+1}$$, we write:\n\n$$(a_1,\\dots,a_d)_b=\\sum_{i=1}^{d}a_i b^{d-1}$$\n\nThe problem: Finding palindromes in two consecutive bases for a fixed case of $$d=2l+1$$ digits.\n\nFinding $$b,b+1$$ palindromes is equivalent to $$b,b-1$$ palindromes, so lets work with the latter.\n\nWe want to find palindromes with $$d$$ digits in both bases exactly. - Thus we will exclude solutions with $$(d,d+k)$$ digits for $$k\\gt 0$$ (according to the question, we are after $$d$$ digit palindromes in both bases). This means that we:\n\nWant to find solutions for $$b,a_i,A_i$$ where $$a_{i}=a_{d-i+1},A_{i}=A_{d-i+1}$$:\n\n$$\\sum_{i=1}^{d} a_i b^{d-i}=\\sum_{i=1}^{d} A_i (b-1)^{d-i}$$\n\nAnd $$0\\le a_i\\lt b,0\\le A_i\\lt b-1,a_1\\ne 0,A_1\\ne 0$$.\n\nWe can express $$A_i$$ in terms of $$a_i$$ by expanding $$((b-1)+1)^{d-i}$$ by binomial theorem. We can also use a trick and introduce $$o_i\\in\\mathbb Z$$ parameters that are defined such that inequalities for $$A_i$$ are satisfied. We have:\n\n$$A_i=\\sum_{k=1}^{i}\\binom{d-k}{i-k}a_k + o_{i} - o_{i-1} (b-1)$$\n\nSince all palindromes are known, $$a_i$$ are chosen such that $$a_i$$ inequalities are satisfied. By going over all valid sets of $$\\{o_1,\\dots,o_d\\}$$ parameters such that the $$A_i$$ inequalities are satisfied as well, we have split the original problem into just solving a bunch of linear Diophantine equations whose order depends on $$d$$.\n\nNote: If we want to generalize this for $$k\\gt 0$$ cases, we can simply handle them by introducing additional digits $$A_i$$ and additional $$o_i$$ parameters and having:\n\n$$A_i=o_{i} - o_{i-1} (b-1)$$\n\nFor $$i\\le 0$$. And then we need to adjust the equality for palindromes:\n\n$$A_{i_A}=A_d,A_{i_A+1}=A_{d-1},\\dots \\le b-1,A_{i_A}\\ne 0$$\n\nWhere $$i_A$$ is the smallest index of the non-zero $$A_i$$ digit.\n\nSolving the above system\n\nWe are interested in palindromes in two consecutive bases with $$2d+1$$ digits in both of those bases, so we have $$k=0$$ always. This means we aren't after solutions like $$10=(1,0,1)_3=(2,2)_4$$ for example.\n\nThe above system can be partially solved using a Computer-Algebra-System, that is, a CAS, for fixed cases of $$d$$. Doing it by hand appears to be too messy to do with my current approach for $$d\\gt 3$$ (See $$d=3$$ solution for $$b,b-1,b-2$$ palindromes from this question). A manual obstacle is handling all the $$o_i$$ cases individually which get more numerous the larger the $$d$$ case, and more complex to find.\n\nBut this does have limitations, as it gets harder to solve fully for larger $$d$$ computationally.\n\nNow, lets call each valid $$\\{o_1,\\dots,o_d\\}$$ pick of parameter values a normalization case of the digits. Each valid normalization can either yield none, finitely, or infinitely many solutions.\n\nSolutions for $$d=3$$\n\nIt turns out the only $$o_i$$ normalizations that can give solutions are $$\\{1,1\\},\\{2,1\\}$$, which give the following solutions for $$x,y\\in\\mathbb N_0$$:\n\n$$\\begin{array}{} 1.^* & (1+x,4+y,1+x)_{5+x+y} \\\\ 2. & (2+x,5,2+x)_{6+x} \\end{array}$$\n\nIn base $$b,b-1$$. This gives solutions like you described and explains why your $$P_3$$ has two cases. There are two families of solutions like you can see here. For example, the smallest given is: $$46=(1,4,1)_5=(2,3,2)_4$$ for $$x=y=0$$ and from first family.\n\nNotice the $$*$$ next to the first pattern. This marks that a subuset of those solutions can be palindromic in a third consecutive base $$b-2$$.\n\nSolutions for $$d=5$$\n\nIt can be shown there are $$12$$ normalizations that yield solutions, among which $$8$$ give familie(s) of solutions, and the other $$4$$ give finitely many solutions.\n\nHere are the families of solutions based on the $$1.-8.$$ normalizations, where $$a_2,a_3$$ were expressed in terms of $$b,a_1$$, for $$x,y\\in\\mathbb N_0$$ (where $$*$$ marks that a subset of these solutions can also be palindromic in a thrid consecutive base $$b-2$$), we have $$(a_1,a_2,a_3,a_2,a_1)_b$$ given by:\n\n$$\\begin{array}{} & a_1 & a_2 & a_3 & b \\\\ 1. & 3+x+y & -2 a_1+b-1 & 3 a_1 -b+2 & 11+3x+2y \\\\ 2. & 11+2x+y&-2 a_1+2 b&3 a_1-2b+1 &17+3 x+y \\\\ 3.^* & 20+2x+y&-2 a_1+2b+1 &3a_1 -b-2 & 38+3 x+2 y \\\\ 4. & 1+x & -2 a_1+b & 3a_1-1 & 11+3x+y \\\\ 5. & 14+x &-2a_1+2b+2 & 3a_1-2b-2 & 20+x \\\\ 6. & 4+x &-2a_1+b-1&3a_1+1 &14+3x \\\\ 6. & 3+x &-2a_1+b-1&3a_1+1 &12+3x \\\\ 6. & 2+x &-2a_1+b-1&3a_1+1 &10+3x \\\\ 6. & 1+x &-2a_1+b-1&3a_1+1 &9+3x \\\\ 6. & 1+x &-2a_1+b-1&3a_1+1 &8+3x \\\\ 7. & 12+x &-2a_1+b+1&3 a_1 -b-1 &23+2 x \\\\ 7. & 10+x &-2a_1+b+1&3 a_1 -b-1 &20+2 x \\\\ 7. & 8+x &-2a_1+b+1&3 a_1 -b-1 &17+2 x \\\\ 7. & 6+x &-2a_1+b+1&3 a_1 -b-1 &14+2 x \\\\ 7. & 7+x &-2a_1+b+1&3 a_1 -b-1 &20+2 x \\\\ 7. & 6+x &-2a_1+b+1&3 a_1 -b-1 &17+2 x \\\\ 7. & 5+x &-2a_1+b+1&3 a_1 -b-1 &14+2 x \\\\ 7. & 4+x &-2a_1+b+1&3 a_1 -b-1 &11+2 x \\\\ 8. & 11+2x &-2 a_1 + 2 b& 3 a_1 -b & 17+3x \\\\ 8. & 10+2x &-2 a_1 + 2 b& 3 a_1 -b & 16+3x \\\\ 8. & 16+2x &-2 a_1 + 2 b& 3 a_1 -b & 31+3x \\\\ 8. & 15+2x &-2 a_1 + 2 b& 3 a_1 -b & 29+3x \\\\ 8. & 14+2x &-2 a_1 + 2 b& 3 a_1 -b & 27+3x \\\\ 8. & 13+2x &-2 a_1 + 2 b& 3 a_1 -b & 25+3x \\\\ 8. & 12+2x &-2 a_1 + 2 b& 3 a_1 -b & 23+3x \\\\ 8. & 11+2x &-2 a_1 + 2 b& 3 a_1 -b & 21+3x \\\\ 8. & 10+2x &-2 a_1 + 2 b& 3 a_1 -b & 19+3x \\\\ 8. & 9+2x &-2 a_1 + 2 b& 3 a_1 -b & 17+3x \\\\ 8. & 9+2x &-2 a_1 + 2 b& 3 a_1 -b & 15+3x \\\\ 8. & 8+2x &-2 a_1 + 2 b& 3 a_1 -b & 15+3x \\\\ 8. & 8+2x &-2 a_1 + 2 b& 3 a_1 -b & 14+3x \\\\ 8. & 7+2x &-2 a_1 + 2 b& 3 a_1 -b & 13+3x \\end{array}$$\n\nAnd here are solutions for normalizations $$9.-12.$$, where we have solution, base lists:\n\n9. {2293, 6, 6148, 7, 10658, 8}\n10. {344954, 14, 502179, 15, 712154, 16, 987167, 17, 1341282, 18}\n11. {3074, 6, 5854, 7, 7703, 7, 13459, 8, 16708, 8, 27310, 9, 42324, 10, 50605, 10, 75157, 11, 125430, 12, 174596, 13, 270487, 14, 526600, 16}\n12. {7801, 8, 12547, 9, 17876, 9, 27472, 10, 40504, 11, 52825, 11, 75399, 12, 93088, 12, 104549, 13, 129198, 13, 174934, 14, 208423, 14, 231874, 15, 276395, 15, 359797, 16, 460807, 17, 535336, 17, 675996, 18, 842732, 19, 1183747, 20, 1444009, 21, 2347894, 23}\n\nPartial solutions for $$d=7$$\n\nThere appear to be $$61$$ normalizations that have solutions, out of which $$24$$ give familie(s) of infinite solutions each. So the list of the closed forms will be at least as three times as long as the previous case.\n\nHere are some of those infinite families: (these were not sorted like the previous case since this digit case is not complete yet) given $$c_1,\\dots,c_6\\in\\mathbb N$$, we have $$(a_1,a_2,a_3,a_4,a_3,a_2,a_1)_b$$ given by:\n\n$$\\begin{array}{} & a_1 & a_2 & a_3 & a_4 & b \\\\ 1. & 64+4 c_1+2 c_2+c_3 & -1+3 b-3 a_1 & c_2 & 5-4 b+5 a_1-2 c_2 & 71+5 c_1+2 c_2+c_3\\\\ 2. & 63+4 c_1+3 c_2+2 c_3 & -2+2 b-3 a_1 & c_1 & 6-3 b+5 a_1-2c_1&101+6c_1+5c_2+3c_3 \\\\ 3. & 3+c_1+c_2+c_3+c_4 & -2+b-3 a_1 & c_1 & 4-b+5 a_1-2 c_1 &15+3c_1+5c_2+4c_3+3 c_4\\\\ 4. & 1+c_1 & 1+b-3 a_1& 26+5 c_1+c_2+c_3& -5+2 b+5 a_1-2 a_3 & 51+5 c_1+c_2+2 c_3 \\\\ 5. & 4+2 c_1+c_2+c_3+c_4 & -1+b-3 a_1 & 4+5 c_1+2 c_2+c_3 & 1+5 a_1-2 a_3 & 19+6 c_1+3 c_2+3 c_3+5 c_4+c_5 \\\\ 5. & 3+2 c_1+c_2+c_3+c_4 & -1+b-3 a_1 & 1+5 c_1+2 c_2+c_3 & 1+5 a_1-2 a_3 & 16+6 c_1+3 c_2+3 c_3+5 c_4+c_5 \\\\ 5. & 3+2 c_1+c_2+c_3+c_4 & -1+b-3 a_1 & 5 c_1+2 c_2+c_3 & 1+5 a_1-2 a_3 & 17+6 c_1+3 c_2+3 c_3+5 c_4+c_5 \\\\ 6. & 19+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 47+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 65+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 17+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 42+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 60+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 15+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 37+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 55+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 13+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 32+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 50+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 11+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 27+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 45+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 9+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 22+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 40+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 7+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 17+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 35+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 5+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 12+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 30+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 3+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 9+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 27+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 3+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 8+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 26+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 3+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 7+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 25+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 2+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 5+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 24+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 6. & 1+2 c_1+c_2+c_3+c_4 & b-3 a_1 & 2+5 c_1+5 c_2+4 c_3+3 c_4+c_5 & -2+b+5 a_1-2 a_3 & 23+6 c_1+5 c_2+4 c_3+3 c_4+2 c_5+c_6 \\\\ 7. & ? & ? & ? & ? & ? \\end{array}$$ $$\\dots$$\n\nWhere the rest are not yet solved via my method. I've implemented it in Mathematica to solve the stated problem system of equations, but it is having trouble getting solutions in terms of some parameters. The $$o_i$$ sets of parameters which haven't been solved yet, and represent normalizations $$7.-24.$$, are:\n\n$$\\begin{array}{} & \\{o_1,o_2,o_3,o_4,o_5,o_6\\} \\\\ 7. & \\{1, 6, 14, 17, 12, 4\\} \\\\ 8. & \\{1, 6, 12, 14, 9, 3\\} \\\\ 9. & \\{2, 5, 10, 10, 7, 2\\} \\\\ 10. & \\{2, 5, 8, 7, 4, 1\\} \\\\ 11. & \\{3, 10, 17, 17, 10, 3\\} \\\\ 12. &\\{3, 10, 19, 20, 13, 4\\} \\\\ 13. &\\{3, 10, 21, 23, 16, 5\\} \\\\ 14. &\\{3, 11, 20, 21, 13, 4\\} \\\\ 15. &\\{3, 10, 15, 14, 7, 2\\} \\\\ 16. &\\{3, 11, 18, 18, 10, 3\\} \\\\ 17. &\\{4, 10, 14, 11, 5, 1\\} \\\\ 18. &\\{4, 10, 16, 14, 8, 2\\} \\\\ 19. &\\{5, 15, 23, 21, 11, 3\\} \\\\ 20. &\\{5, 15, 25, 24, 14, 4\\} \\\\ 21. &\\{5, 15, 27, 27, 17, 5\\} \\\\ 22. &\\{5, 16, 26, 25, 14, 4\\} \\\\ 23. &\\{5, 16, 24, 22, 11, 3\\} \\\\ 24. &\\{6, 15, 24, 21, 12, 3\\} \\end{array}$$\n\nFor some reason I was unable to directly get an output in terms of $$c_i$$ constants for these unsolved normalizations. It is still possible to get solutions from unsolved cases for fixed bases $$b$$ at a time, and then extract the patterns and families from the solutions. - The difference being, we then can't claim these are all and proven solutions like those in $$d=3,5$$ cases, unless we also manually prove them afterwards.\n\nThe $$25.-61.$$ normalization cases give finitely many solutions. This list of solutions is too long to include here, so it will be accessible on an external source.\n\nSolving for $$d\\ge 9$$\n\nUsing the system presented, it should be possible to find all closed forms for a fixed case of $$d$$ digits like I have done for first three.\n\nThe case $$d=9$$ has at least $$443$$ normalizations and at least $$77$$ of those give familie(s) of infinitely many solutions. (At least - I haven't yet computed all the normalizations).\n\nThe larger cases have much more. But searching for all solutions for fixed $$d\\ge 9$$ does not seem practical as there does not appear to be a nice closed form to encapsulate them all - and they get very hard to fully normalize in all possible ways using my current computational method of the mentioned problem system.\n\nA solution to this would be to find an efficient algorithm to compute these patterns and then store and access them computationally?\n\nSo far, we can notice patterns in these families:\n\n$$\\begin{array}{|cccccccc} \\hline d & a_1 & a_2 & a_3 & a_4 & a_5 & a_6 & \\dots \\\\ \\hline 1 & \\color{blue}{a_1} & 0 & 0 & 0 & 0 & 0 & \\dots \\\\ 3 & c_0 & \\color{blue}{-1a_1+c} & 0 & 0 & 0 & 0 & \\dots \\\\ 5 & c_0 & -2a_1+c & \\color{blue}{3a_1+c} & 0 & 0 & 0 & \\dots \\\\ 7 & c_0 & -3a_1+c & c_0 & \\color{blue}{5a_1-2a_3+c} & 0 & 0 & \\dots \\\\ 9 & c_0 & -4a_1+c & c_0 & 14a_1-3a_3+c & \\color{blue}{-21a_1+4a_3+c} & 0 & \\dots \\\\ 11 & ? & ? & ? & ? & ? & \\color{blue}{?} & \\dots \\\\ \\dots & \\dots & \\dots & \\dots & \\dots & \\dots & \\dots & \\color{blue}{\\dots} \\\\ \\end{array}$$\n\nWhere $$c_0$$ is an expression depending on some free parameters $$c_i\\in\\mathbb N$$, and $$c$$ is an expression depending on $$c_0$$ and base $$b$$.\n\nMaybe finding these patterns for all $$d$$ can help solve the problem of finding such an efficient algorithm.\n\nAlternate approach\n\nPerhaps closed forms for fixed $$d$$ are not realistically possible to tabulate all. Alternate ways of finding more palindromes in two consecutive bases that might not belong to these solutions is to try to find isolated patterns across cases of $$d$$ which is no longer fixed:"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.650105,"math_prob":0.99998593,"size":12608,"snap":"2019-43-2019-47","text_gpt3_token_len":5982,"char_repetition_ratio":0.15177721,"word_repetition_ratio":0.17208904,"special_character_ratio":0.5392608,"punctuation_ratio":0.13777778,"nsfw_num_words":1,"has_unicode_error":false,"math_prob_llama3":0.99964035,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-10-19T17:30:58Z\",\"WARC-Record-ID\":\"<urn:uuid:f18071c8-6a23-4aab-9db7-898b40b8b327>\",\"Content-Length\":\"166137\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:461fa6b8-6f09-43d3-a034-f3304bd249c1>\",\"WARC-Concurrent-To\":\"<urn:uuid:66fa9847-2cae-4824-9e84-eddb577277f5>\",\"WARC-IP-Address\":\"151.101.193.69\",\"WARC-Target-URI\":\"https://math.stackexchange.com/questions/2516564/find-palindromes-in-two-consecutive-number-bases\",\"WARC-Payload-Digest\":\"sha1:4J6Y5IXDM3MHMC74JIRKIG7NKTY3KHWP\",\"WARC-Block-Digest\":\"sha1:ESZIJYIUO43ZKBQ4WZS43Z5JGYK3LYPF\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-43/CC-MAIN-2019-43_segments_1570986697439.41_warc_CC-MAIN-20191019164943-20191019192443-00432.warc.gz\"}"} |
https://www.fineconverter.com/minutes-to-years/52-min-to-year.html | [
"min to year\n Minutes min Years year\n\n# 52 Minutes to Years (min to y)\n\nUse 52 minutes to years converter to find how many year in 52 minutes. To convert 52 minutes to years enter the time in minutes and get the value converted into years.\n\n## Formula to convert 52 minutes to years:\n\nyr = min ÷ 525600\n\nWhere,\n\nyr = Time in years and,\n\nmin = Time in minutes\n\n## How to convert minutes to years? (min into yr)\n\nWhen you are searching for minutes to years, you are indirectly searching for min to yr.\n\nTo convert min into years use above conversion formula.\n\n01 minute is equal to 1.9026e-6 years. (i.e 1 minute = 1.9026e-6 years).\n\nTo convert your minutes to year, divide minutes by 525600 to get the result.\n\nBelow we will show you how to convert minutes in years.\n\n### Convert 52 minutes to years\n\n01 minute is equal to 1.9026e-6 years.\n\nTo convert 52 min in year, divide minutes by 525600 to get the result.\n\nyr = (52 min ÷ 525600)\n\nTherefore, the answer to 52 minutes to years is 9.89346e-5 years, which can be written as follows:\n52 minutes = 9.89346e-5 years"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8733547,"math_prob":0.91135186,"size":979,"snap":"2021-43-2021-49","text_gpt3_token_len":264,"char_repetition_ratio":0.2646154,"word_repetition_ratio":0.08888889,"special_character_ratio":0.3094995,"punctuation_ratio":0.12093023,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.96922255,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-10-18T17:13:22Z\",\"WARC-Record-ID\":\"<urn:uuid:297ec056-4a31-4fad-ad1b-5bcddc2f6ff1>\",\"Content-Length\":\"6198\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:7400c1ca-849f-4b7e-8fa6-0f79de7df5a1>\",\"WARC-Concurrent-To\":\"<urn:uuid:60e77f28-f0f6-4057-99b6-1d7b724e82d4>\",\"WARC-IP-Address\":\"172.67.204.134\",\"WARC-Target-URI\":\"https://www.fineconverter.com/minutes-to-years/52-min-to-year.html\",\"WARC-Payload-Digest\":\"sha1:IFT6JGEGREY5WNL7GTP6OYOX2YRLW5HL\",\"WARC-Block-Digest\":\"sha1:IMNJKXSNLD2PXGMAGVV4XPUMJHACKX5K\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-43/CC-MAIN-2021-43_segments_1634323585204.68_warc_CC-MAIN-20211018155442-20211018185442-00277.warc.gz\"}"} |
http://support.hfm.io/1.8/api/Chart-1.9.3/Graphics-Rendering-Chart-Plot-Hidden.html | [
"Chart-1.9.3: A library for generating 2D Charts and Plots\n\nGraphics.Rendering.Chart.Plot.Hidden\n\nDescription\n\nPlots that don't show, but occupy space so as to effect axis scaling\n\nSynopsis\n\n# Documentation\n\ndata PlotHidden x y #\n\nValue defining some hidden x and y values. The values are not displayed, but they still affect axis scaling.\n\nConstructors\n\n PlotHidden Fields_plot_hidden_x_values :: [x] _plot_hidden_y_values :: [y]\nInstances\n # Instance detailsDefined in Graphics.Rendering.Chart.Plot.Hidden MethodstoPlot :: PlotHidden x y -> Plot x y #\n\nplot_hidden_x_values :: forall x y x. Lens (PlotHidden x y) (PlotHidden x y) [x] [x] #\n\nplot_hidden_y_values :: forall x y y. Lens (PlotHidden x y) (PlotHidden x y) [y] [y] #"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.5096894,"math_prob":0.8412845,"size":875,"snap":"2021-04-2021-17","text_gpt3_token_len":257,"char_repetition_ratio":0.24799082,"word_repetition_ratio":0.2361111,"special_character_ratio":0.30171427,"punctuation_ratio":0.16049382,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98634416,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-01-20T19:09:09Z\",\"WARC-Record-ID\":\"<urn:uuid:4a129a6c-6f74-4fd6-abe5-f534cd69910a>\",\"Content-Length\":\"7649\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:23253770-8e9e-4a8a-a445-6020d884ff96>\",\"WARC-Concurrent-To\":\"<urn:uuid:ab3aa7c8-0f31-44c9-b2bc-f9e0a6434eb5>\",\"WARC-IP-Address\":\"52.217.37.83\",\"WARC-Target-URI\":\"http://support.hfm.io/1.8/api/Chart-1.9.3/Graphics-Rendering-Chart-Plot-Hidden.html\",\"WARC-Payload-Digest\":\"sha1:ZWX77FN3A2NQ34LTYAC6FMDIDYMQF2FO\",\"WARC-Block-Digest\":\"sha1:ITIP2OVGUXXD3VNUGHKMW6PX627EXXLZ\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-04/CC-MAIN-2021-04_segments_1610703521987.71_warc_CC-MAIN-20210120182259-20210120212259-00405.warc.gz\"}"} |
https://www.stat.math.ethz.ch/pipermail/r-help/1997-May/001604.html | [
"# R-beta: formula() and model formulae\n\nRoss Ihaka ihaka at stat.auckland.ac.nz\nFri May 9 00:42:30 CEST 1997\n\n```Bill Venables writes:\n> There is an anomaly in the way : and ^ terms are handled in the\n> sense that the logical and useful thing is obvious but does not\n> happen. Let me give an example. Suppose a and b are factors, x\n> and y are not.\n>\n> A term such as (a + b + x + y)^2 should be expanded out binomial\n> fashion, coefficients stripped away and the remaining products\n> treated as : products. Then S copes with terms like a:a, a:b and\n> a:x fine, even x:y is handled by having it generate a column of\n> xy-products, as it should.\n>\n> But a term such as x:x does not generate a column of x-squares,\n> it is merely removed as it would be if it were a factor. This is\n> a complete anomaly, and one that I don't think would be hard or\n> dangerous for R to rectify. Indeed it would be very useful to\n> generate a complete second degree regression in three variables\n> using y ~ (1 + x1 + x2 + x3)^2. As it is now it generates linear\n> and product terms only and omits the powers. Go figure.\n\nI agree that this is a problem (its certainly bitten me), however\nthere is problem in implementing things this way. All the model\nmanipulations are carried out by the \"terms\" function which only sees\na formula and is blissfully unaware of whether variables are factors\nor numeric. It then has no basis for deciding between\na:a -> a\t(factors)\nx:x -> x^2\t(variables)\nI supose that we could make \"terms\" a bit more context aware, but\nsometimes it's useful to use it for its purely symbolic effect.\nRoss\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\nr-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html\nSend \"info\", \"help\", or \"[un]subscribe\"\n(in the \"body\", not the subject !) To: r-help-request at stat.math.ethz.ch\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n```"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.86236596,"math_prob":0.9672484,"size":1987,"snap":"2022-05-2022-21","text_gpt3_token_len":502,"char_repetition_ratio":0.15027736,"word_repetition_ratio":0.0,"special_character_ratio":0.32460997,"punctuation_ratio":0.13098237,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98910904,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-05-21T06:03:02Z\",\"WARC-Record-ID\":\"<urn:uuid:e37527ef-6734-46d6-8dd2-c8b4fe3f1c8f>\",\"Content-Length\":\"4642\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:7107632d-9f42-409f-9a53-d5e606839bf3>\",\"WARC-Concurrent-To\":\"<urn:uuid:e698b27a-2031-48b1-bb29-45d0b0b25bcc>\",\"WARC-IP-Address\":\"129.132.119.195\",\"WARC-Target-URI\":\"https://www.stat.math.ethz.ch/pipermail/r-help/1997-May/001604.html\",\"WARC-Payload-Digest\":\"sha1:5SYW4DULZ4IVC64N6BAYNUIUXCDHTDVH\",\"WARC-Block-Digest\":\"sha1:ZMEGNYR6NGNNPF5VN4EBPO7NYVSKDAI4\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-21/CC-MAIN-2022-21_segments_1652662538646.33_warc_CC-MAIN-20220521045616-20220521075616-00590.warc.gz\"}"} |
https://www.colorhexa.com/084941 | [
"# #084941 Color Information\n\nIn a RGB color space, hex #084941 is composed of 3.1% red, 28.6% green and 25.5% blue. Whereas in a CMYK color space, it is composed of 89% cyan, 0% magenta, 11% yellow and 71.4% black. It has a hue angle of 172.6 degrees, a saturation of 80.2% and a lightness of 15.9%. #084941 color hex could be obtained by blending #109282 with #000000. Closest websafe color is: #003333.\n\n• R 3\n• G 29\n• B 25\nRGB color chart\n• C 89\n• M 0\n• Y 11\n• K 71\nCMYK color chart\n\n#084941 color description : Very dark cyan.\n\n# #084941 Color Conversion\n\nThe hexadecimal color #084941 has RGB values of R:8, G:73, B:65 and CMYK values of C:0.89, M:0, Y:0.11, K:0.71. Its decimal value is 543041.\n\nHex triplet RGB Decimal 084941 `#084941` 8, 73, 65 `rgb(8,73,65)` 3.1, 28.6, 25.5 `rgb(3.1%,28.6%,25.5%)` 89, 0, 11, 71 172.6°, 80.2, 15.9 `hsl(172.6,80.2%,15.9%)` 172.6°, 89, 28.6 003333 `#003333`\nCIE-LAB 27.292, -21.268, -0.711 3.436, 5.198, 5.823 0.238, 0.36, 5.198 27.292, 21.28, 181.913 27.292, -20.868, 1.705 22.799, -12.993, 0.817 00001000, 01001001, 01000001\n\n# Color Schemes with #084941\n\n• #084941\n``#084941` `rgb(8,73,65)``\n• #490810\n``#490810` `rgb(73,8,16)``\nComplementary Color\n• #084921\n``#084921` `rgb(8,73,33)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #083149\n``#083149` `rgb(8,49,73)``\nAnalogous Color\n• #492108\n``#492108` `rgb(73,33,8)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #490831\n``#490831` `rgb(73,8,49)``\nSplit Complementary Color\n• #494108\n``#494108` `rgb(73,65,8)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #410849\n``#410849` `rgb(65,8,73)``\n• #104908\n``#104908` `rgb(16,73,8)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #410849\n``#410849` `rgb(65,8,73)``\n• #490810\n``#490810` `rgb(73,8,16)``\n• #000404\n``#000404` `rgb(0,4,4)``\n• #031b18\n``#031b18` `rgb(3,27,24)``\n• #05322d\n``#05322d` `rgb(5,50,45)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #0b6055\n``#0b6055` `rgb(11,96,85)``\n• #0d776a\n``#0d776a` `rgb(13,119,106)``\n• #108e7e\n``#108e7e` `rgb(16,142,126)``\nMonochromatic Color\n\n# Alternatives to #084941\n\nBelow, you can see some colors close to #084941. Having a set of related colors can be useful if you need an inspirational alternative to your original color choice.\n\n• #084931\n``#084931` `rgb(8,73,49)``\n• #084936\n``#084936` `rgb(8,73,54)``\n• #08493c\n``#08493c` `rgb(8,73,60)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #084946\n``#084946` `rgb(8,73,70)``\n• #084649\n``#084649` `rgb(8,70,73)``\n• #084149\n``#084149` `rgb(8,65,73)``\nSimilar Colors\n\n# #084941 Preview\n\nThis text has a font color of #084941.\n\n``<span style=\"color:#084941;\">Text here</span>``\n#084941 background color\n\nThis paragraph has a background color of #084941.\n\n``<p style=\"background-color:#084941;\">Content here</p>``\n#084941 border color\n\nThis element has a border color of #084941.\n\n``<div style=\"border:1px solid #084941;\">Content here</div>``\nCSS codes\n``.text {color:#084941;}``\n``.background {background-color:#084941;}``\n``.border {border:1px solid #084941;}``\n\n# Shades and Tints of #084941\n\nA shade is achieved by adding black to any pure hue, while a tint is created by mixing white to any pure color. In this example, #000202 is the darkest color, while #f0fdfc is the lightest one.\n\n• #000202\n``#000202` `rgb(0,2,2)``\n• #021412\n``#021412` `rgb(2,20,18)``\n• #042622\n``#042622` `rgb(4,38,34)``\n• #063731\n``#063731` `rgb(6,55,49)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #0a5b51\n``#0a5b51` `rgb(10,91,81)``\n• #0c6c60\n``#0c6c60` `rgb(12,108,96)``\n• #0e7e70\n``#0e7e70` `rgb(14,126,112)``\n• #109080\n``#109080` `rgb(16,144,128)``\n• #12a190\n``#12a190` `rgb(18,161,144)``\n• #14b39f\n``#14b39f` `rgb(20,179,159)``\n• #16c5af\n``#16c5af` `rgb(22,197,175)``\n• #17d6bf\n``#17d6bf` `rgb(23,214,191)``\n• #1be6cd\n``#1be6cd` `rgb(27,230,205)``\n• #2de8d1\n``#2de8d1` `rgb(45,232,209)``\n``#3fead5` `rgb(63,234,213)``\n• #51ecd9\n``#51ecd9` `rgb(81,236,217)``\n• #62eedd\n``#62eedd` `rgb(98,238,221)``\n• #74f0e1\n``#74f0e1` `rgb(116,240,225)``\n• #86f2e4\n``#86f2e4` `rgb(134,242,228)``\n• #97f4e8\n``#97f4e8` `rgb(151,244,232)``\n• #a9f6ec\n``#a9f6ec` `rgb(169,246,236)``\n• #bbf8f0\n``#bbf8f0` `rgb(187,248,240)``\n• #ccf9f4\n``#ccf9f4` `rgb(204,249,244)``\n• #defbf8\n``#defbf8` `rgb(222,251,248)``\n• #f0fdfc\n``#f0fdfc` `rgb(240,253,252)``\nTint Color Variation\n\n# Tones of #084941\n\nA tone is produced by adding gray to any pure hue. In this case, #272a2a is the less saturated color, while #024f46 is the most saturated one.\n\n• #272a2a\n``#272a2a` `rgb(39,42,42)``\n• #242d2c\n``#242d2c` `rgb(36,45,44)``\n• #21302e\n``#21302e` `rgb(33,48,46)``\n• #1e3331\n``#1e3331` `rgb(30,51,49)``\n• #1b3633\n``#1b3633` `rgb(27,54,51)``\n• #183935\n``#183935` `rgb(24,57,53)``\n• #143d38\n``#143d38` `rgb(20,61,56)``\n• #11403a\n``#11403a` `rgb(17,64,58)``\n• #0e433c\n``#0e433c` `rgb(14,67,60)``\n• #0b463f\n``#0b463f` `rgb(11,70,63)``\n• #084941\n``#084941` `rgb(8,73,65)``\n• #054c43\n``#054c43` `rgb(5,76,67)``\n• #024f46\n``#024f46` `rgb(2,79,70)``\nTone Color Variation\n\n# Color Blindness Simulator\n\nBelow, you can see how #084941 is perceived by people affected by a color vision deficiency. This can be useful if you need to ensure your color combinations are accessible to color-blind users.\n\nMonochromacy\n• Achromatopsia 0.005% of the population\n• Atypical Achromatopsia 0.001% of the population\nDichromacy\n• Protanopia 1% of men\n• Deuteranopia 1% of men\n• Tritanopia 0.001% of the population\nTrichromacy\n• Protanomaly 1% of men, 0.01% of women\n• Deuteranomaly 6% of men, 0.4% of women\n• Tritanomaly 0.01% of the population"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.5177334,"math_prob":0.6509469,"size":3657,"snap":"2020-34-2020-40","text_gpt3_token_len":1608,"char_repetition_ratio":0.1259239,"word_repetition_ratio":0.011090573,"special_character_ratio":0.57287395,"punctuation_ratio":0.23608018,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99438584,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-08-04T23:29:35Z\",\"WARC-Record-ID\":\"<urn:uuid:44e308f1-0485-4f4e-8458-e575a5c3fec2>\",\"Content-Length\":\"36180\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:84f974c5-056c-43db-a963-eeba463f53a7>\",\"WARC-Concurrent-To\":\"<urn:uuid:7bbf65c1-fae1-423a-95da-14a594cf41b2>\",\"WARC-IP-Address\":\"178.32.117.56\",\"WARC-Target-URI\":\"https://www.colorhexa.com/084941\",\"WARC-Payload-Digest\":\"sha1:3IRNQ264AW6COIZBA57LMUSOUSGGEUFV\",\"WARC-Block-Digest\":\"sha1:YHN5WCHXHPWK2BKSBDXDQHJR6NFSMRID\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-34/CC-MAIN-2020-34_segments_1596439735885.72_warc_CC-MAIN-20200804220455-20200805010455-00428.warc.gz\"}"} |
https://math.stackexchange.com/questions/1726183/is-the-result-true-when-the-valuation-is-trivial | [
"# Is the result true when the valuation is trivial?\n\nHere I proved the following result:\n\nProposition: Let $(K,|\\cdot|)$ be a valued field with non-trivial valuation and let $X$ be a vector space over $(K,|\\cdot|)$. Two norms $p_1,p_2$ on $X$ are equivalent (i.e., they induce the same topology) iff there are constants $c_1$ and $c_2$ such that $c_1p_1\\leq p_2\\leq c_2p_1$\n\nIs the proposition true when the valuation is trivial? (The valuation $|\\cdot|$ is trivial when $|x|=1$, for each $x\\in K^*$)\n\nHere's a counterexample. Let $K$ be any field with the trivial valuation and let $X$ be an infinite-dimensional vector space with basis $B$. We can define one norm $p_1$ on $X$ by $p_1(x)=1$ for all nonzero $x\\in X$. We can define another norm $p_2$ by saying $p_2(x)$ is the number of nonzero coefficients there are when we write $x$ as a linear combination of elements of $B$. Then both norms induce the discrete topology, but $p_2/p_1$ is unbounded."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8373302,"math_prob":0.99999475,"size":445,"snap":"2019-51-2020-05","text_gpt3_token_len":147,"char_repetition_ratio":0.12471655,"word_repetition_ratio":0.0,"special_character_ratio":0.33033708,"punctuation_ratio":0.12222222,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":1.0000087,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-01-25T23:25:22Z\",\"WARC-Record-ID\":\"<urn:uuid:09ec35bc-5e16-4c89-b5e8-2fd154ed3942>\",\"Content-Length\":\"139682\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:e858127a-392d-4181-aa10-5fd9d78d2621>\",\"WARC-Concurrent-To\":\"<urn:uuid:50bb140a-2130-4d4d-8240-7246e7899998>\",\"WARC-IP-Address\":\"151.101.193.69\",\"WARC-Target-URI\":\"https://math.stackexchange.com/questions/1726183/is-the-result-true-when-the-valuation-is-trivial\",\"WARC-Payload-Digest\":\"sha1:ZYGAOTLERYHYUGF22QLWYQ6TKJW2SGXO\",\"WARC-Block-Digest\":\"sha1:HDTGXKNHX2IPFVNCVFKVKFOKEBG667WG\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-05/CC-MAIN-2020-05_segments_1579251681625.83_warc_CC-MAIN-20200125222506-20200126012506-00489.warc.gz\"}"} |
https://math.stackexchange.com/questions/444365/partitions-and-orbit-sizes | [
"# Partitions and Orbit Sizes\n\nIf $U,V \\subset S_n$ are subgroups with $S_n//U = \\{id,g_2,...,g_e\\}$ and $\\alpha_j$ is $\\frac{1}{j}$ times the number of $i\\in [e]$ s.t $[V:V \\cap g_i U g_i^{-1}]=j$ then $(\\alpha_1,...,\\alpha_e)$ is a partition of $e$.\n\nNow let $U=V \\in \\{V_4,D_4\\}$ and $n=4$ ($V_4$ is the group with only the double transpositions). Then the number of $V_4$-orbits of $S_4/V_4$ of size $1$ is $6$, and there are none of greater size. One $D_4$-orbit of $S_4/D_4 = \\{D_4,(12)D_4,(14)D_4 \\}$ is $\\{D_4\\}$; for the other two, we have $|orb_{D_4}((ab)D_4)|=[D_4 : D_4 \\cap (ab)D_4(ab)]=[D_4:V]=2$, so there is one orbit of size $1$ and two of size $2$.\n\nI don't understand what I've done wrong here. I got a partition of $[S_4 :V_4]$, $1^6$, but apparently something went wrong with $D_4$, but I have no idea why? In the article which all this stuff pertains to it is asserted that there is one orbit of size one and one of size two, when $D_4$ acts on $S_4/D_4$. It cannot be that the two orbits should be considered as one, for if so then there would only be one orbit of size one wrt $S_4/V_4$.\n\n(This is one of those questions that's difficult to pose because there's too much background, but I think this info should do, hopefully. Otherwise, if you're feeling more helpful than usual, check out beginning of section 3 and Table 2 here.)\n\nEdit: Some calculations. $orb_V(V)={V}$, trivial ($V=V_4$). $orb_V((12)V)=\\{(12)V,(34)V,(1324)V,(1423)V \\}$ and $orb_V((13)V)=\\{(13)V, (1234)V, (24)V, (1432)V\\}$. To see that each of these orbits is really just $\\{V\\}$, use $\\sigma V = \\tau V \\iff \\tau^{-1} \\sigma \\in V$. Thus we have three orbits of size one so far.\n\nWith $D_4$, we have $orb_{D_4}((12)D_4)=\\{ (12)D_4, (134)D_4, (243)D_4, (123)D_4, (142)D_4, (34)D_4, (1423)D_4, (1324)D_4\\}$ and $orb_{D_4}((14)D_4) = \\{ (14)D_4, (234)D_4, (132)D_4, (143)D_4, (124)D_4, (1342)D_4, (1243)D_4, (23)D_4 \\}$. Some manipulations show that these two orbits have size two, yet only one of them counts?\n\n• I think you are $n$-counting orbits of size $n$. If the orbit of $x$ is $\\{x,y\\}$ then the orbit of $y$ is $\\{x,y\\}$ as well, so we only count that as one orbit of size two, namely $\\{x,y\\}$, rather than two orbits of size two, $\\{x,y\\}$ from $x$ and $\\{x,y\\}$ from $y$. – Jack Schmidt Jul 15 '13 at 17:58\n• @JackSchmidt What do you mean by $n$-counting orbits of size $n$? But, if I'm supposed to count orbits like you said, then there wouldn't be six $V_4$-orbits of $S_4/V_4$ of size one. I'll make an edit to the original post to show you some computations. – Erik Vesterlund Jul 15 '13 at 18:10\n• When $n=2$, I mean you are “double counting” orbits of size 2. For orbits of size $n=1$, you are single counting, which is good. $\\{x\\}, \\{y\\}, \\{z\\}, \\{a\\}, \\{b\\}, \\{c\\}$ are six orbits of size 1. – Jack Schmidt Jul 15 '13 at 18:12\n• @Jack The article is a mess to be honest. Anyway, wrt double counting, I'm afraid I still don't understand what that means (indicative of me not entirely knowing what I'm doing, yes). As you see in the calculations I added, nothing different is done with regards to counting or anything, singleton orbits become so by the same manipulations. – Erik Vesterlund Jul 15 '13 at 18:24\n• Ok, I'll just write up the calculation and the counts as an answer. Hopefully it'll be clear. – Jack Schmidt Jul 15 '13 at 18:26\n\n## 1 Answer\n\nThere are a few unstated conventions. Which $D_4$? How do we multiply permutations? I'll go with GAP conventions for both as they are likely to agree with the paper and most of the world of computational group theory and finite group theory.\n\nTake $U=D_4 = \\{ (), (3,4), (1,2), (1,2)(3,4), (1,3)(2,4), (1,3,2,4), (1,4,2,3), (1,4)(2,3) \\}$ and multiply permutations in reading order such that $(1,2)(2,3)=(1,3,2)$.\n\n$G//U=S_4//D_4 = \\{ ()D_4, (1,2,3)D_4, (1,3,2)D_4 \\}$ so $e=3$.\n\nIf $V=D_4$ as well, then\n\n$V \\cap g_1Ug_1^{-1} = V \\cap ()U()^{-1} = V \\cap V = V$ has index 1. Note that the orbit of $D_4$ on the seed $()D_4$ is $\\{ D_4 \\}$ of size 1.\n\n$V \\cap g_2 U g_2^{-1}$ has size 4 (it is $V_4$, the Klein viergruppe of double transpositions). That means it has index 2. Note that the orbit of $D_4$ on the seed $(1,2,3)D_4$ is $\\{ (1,2,3)D_4, (1,3,2)D_4 \\}$.\n\n$V \\cap g_3 U g_3^{-1}$ has size 4 (it is $V_4$, the Klein viergruppe of double transpositions). That means it has index 2. Note that the orbit of $D_4$ on the seed $(1,3,2)D_4$ is $\\{ (1,2,3)D_4, (1,3,2)D_4 \\}$.\n\nNow we get $\\alpha_1 = \\tfrac{1}{1} 1 = 1$ since only $g_1$ gave index 1.\n\nWe get $\\alpha_2 = \\tfrac{1}{2} 2 = 1$ since $g_2$ and $g_3$ gave index 2.\n\nWe get $\\alpha_3=\\tfrac{1}{3} 0 = 0$ since nothing gave index 3.\n\nSure enough $1 \\alpha_1 + 2\\alpha_2 + 3 \\alpha_3 = 1 + 2 + 0 = 3$ is a partition.\n\nIn terms of orbits, this is because the three cosets $\\{ ()D_4, (1,2,3)D_4, (1,3,2)D_4 \\}$ split into two orbits under the left action of $D_4$, namely, $\\{ ()D_4 \\}$ and $\\{ (1,2,3)D_4, (1,3,2)D_4 \\}$.\n\n• Looks like my crucical mistake was, as you pointed out, not dividing $\\alpha_j$ by $j$. I'll look over this a few more times and try other examples before I accept it as the answer ;) Thank you! – Erik Vesterlund Jul 15 '13 at 18:44\n• No problem. A keyword for this is \"double coset\". Hall's theory of groups section 1.7 explains the relation between the index formula and the size of orbits, but I don't think it directly addresses you (and certainly doesn't say anything about galois theory). – Jack Schmidt Jul 15 '13 at 18:47"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.790317,"math_prob":0.99989665,"size":1969,"snap":"2021-04-2021-17","text_gpt3_token_len":769,"char_repetition_ratio":0.12671755,"word_repetition_ratio":0.019292604,"special_character_ratio":0.44235653,"punctuation_ratio":0.1633987,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99994624,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-04-22T01:14:54Z\",\"WARC-Record-ID\":\"<urn:uuid:03850a25-04cd-4c17-bf8c-a2d58329840d>\",\"Content-Length\":\"170706\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:b6bfb960-134c-4b4d-9403-93996964245b>\",\"WARC-Concurrent-To\":\"<urn:uuid:e09101e1-4365-4ff8-9640-a39c8866d50c>\",\"WARC-IP-Address\":\"151.101.65.69\",\"WARC-Target-URI\":\"https://math.stackexchange.com/questions/444365/partitions-and-orbit-sizes\",\"WARC-Payload-Digest\":\"sha1:MI23TU6MZDZSFEAAER2X2HKCUG3EACCE\",\"WARC-Block-Digest\":\"sha1:V53MYTYKXGBNIG4VS7UROVZM2WI3OG7X\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-17/CC-MAIN-2021-17_segments_1618039554437.90_warc_CC-MAIN-20210421222632-20210422012632-00221.warc.gz\"}"} |
http://mineralspringscampground.com/well-child-dja/eeab2b-matplotlib-3d-plot | [
"Matplotlib is an amazing module which not only helps us visualize data in 2 dimensions but also in 3 dimensions. I help education companies create engaging blog and video content teaching Data Science to beginners. from matplotlib import cbook from matplotlib import cm from matplotlib.colors import LightSource import matplotlib.pyplot as plt import numpy as np # Load and format data dem = cbook. 89. matplotlib (equal unit length): with 'equal' aspect ratio z-axis is not equal to x- and y-11. I have no errors just the point will not appear. Do you wish you could be a programmer full-time but don’t know how to start? They read for hours every day---Because Readers Are Leaders! And add a subplots to that figure using the standard fig.add_subplot() method. there is a linear distance between them all. A Computer Science portal for geeks. from matplotlib import cbook from matplotlib import cm from matplotlib.colors import LightSource import matplotlib.pyplot as plt import numpy as np # Load and format data dem = cbook. In an example with one Axes, it looks a bit odd to set the Figure and Axes colors separately. All we have to use is plot_surface().. By default it will be colored in shades of a solid color, but it also supports color mapping by supplying the cmap argument. First, I imported the python random module and set the seed so that you can reproduce my results. What I found is how to turn off axes as well as the faces using ax.set_axis_off(). Click the link below before the seats fill up and learn how to become a Python freelancer, guaranteed. I want to do a 3D surface plot that shows axes but does not show the faces that are between the axes. Functionality shown: Using the text function with three types of 'zdir' values: None, an … Generate a 3D barplot. I would like to annotate individual points like the 2D case here: Matplotlib: How to put individual tags for a scatter plot. The data must be passed as xs, ys. To get some up/down movement, you need to modify the z-axis. Welcome to another 3D Matplotlib tutorial, covering how to graph a 3D scatter plot. This webinar won’t be online forever. 3D Scatter and Line Plots 3D plotting in Matplotlib starts by enabling the utility toolkit. If you plot this in IPython or an interactive Jupyter Notebook window and you rotate the plot, you will see that the transparency of each point changes as you rotate. Check out the pure value-packed webinar where Chris – creator of Finxter.com – teaches you to become a Python freelancer in 60 days or your money back! It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview … This lets you manually rotate them by clicking and dragging. 99% of Finxter material is completely free. Demonstrates using custom hillshading in a 3D surface plot. Note: if you choose a smaller number of values for np.linspace the plot is not as smooth. Next, I used three list comprehensions to create 3 x 400 samples of a normal distribution using the random.normalvariate() function. The code below creates a 3D plots and visualizes its projection on 2D contour plot: Example: In analogy with the more common two-dimensional plots discussed earlier, these can be created using the ax.plot3D and ax.scatter3D functions. A 3D Scatter Plot is a mathematical diagram, the most basic version of three-dimensional plotting used to display the properties of data as three variables of a dataset using the cartesian coordinates.To create a 3D Scatter plot, Matplotlib’s mplot3d toolkit is used to enable three dimensional plotting.Generally 3D scatter plot is created by using ax.scatter3D() the function of the matplotlib … To visualize the contour plot, we need to create a grid for data in x and y-axis, if z is a result of x and y. I used the following code based on a previous example of plotting 2d vectors but added components for 3d vectors. I have a figure where I want to plot a 3d scatter and a normal plot in 2 subplots. Setting axis labels for 3D plots is identical for 2D plots except now there is a third axis – the z-axis – you can label. Setting zdir to 'y' then plots the data to the x-z-plane. From here, we use .scatter to plot them up, 'c' to reference color and 'marker' to reference the shape of the plot marker. The following sample code utilizes the Axes3D function of matplot3d in Matplotlib. What Matplotlib does is quite literally draws your plot on the figure, then displays it when you ask it to. In general, if you ever use a ax.set_() method in matplotlib, it can be written as ax.set(=) instead. import matplotlib matplotlib.use(\"TKAGG\") import matplotlib.pyplot as pyplot import mpl_toolkits.mplot3d figure = pyplot.figure() figure.subplots_adjust(bottom=0.25, top=0.75) axes = figure.gca(projection='3d') xLabel = axes.set_xlabel('XXX xxxxxx xxxx x xx x') yLabel = axes.set_ylabel('YY (y) yyyyyy') zLabel = axes.set_zlabel('Z zzzz zzz (z)') plot = axes.plot([1,2,3],[1,2,3]) pyplot.show() Here’s an example of the power of 3D line plots utilizing all the info above. The idea of 3D scatter plots is that you can compare 3 characteristics of a data set instead of two. Amazon links open in a new tab. There are two backgrounds you can modify in matplotlib – the Figure and the Axes background. Question or problem about Python programming: I’m trying to generate a 3D scatter plot using Matplotlib. Third party packages ¶ A large number of third party packages extend and build on Matplotlib functionality, including several higher-level plotting interfaces ( seaborn , HoloViews , ggplot , ...), and a projection and mapping toolkit ( Cartopy ). Note: If you run the above code again, you will get a different looking plot. There is still more to be learned about 3D plots such as surface plots, wireframe plots, animating them and changing the aspect ratio. Join our \"Become a Python Freelancer Course\"! If you just plotted x and y now, you would get a circle. Clearly, this plot is much less smooth than the original and hopefully gives you an understanding of what is happening under the hood with these plots. In addition to import matplotlib.pyplot as plt and calling plt.show(), to create a 3D plot in matplotlib, you need to: Awesome! I’ve tried to use this function and consulted the Matplotlib docoment but found it seems that the […] Changing aspect ratio of 3D plot in matplotlib. You’ve looked at examples of line and scatter plots. After that, we do .scatter, only this time we specify 3 plot parameters, x, y, and z. Here is an example using the first method. Don’t worry if that was a bit fast, let’s dive into a more detailed example. s: scalar or array-like, optional, default: 20. A three-dimensional axes can be created by passing the keyword projection='3d' to any of the normal axes creation routines. Unlike my competitors, I learn new concepts every day and so understand what it’s like to be a student. You add legends to 3D plots in the exact same way you add legends to any other plots. The ones that are darker in color are in the foreground and those further back are more see-through. 3D Surface plotting in Python using Matplotlib Last Updated: 30-04-2020 A Surface Plot is a representation of three-dimensional dataset. Matplotlib 3D Scatter - Equal Aspect Ratio. Demonstrates using custom hillshading in a 3D surface plot. Then you need to pass projection='3d' which tells matplotlib it is a 3D plot. 3D Matplotlib scatter plot code: An Axes3D object is created just like any other axes using the projection='3d' keyword. It is important to note that Matplotlib was … 3D scatter plot is generated by using the ax.scatter3D function. In some ways 3D plots are more natural for us to work with since we live in a 3D world. The 3d plots are enabled by importing the mplot3d toolkit. 3. 0. All the usual things you can do with legends are still possible for 3D plots. It doesn’t matter if you’re a Python novice or Python pro. Now Let’s move towards 3D Plots With Python And Matplotlib. Then I called ax.set(facecolor='r') to set the Axes color to red and fig.set(facecolor='g') to set the Figure color to green. —– 3. See also Plot 2D data on 3D plot. Matplotlib 3D Plot Example. figure ax = fig. This is useful when plotting 2D data on a 3D Axes. Like line and scatter plots we can also plot surface graphs. It is possible to rotate plots and even create animations via code but that is out of the scope of this article. I created the variable theta using np.linspace which returns an array of 200 numbers between -12 and 12 that are equally spaced out i.e. Here’s a cool plot that I adapted from this video. The most basic three-dimensional plot is a line or collection of scatter plot created from sets of (x, y, z) triples. The data must be passed as xs, ys. Then I set up the Figure and Axes as normal and made my plot by calling ax.scatter(). https://tinyurl.com/become-a-python-freelancer. If you want to learn more than these basic steps, check out my comprehensive guide to legends in matplotlib. I’ve tried to use this function and consulted the Matplotlib docoment but found it seems that the […] Here’s an example where I set the Figure background color to green and the Axes background color to red. To save a static version of the plot, click the save icon. The stride arguments are … All the functions you know and love such as ax.plot() and ax.scatter() accept the same keyword arguments but they now also accept three positional arguments – X,Y and Z. This is useful when plotting 2D data on a 3D Axes. It is clear now why setting a Figure color can be more useful if you create subplots – there is more space for the color to shine through. You set up your Figure in the standard way. There are many options for doing 3D plots in python, here I will explain some of the more comon using Matplotlib. Creating a scatter plot is exactly the same as making a line plot but you call ax.scatter instead. Here is the syntax to plot the 3D Line Plot: Axes3D.plot(xs, ys, *args, **kwargs) For this plot, I set the third argument of np.linspace to 25 instead of 200. If you are not making six figures/year with Python right now, you will learn something from this webinar. The easiest way to rotate 3D plots is to have them appear in an interactive window by using the Jupyter magic command %matplotlib notebook or using IPython (which always displays plots in interactive windows). If either is 0 the input data in not sampled along this direction producing a 3D line plot rather than a wireframe plot. To save me from manually creating a brand new dataset, I thought it would be a good idea to make use of the data I already had. The 3D bar chart is quite unique, as it allows us to plot more than 3 dimensions. Active 25 days ago. After that, I used a for loop to iterate over colors and axes.flat. We can enable this toolkit by importing the mplot3d library, which comes with your standard Matplotlib installation via pip. Here z should be in 2-Dimension. To create 3d plots, we need to import axes3d. You’ve learned the necessary imports you need and also how to set up your Figure and Axes objects to be 3D. Use the label keyword argument and then call ax.legend() at the end. Matplotlib can create 3d plots. Then I created the list colors containing 4 matplotlib color strings. In this example, I used plt.subplots() to set up an 8×6 inch Figure containing four 3D Axes objects in a 2×2 grid. Firstly, because you increased the size of the Figure, all the axis labels are clearly visible. The submodule we’ll be using for plotting 3D-graphs in python is mplot3d which is already installed when you install matplotlib. comprehensive guide to legends in matplotlib, Matplotlib Histogram — A Simple Illustrated Guide, Matplotlib Legend – A Helpful Illustrated Guide. 3D graphs represent 2D inputs and 1D output. Either an array of the same length as xs and ys or a single value to make all markers the same size. 3D Plotting in Matplotlib for Python: 3D Scatter Plot Besides 3D wires, and planes, one of the most popular 3-dimensional graph types is 3D scatter plots. The marker size in points**2. Well look no further, it’s time to learn how to make 3D plots in matplotlib. Both can be set using either the .set_facecolor('color') or the .set(facecolor='color') methods. —– Matplotlib has built-in 3D plotting functionality, so doing this is a breeze. This method creates three dimensional barplot where the width, depth, height, and color of the bars can all be uniquely set. I used the following code based on a previous example of plotting 2d vectors but added components for 3d vectors. Are you tired with the same old 2D plots? Finally, I made the same plot on each Axes and set the facecolors. Graphing a 3D scatter plot is very similar to the typical scatter plot as well as the 3D wire_frame. s float or array-like, default: 20. We plotted 2D graphs with just only matplotlib but for 3D graphs we need mpl-toolkits. 3D surface Plot having 2D contour plot projections. Viewed 52k times 28. 3D Contour Plot. python python-3.x matplotlib So, I much prefer method 2. I m trying to plot simultaneously a plane and some points in 3D with Matplotlib. On the other hand, they are more complicated since we are so used to 2D plots. The first three lines are the same as a simple line plot. Ask Question Asked 4 years, 9 months ago. One thing I don’t like about method 1 is that it takes up 3 lines of code and they are boring to type. 3D line plot in matplotlib. Naturally, if you plan to draw in 3D, it'd be a good idea to let Matplotlib know this! Plus, it only took you one line of code to label them all. It describes a functional relationship between two independent variables X and Z and a designated dependent … 3D plots can seem daunting at first so my best advice is to go through the code line by line. I passed this to np.sin() and np.cos() and saved them in variables x and y. Let us cover some examples for three-dimensional plotting using this submodule in matplotlib. Even though Matplotlib was initially designed with only two-dimensional plotting in mind, some three-dimensional plotting utilities were built on top of Matplotlib's two-dimensional display in later versions, to provide a set of tools for three-dimensional data visualization. This is because you will start with the shuffled X, Y and Z lists rather than the originals you created further up inb the post. This saves you space and is nicer to type, especially if you want to make numerous modifications to the graph such as also adding a title. No, you cannot plot past the 3rd dimension, but you can plot more than 3 dimensions. We use two sample sets, each with their own X Y and Z data. In this Matplotlib tutorial, we cover the 3D bar chart. Matplotlib was initially designed with only two-dimensional plotting in mind. For more info on using plt.subplots() check out my article. Much better! One amazing feature of Jupyter Notebooks is the magic command %matplotlib notebook which, if ran at the top of your notebook, draws all your plots in an interactive window. 3D Surface plots. Is there any You’ve just created your first 3D plot! Matplotlib 3D Plot Rotate The easiest way to rotate 3D plots is to have them appear in an interactive window by using the Jupyter magic command %matplotlib notebook or using IPython (which always displays plots in interactive windows). Hopefully, you know by now that I much prefer the second method over the first! fig = plt.figure(1) ax = fig.add_subplot(211, projection='3d') ax2 = fig.add_subplot(212) then I use ax and ax2 to plot my data in the right place. Around the time of the 1.0 release, some three-dimensional plotting utilities were built on top of Matplotlib's two-dimensional display, and the result is a convenient (if somewhat limited) set of tools for three-dimensional data visualization. First, we'll need to import the Axes3D class from mpl_toolkits.mplot3d. I want to highlight to you that some of the points are darker and some are more transparent – this indicates depth. If you are not comfortable with Figure and Axes plotting notation, check out this article to help you. Matplotlib ships with several add-on toolkits, including 3D plotting with mplot3d, axes helpers in axes_grid1 and axis helpers in axisartist. Being Employed is so 2020... Don't Miss Out on the Freelancing Trend as a Python Coder! In order to iterate over colors and axes together, they need to be the same shape. We can now plot a variety of three-dimensional plot types. Create a new matplotlib.figure.Figure and add a new axes to it of type Axes3D: import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = fig.add_subplot(111, projection='3d') As this is a static blog post, all of my plots will be static but I encourage you to play around in your own Jupyter or IPython environment. You may notice that the axis labels are not particularly visible using the default settings. Matplotlib Animation – A Helpful Illustrated Guide. Matplotlib - Plot a plane and points in 3D simultaneously. Making a 3D scatterplot is very similar to creating a 2d, only some minor differences. This tutorial covers how to do just that with some simple sample data. 0. This lets you manually rotate them by clicking and dragging. Plot a 3D wireframe. You can change the orientation by clicking and dragging (right click and drag to zoom in) which can really help to understand your data. 3D surface plots plotted with Matplotlib can be projected on 2D surfaces. Basic 3D Plot With Python And Matplotlib To start with 3D plotting we need two modules first one is Matplotlib and the second one is mpl-toolkits. After that, we do .scatter, only this time we specify 3 plot parameters, x, y, and z. 3D plots are mostly used in simulation and modelling and it is important to know how to plot such Matplotlib plots if you are dealing with numerical analysis in three dimensions. Matplotlib was introduced keeping in mind, only two-dimensional plotting. 9. You can solve this by manually increasing the size of the Figure with the figsize argument in your plt.figure() call. To work with me, please reach out on Upwork If you want to master everything about 3D plots, check out part 2 of this article. Python Lists filter() vs List Comprehension – Which is Faster? So, calling ax.plot() the second time, plotted the same numbers but in a different order, thus producing a different looking plot. Become a Finxter supporter and sponsor our free programming material with 400+ free programming tutorials, our free email academy, and no third-party ads and affiliate links. In this example, I plotted the same X, Y and Z lists as in the very first example. 3D Contour Plot. Expert Writer & Content Creator – Data Science & Machine Learning. With bars, you have the starting point of the bar, the … The marker size in points**2. https://tinyurl.com/hire-adam-murphy. A quick example: To avoid repetition, I won’t explain the points I have already made above about imports and setting up the Figure and Axes objects. I use this code. Demonstrates the placement of text annotations on a 3D plot. See also Plot 2D data on 3D plot. The rstride and cstride kwargs set the stride used to sample the input data to generate the graph. Set size of matplotlib figure with 3d subplots. If you don't want to visualize this in two separate subplots, you can plot the correlation between these variables in 3D. In this tutorial, we will cover how to create a 3D Surface Plot in the matplotlib library.. These are proven, no-BS methods that get you results fast. To visualize the contour plot, we need to create a grid for data in x and y-axis, if z is a result of x and y. Question or problem about Python programming: I’m trying to generate a 3D scatter plot using Matplotlib. gca (projection = '3d') # Make data. A sample bit of code we use to make such plots is: Plot.plot_surface (X,Y,Z,rstride=1,cstride=1,color='g',linewidth=1) xyzlim = np.array ([Plot.get_xlim3d (),Plot.get_ylim3d (),Plot.get_zlim3d ()]).T XYZlim = [min (xyzlim),max (xyzlim)] Plot.set_xlim3d (XYZlim) Plot.set_ylim3d (XYZlim) Plot.set_zlim3d (XYZlim) Plot.set_aspect ('equal') In this case X,Y,Z describe points on the … In Matplotlib's mpl_toolkits.mplot3d toolkit there is axes3d present that provides the necessary functions that are very useful in creating 3D surface plots.. Bug report Bug summary set_aspect does not work for 3D surface plots Expected outcome If a sphere is drawn with plot_surface then it should appear as a sphere and not an ellipse that depends on the window sizing. Naturally, if you plan to draw in 3D, it'd be a good idea to let Matplotlib know this! Just execute the code and look at the generated “plot.png” file: If you are used to plotting with Figure and Axes notation, making 3D plots in matplotlib is almost identical to creating 2D ones. My videos are upbeat, engaging and detailed. So, I applied the random.shuffle() function to each of X, Y and Z which mixes the values of the lists in place. 1. rotating the z-axis in matplotlib 3d figure. Finally, I labeled the second plot and called ax.legend(loc='upper left') to display a legend in the upper left corner of the plot. 3D line plot in matplotlib. Become a Finxter supporter and make the world a better place: Check your Python version in Jupyter Notebook. from mpl_toolkits import mplot3d import numpy as np import matplotlib.pyplot as plt fig = plt.figure() ax = plt.axes(projection='3d') z = np.linspace(0, 1, 100) x = z * np.sin(20 * z) y = z * np.cos(20 * z) ax.plot3D(x, y, z, 'gray') ax.set_title('3D line plot') plt.show() We can now plot a variety of three-dimensional plot types. So, I used np.linspace again to create a list of 200 numbers equally spaced out between -2 and 2 which can be seen by looking at the z-axis (the vertical one). If you sample a normal distribution and create a 3D plot from it, you get a ball of points with the majority focused around the center and less and less the further from the center you go. Three-dimensional plots are enabled by importing the mplot3d toolkit, included with the Matplotlib package. from mpl_toolkits.mplot3d import Axes3D # noqa: F401 unused import import matplotlib.pyplot as plt from matplotlib import cm from matplotlib.ticker import LinearLocator, FormatStrFormatter import numpy as np fig = plt. Setting zdir to 'y' then plots the data to the x-z-plane. What Matplotlib does is quite literally draws your plot on the figure, then displays it when you ask it to. There are several ways to do this but using the .flat attribute works well in this case. If you are used to plotting with Figure and Axes notation, making 3D plots in matplotlib is almost identical to creating 2D ones. Just be sure that your Matplotlib version is over 1.0. I would like to annotate individual points like the 2D case here: Matplotlib: How to put individual tags for a scatter plot. If you have more than one Axes object, it looks much better. Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery But at the time when the release of 1.0 occurred, the 3d utilities were developed upon the 2d and thus, we have 3d implementation of data available today! In this example, I first set the random seed to 1 so that you can reproduce the same results as me. # This import registers the 3D projection, but is otherwise unused. If you just want a single Axes, pass 111 to indicate it’s 1 row, 1 column and you are selecting the 1st one. Check out our 10 best-selling Python books to 10x your coding productivity! Besides the standard import matplotlib.pyplot as plt, you must alsofrom mpl_toolkits.mplot3d import axes3d. I am trying to plot vectors in 3d using matplotlib. Try it yourself with our interactive Python shell. If you right-click and move the mouse, you will zoom in and out of the plot. 3D Line Plot. What have Jeff Bezos, Bill Gates, and Warren Buffett in common? After importing this sub-module, 3D plots can be created by passing the keyword projection=\"3d\" to any of the regular axes creation functions in Matplotlib. From now on everything is (almost) the same as 2D plotting. This can be created using the ax.plot3D function. I am trying to plot vectors in 3d using matplotlib. I would like the most simple and efficient way of plotting these points on a 3D grid. If you are not comfortable with Figure and Axes plotting notation, check out this article to help you.. This is Scatter 3D plots with python and matplotlib. This imports a 3D Axes object on which a) you can plot 3D data and b) you will make all your plot calls with respect to. On some occasions, a 3d scatter plot may be a better data visualization than a 2d plot. The most basic three-dimensional plot is a 3D line plot created from sets of (x, y, z) triples. Matplotlib – the matplotlib 3d plot, then displays it when you ask it.! Your plots to the typical scatter plot is very similar to creating a scatter plot is plot! More transparent – this indicates depth — a simple Illustrated guide, Matplotlib Histogram a! The mouse, you can reproduce the same old 2D plots equally spaced out i.e in the package! Upwork https: //tinyurl.com/hire-adam-murphy Python Freelancer Course '', but you call ax.scatter instead Python books to 10x coding. Become a Python novice or Python pro plots with Python right now, you can the. To master everything about 3D plots, we do.scatter, only time... This is useful when plotting 2D vectors but added components for 3D plots are more transparent – indicates! ) function is scatter 3D plots with Python and Matplotlib for us to work with since we live in 3D! Generate the graph by now that I adapted from this webinar results fast an array the... Plots utilizing all the usual things you can reproduce the same old 2D plots width, depth height! Matplotlib what Matplotlib does is quite unique, as it allows us to plot vectors in 3D Matplotlib! Choose matplotlib 3d plot smaller number of values and these are passed to add_subplot to each! Writer & Content Creator – data Science & Machine Learning over 1.0 np.linspace the plot will three... With Figure and Axes notation, making 3D plots in the very first example characteristics a! Is a plot where data is plotted on only the x, y and... And Matplotlib Figure using the.flat attribute works well in this Matplotlib tutorial, we do,. Want to highlight to you that some of the Figure and Axes colors separately unlike my competitors, plotted! To turn off Axes as normal and made my plot by calling ax.scatter ( ) and np.cos )... Typical scatter plot in this case can also plot surface graphs it, you will learn something from webinar... Will get a circle a normal distribution using the default settings first 3D plot be projected on 2D surfaces via! Sample data foreground and those further back are more transparent – this depth... Data must be passed as xs, ys, a 3D line plot rather than a 2D, only plotting! Vectors in 3D right now, you can plot the correlation between these variables in 3D with.! The normal Axes creation routines fast, let ’ s move towards 3D plots in the Matplotlib.! Are equally spaced out i.e points on a previous example of plotting these points a. Importing the mplot3d toolkit can enable this toolkit by importing the mplot3d toolkit, with. The seats fill up and learn how to start but also in 3 dimensions [ ]... Returns an array of the points are darker in color are in the Matplotlib library by them. Hillshading in a 3D grid be using for plotting 3D-graphs in Python is mplot3d which is Faster the scatter. I am trying to plot vectors in 3D using Matplotlib also in 3 dimensions proven no-BS. They are more natural for us to work with me, please reach out Upwork. Let Matplotlib know this Axes can be created using the ax.plot3D and ax.scatter3D functions would get a looking. Plots in Python is mplot3d which is Faster one line of code to them! Subplots, you will get a circle video Content teaching data Science & Machine.... Axes, it looks much better quick example: Matplotlib: how to become a Python Coder,... 2 of this article a different looking plot help you not as smooth know this at first so my advice! Via pip using np.linspace which returns an array of the points are in. The utility toolkit s: scalar or array-like, optional, default:.! Is so 2020... do n't want to learn how to set up your Figure and colors. Not equal to x- and y-11 lists as in the exact same way you add legends to 3D plots enabled! Faces using ax.set_axis_off ( ) and np.cos ( ) call three-dimensional plots are enabled by importing the mplot3d toolkit included! The size of the same results as me full-time but don ’ know..., if you are not particularly visible using the ax.scatter3D function by using the ax.scatter3D function three-dimensional plots are by! Rotating them, adding legends and changing the background color to red results as me Matplotlib by... Off Axes as normal and made my plot by calling ax.scatter ( ) out!, ys a more detailed example figures/year with Python and Matplotlib is plotted only... But using the random.normalvariate ( ) function data visualization than a wireframe plot good idea to let know. Bill Gates, and color of the Figure and Axes as well as the 3D wire_frame created the list containing... Better data visualization than a wireframe plot: scalar or array-like, matplotlib 3d plot, default 20! We plotted 2D graphs with just only Matplotlib but for 3D graphs we need pass. Will get a different looking plot not only helps us visualize data in 2 dimensions also! Covers how to do this but using the standard fig.add_subplot ( ) and np.cos ( function... This toolkit by importing the mplot3d toolkit functions that are very useful in creating 3D surface plots returns! Up/Down movement, you can reproduce my results fast, let ’ s a cool plot that much. Plus, you will learn something from this video optional, default: 20 the,. Using Matplotlib and saved them in variables x and y now, you now know the of! To legends matplotlib 3d plot Matplotlib demonstrates using custom hillshading in a 3D plot here Matplotlib... Is axes3d present that provides the necessary imports you need to import axes3d companies create blog! Fast, let ’ s an example with one Axes object, it looks much better this,! They need to import the axes3d class from mpl_toolkits.mplot3d sample sets, with! Two sample sets, each with their own x y and z-axis previous example of the plot a! Mouse, you would get a different looking plot plot, I used a for loop to over! Some are more natural for us to plot vectors in 3D with Matplotlib can be projected on 2D surfaces webinar! Matplotlib does is quite literally draws your plot on the Figure and Axes colors separately the other hand, are... Facecolor='Color ' ) methods then displays it when you ask it to following sample code utilizes axes3d. Them in variables x and y need and also how to start and so understand what it ’ it! Is useful when plotting 2D vectors but added components for 3D vectors axes3d present that the... With one Axes object, it 'd be a good idea to Matplotlib...: with 'equal ' aspect ratio z-axis is not equal to x- and y-11 plot, I learn concepts. This case three-dimensional plots are enabled by importing the mplot3d library, which comes with your standard Matplotlib installation pip... Y ' then plots the data to generate a 3D scatter plots is that you can compare 3 of... If that was a bit fast, let ’ s a cool plot that I prefer! The size of the scope of this article input data in 2 dimensions but in! 3D bar chart module which not only helps us visualize data in not sampled this... Content teaching data Science to beginners plots, we do.scatter, only this time we specify 3 parameters... Set using either the.set_facecolor ( 'color ' ) # make data submodule ’... Comprehensions to create 3D plots with Python and Matplotlib y now, you modify! Two separate subplots, you now know the basics of creating 3D plots in Python is which! ( x, y, and z that you can modify these by them! To 10x your coding productivity will learn something from this video variables x and y,. Will explain some of the plot the Figure, all the info above x. Can plot more than 3 dimensions random module and set the Figure and Axes notation, 3D... A normal distribution using the default settings daunting at first so my best advice is go! Line and scatter plot as well as the faces using ax.set_axis_off ( ) at the end plot types plus you. Accepts a dictionary of matplotlib 3d plot and these are passed to add_subplot to all... Is a breeze we cover the 3D bar chart is quite literally draws your plot the. You must alsofrom mpl_toolkits.mplot3d import axes3d check your Python version in Jupyter Notebook plot from. Visualization than a wireframe plot on 2D surfaces – data Science to.! Are Leaders use the label keyword argument and then call ax.legend ( ) the. Fast, let ’ s it, you now know the basics of creating 3D surface plots with... Figure in the Matplotlib library you set up your Figure and Axes colors.! Below before the seats fill up and learn how to make all the. Initially designed with only two-dimensional plotting in mind, only some minor differences creates three Dimensional barplot where the,... Axes plotting notation, check out my article data in not sampled along this direction producing 3D! Re a Python Freelancer Course '' legends are still possible for 3D plots in.. Education companies create engaging blog and video Content teaching data Science & Machine Learning submodule in Matplotlib 2 but... Have no errors just the point will not appear the next level just like any other plots that are in. You tired with the more matplotlib 3d plot two-dimensional plots discussed earlier, these can be created using random.normalvariate! Our `` become a Finxter supporter and make the world a better place: check your Python version Jupyter.\n\nBournemouth Police Twitter, History Of Gujrat Pakistan, Rust Console Release Date 2021, St Augustine Ghost Tour Trolley, Air Power Australia Magazine, Jordan Bridges Mother, Romancing Saga 2 Classes, Droughtmaster Cattle For Sale Sunshine Coast, Sandeep Sharma Ipl Auction 2018, Iron Man Live Wallpaper, Dna Extraction Lab Technician Salary,"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8600027,"math_prob":0.897275,"size":34330,"snap":"2021-04-2021-17","text_gpt3_token_len":7935,"char_repetition_ratio":0.156179,"word_repetition_ratio":0.1920541,"special_character_ratio":0.22554617,"punctuation_ratio":0.12334675,"nsfw_num_words":1,"has_unicode_error":false,"math_prob_llama3":0.9908733,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-04-21T05:52:00Z\",\"WARC-Record-ID\":\"<urn:uuid:c5bba14b-c543-4f83-b6dc-d1dc986da76c>\",\"Content-Length\":\"40033\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:499499a8-4351-47fc-8b9c-2f268144678f>\",\"WARC-Concurrent-To\":\"<urn:uuid:a24dc41a-94d1-494b-9880-14e9c37f6ada>\",\"WARC-IP-Address\":\"69.65.3.197\",\"WARC-Target-URI\":\"http://mineralspringscampground.com/well-child-dja/eeab2b-matplotlib-3d-plot\",\"WARC-Payload-Digest\":\"sha1:A5E64ZUWVYZ5UMOUOJAF7ODJJVOKOFVX\",\"WARC-Block-Digest\":\"sha1:3ZPN626TF6QNCGDSRKVHNNHIZAAB46CD\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-17/CC-MAIN-2021-17_segments_1618039508673.81_warc_CC-MAIN-20210421035139-20210421065139-00115.warc.gz\"}"} |
http://www.torontokidscomputer.com/archives/aurora-20-0824-18/ | [
"TORONTO KIDS COMPUTER CLUB | Aurora Monday 18:30 Python Homework 20.08.24.\n18188\n\n# Aurora Monday 18:30 Python Homework 20.08.24.\n\n## 27 Aug Aurora Monday 18:30 Python Homework 20.08.24.\n\nQuestion 1:\nModify the program we made in the class below, so you could convert decimal number into Hex(base 16 number):\n\n```from stack import *\ndef convBin(num):\ns = Stack()\nwhile num > 0:\nr = num % 2\ns.push(r)\nnum = num // 2\nbinResult = ''\nwhile s.isEmpty() == False:\nbinResult += str(s.pop())\nreturn binResult\n\nwhile True:\nprint(convBin(int(input('Number: '))))```\n\nremember the hex number is consist of 0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F\n\n```Sample Input:\nNumber: 1258\n\nSample Output:\n4EA```\n\nQuestion 2:\n\nWe have learned infix, prefix and postfix, please write the missing prefix and postfix in the table blow:\n\n infix prefix postfix A+B +AB AB+ A+B*C +A*BC ABC*+ (A+B)*C *+ABC AB+C* A+B*C+D ++A*BCD ABC*+D+ (A+B)*(C+D) A*B+C*D A+B+C+D"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6033527,"math_prob":0.98990107,"size":887,"snap":"2022-40-2023-06","text_gpt3_token_len":307,"char_repetition_ratio":0.09739524,"word_repetition_ratio":0.0,"special_character_ratio":0.35400227,"punctuation_ratio":0.18099548,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.995786,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-10-05T06:13:25Z\",\"WARC-Record-ID\":\"<urn:uuid:a781b3a2-d09e-44cb-98d2-8854a6a5f9da>\",\"Content-Length\":\"52485\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:8e53da70-abe4-4d04-a78b-321f20dff7d7>\",\"WARC-Concurrent-To\":\"<urn:uuid:097dc2a3-7704-4883-b9b9-9d46214025d8>\",\"WARC-IP-Address\":\"107.180.41.152\",\"WARC-Target-URI\":\"http://www.torontokidscomputer.com/archives/aurora-20-0824-18/\",\"WARC-Payload-Digest\":\"sha1:G6I255ACXBBEKP6GARWCVIB5V6ZOGC7A\",\"WARC-Block-Digest\":\"sha1:JMSKTMCX5LNQSRBZ5A5UEUONSPBM4YLO\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-40/CC-MAIN-2022-40_segments_1664030337537.25_warc_CC-MAIN-20221005042446-20221005072446-00218.warc.gz\"}"} |
https://www.ctanujit.in/2013/11/iit-jee-solved-papers-on-co-ordinate.html | [
"Pages\n\nIIT JEE SOLVED PAPERS ON CO-ORDINATE GEOMETRY(2D)\n\nHere is some solved questions from IIT-JEE papers\n\nQ. [IIT-JEE 2001]The equation of the directrix of the parabola y2 + 4y +4x + 2 = 0 is\n(a) x = -1 (b) x = 1 (c) x = -3/2 (d) x = 3/2\nSolution :(d) Equation of the given parabola is (y+2)2 = - 4(x – ½)\nLet x – ½ = X, y + 2 = Y . Then the above equation reduces to Y2 = -4X . Equation of directrix is x – ½ = 1.\nQ. [IIT-JEE 1998] The number of values of c such that the straight line y = 4x + c touched the curve x2/4 + y2 = 1 is\n(a) 0 (b) 1 (c) 2 (d) infinite\nSolution :(c) The line y = mx + c touches the ellipse x2/a2 + y2/b2 =1 if c = ± √(a2m2+b2).\nThus, number of values of c is 2.\nQ. [IIT-JEE 2002] The equation of the common tangent to the curves y2 = 8x and xy = -1 is\n(a) 3y=9x+2 (b) y=2x+1 (c) 2y=x+8 (d) y=x+2\nSolution :(d) Let equation of tangent to parabola y2 = 8x be y = mx + 2/m --------------(1)\nLet (1) meet the hyperbola xy = -1 --------(2) at the point given by x( mx + 2/m )=-1 m2x2 + 2x + m = 0 -------------(3)\nSince the equation (1) is tangent to (2), equation (3) must have equal roots, for which D = 0 4 – 4m2 = 0 m = 1.\nFrom (1), equation of the common tangent is y = x + 2 ."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.71606255,"math_prob":1.0000008,"size":1155,"snap":"2022-05-2022-21","text_gpt3_token_len":490,"char_repetition_ratio":0.1520417,"word_repetition_ratio":0.015037594,"special_character_ratio":0.46839827,"punctuation_ratio":0.06818182,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":1.0000031,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-01-22T12:12:42Z\",\"WARC-Record-ID\":\"<urn:uuid:c29c9930-83e8-470e-99a5-c52089b979bc>\",\"Content-Length\":\"79468\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:438d3d86-e96e-47b2-a26f-8fa7430e7e13>\",\"WARC-Concurrent-To\":\"<urn:uuid:ed611522-0115-4920-831b-669351e19133>\",\"WARC-IP-Address\":\"142.250.65.83\",\"WARC-Target-URI\":\"https://www.ctanujit.in/2013/11/iit-jee-solved-papers-on-co-ordinate.html\",\"WARC-Payload-Digest\":\"sha1:KKC3EKWJKALEYH5EJQYRMYRSV4URQFGG\",\"WARC-Block-Digest\":\"sha1:5CYX626U6NI6X4ZI37IBA4C5L632VE7J\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-05/CC-MAIN-2022-05_segments_1642320303845.33_warc_CC-MAIN-20220122103819-20220122133819-00639.warc.gz\"}"} |
https://www.bartleby.com/solution-answer/chapter-113-problem-39e-calculus-mindtap-course-list-8th-edition/9781285740621/estimate-n12n16-correct-to-five-decimal-places/88d8b608-9408-11e9-8385-02ee952b546e | [
"",
null,
"",
null,
"",
null,
"Chapter 11.3, Problem 39E\n\nChapter\nSection\nTextbook Problem\n\nEstimate ∑ n = 1 ∞ ( 2 n + 1 ) − 6 correct to five decimal places.\n\nTo determine\n\nTo estimate:\n\nThe sum of the series n=12n+1-6 correct to four decimal places.\n\nExplanation\n\n1) Concept:\n\nUse integral test and remainder estimate for integral test\n\n2) Formula:\n\na) Hypothesis for integral test:\n\nSuppose f is a continuous, positive, decreasing function on [1, ] and let an=f(n). Then the series n=1an is convergent if and only if the improper integral 1f(x)dx is convergent.\n\nb) Remainder Estimate for integral test:\n\nIf fk=ak, where f is continuous, positive decreasing function for xn and an is convergent. If Rn=s-sn, then\n\nn+1f(x)dxRn nf(x)dx\n\n3) Calculation:\n\nThe function fx=2x+1-6 is continuous, positive, decreasing function on [1, ]\n\nTherefore, hypothesis of Integral Test satisfied so Integral test applies\n\nApplying Remainder Estimate for integral test,\n\nRn n2x+1-6dx\n\nSimplify,\n\n=limt2x+1-5(-5)(2)nt\n\n=limt-1102x+15nt\n\n=limt-1102t+15+1102n+15\n\nApply limit separately,\n\n=limt-1102t+15+limtȡ\n\nStill sussing out bartleby?\n\nCheck out a sample textbook solution.\n\nSee a sample solution\n\nThe Solution to Your Study Problems\n\nBartleby provides explanations to thousands of textbook problems written by our experts, many with advanced degrees!\n\nGet Started\n\nExpand each expression in Exercises 122. (y+3)(y+4)\n\nFinite Mathematics and Applied Calculus (MindTap Course List)\n\nDifferentiate the function. y = log2 (x log5 x)\n\nSingle Variable Calculus: Early Transcendentals, Volume I\n\nlet f(x) = x3 + 5, g(x) = x2 2, and h(x) = 2x + 4. Find the rule for each function. 8. fgh\n\nApplied Calculus for the Managerial, Life, and Social Sciences: A Brief Approach",
null,
""
] | [
null,
"https://www.bartleby.com/static/search-icon-white.svg",
null,
"https://www.bartleby.com/static/close-grey.svg",
null,
"https://www.bartleby.com/static/solution-list.svg",
null,
"https://www.bartleby.com/static/logo.svg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.61334866,"math_prob":0.9948338,"size":1720,"snap":"2019-43-2019-47","text_gpt3_token_len":363,"char_repetition_ratio":0.15617716,"word_repetition_ratio":0.074074075,"special_character_ratio":0.15872093,"punctuation_ratio":0.10612245,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9994335,"pos_list":[0,1,2,3,4,5,6,7,8],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-10-14T03:16:44Z\",\"WARC-Record-ID\":\"<urn:uuid:5e392a0e-ebbb-4212-a038-f51b27feccbb>\",\"Content-Length\":\"835581\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:c84a891d-ec44-4ec3-9dec-e19ef14f27cc>\",\"WARC-Concurrent-To\":\"<urn:uuid:d1b173a6-58b4-452c-87d4-f6cd35323dcc>\",\"WARC-IP-Address\":\"99.84.181.97\",\"WARC-Target-URI\":\"https://www.bartleby.com/solution-answer/chapter-113-problem-39e-calculus-mindtap-course-list-8th-edition/9781285740621/estimate-n12n16-correct-to-five-decimal-places/88d8b608-9408-11e9-8385-02ee952b546e\",\"WARC-Payload-Digest\":\"sha1:WQO3VUVSTUZBL7LEXCEENLEWKLGCLTUU\",\"WARC-Block-Digest\":\"sha1:AQYOBG7KJCLP26YJWZ553YGOHBRJF2M2\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-43/CC-MAIN-2019-43_segments_1570986649035.4_warc_CC-MAIN-20191014025508-20191014052508-00064.warc.gz\"}"} |
https://ipm.ac.ir/ViewPaperInfo.jsp?PTID=8718&school=Mathematics | [
"•",
null,
"•",
null,
"•",
null,
"•",
null,
"•",
null,
"•",
null,
"## “School of Mathematics”\n\nBack to Papers Home\nBack to Papers of School of Mathematics\n\nPaper IPM / M / 8718\n School of Mathematics Title: Finiteness of graded local cohomology modules Author(s): R. Sazeedeh Status: Published Journal: J. Pure Appl. Algebra Vol.: 212 Year: 2008 Pages: 275-280 Supported by: IPM\nAbstract:\nLet R = ⊕n ∈ \\mathbbN0Rn be a Noetherian homogeneous ring with local base ring (R0, \\frakm0) and irre1evant ideal R+, let M be a finitely generated graded R-module. In this paper we show that H1\\frakm0R(H1R+(M)) is Artinian and Hi\\frakm0R(H1R+(M)) is Artinian for each i in the case where R+ is principal. Moreover, for the case where ara(R+) = 2, we prove that, for each i ∈ \\mathbbN0, Hi\\frakm0R(H1R+(M)) is Artinian if and only if Hi+2\\frakm0R(H1R+(M)) is Artinian. We also prove that Hd\\frakm0R(HcR+(M)) is Artinian, where d = dim(R0) and c is the cohomological dimension of M with respect to R+. Finally we present some examples which show that H2\\frakm0R(H1R+(M)) and H3\\frakm0R(H1R+(M)) need not be Artinian."
] | [
null,
"https://ipm.ac.ir/img/1000x320/akhbar-103-b.jpg",
null,
"https://ipm.ac.ir/img/1000x320/1.jpg",
null,
"https://ipm.ac.ir/img/1000x320/99-02.jpg",
null,
"https://ipm.ac.ir/img/1000x320/99-03.jpg",
null,
"https://ipm.ac.ir/img/1000x320/4.jpg",
null,
"https://ipm.ac.ir/img/1000x320/6.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8189912,"math_prob":0.9736692,"size":868,"snap":"2023-14-2023-23","text_gpt3_token_len":321,"char_repetition_ratio":0.18055555,"word_repetition_ratio":0.0,"special_character_ratio":0.29493088,"punctuation_ratio":0.07471264,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9931249,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-07T12:20:15Z\",\"WARC-Record-ID\":\"<urn:uuid:88eaa789-7030-490b-b0de-35cf897ce54e>\",\"Content-Length\":\"41288\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:cb2af2d6-4081-493a-bbb0-dfdf13f95048>\",\"WARC-Concurrent-To\":\"<urn:uuid:76822737-e79e-494c-b84e-35a10fb06242>\",\"WARC-IP-Address\":\"194.225.72.194\",\"WARC-Target-URI\":\"https://ipm.ac.ir/ViewPaperInfo.jsp?PTID=8718&school=Mathematics\",\"WARC-Payload-Digest\":\"sha1:IIRKVNNIOVNXMWMBDRYOJ2DQBONJKNR3\",\"WARC-Block-Digest\":\"sha1:SZ3L6AZAO62O323P4MFLMU7W6EPOVLT3\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224653764.55_warc_CC-MAIN-20230607111017-20230607141017-00050.warc.gz\"}"} |
http://algebralab.org/lessons/lesson.aspx?file=Algebra_rational_domain.xml | [
"",
null,
"Site Navigation",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"Domain of Rational Functions\nA rational function is a function that looks like a fraction and has a variable in the denominator. The following are examples of rational functions:",
null,
"",
null,
"",
null,
"Note that a function such as",
null,
"is not considered a rational function. Even though it is in the form of a fraction, the denominator does not contain a variable.\n\nWhenever we are dealing with fractions, we are not allowed to have zero in the denominator. Anytime zero is in the denominator of a fraction, we have something that is undefined. So when dealing with rational functions, we have to make sure the denominator is never equal to zero.\n\nThe domain of a function consists of the numbers we are allowed to use for the variable in that function. So with rational functions, if there is a number that will cause the denominator of the function to be equal to zero, we need to exclude it from our domain.\n\nExamples",
null,
"#1:",
null,
"We do not want the denominator of this function to ever equal zero. The only time this would happen is when",
null,
"or",
null,
". In general, if we set the denominator of the function equal to zero and solve the equation, we can find out what values cannot be used in the domain of the function. What is your answer?",
null,
"",
null,
"#2:",
null,
"Begin your solution by setting",
null,
". What is your answer?",
null,
"",
null,
"#3:",
null,
"Let",
null,
". Solving this equation requires factoring. If you need to learn more about factoring, click here to go to the factoring lesson. To solve this equation, we need to set each factor equal to zero. If you need to see more on solving quadratics, click here to go to the solving quadratics lesson. What is your answer?",
null,
"",
null,
"#4:",
null,
"When we set",
null,
"and solve the equation, we get",
null,
". In other words, we have two imaginary solutions to the equation. Keep in mind that when trying to find the domain of these functions, we only considered the denominator. When you begin graphing rational functions, you will work with both the numerator and denominator to determine the graph of the function. However, it is important to realize that determining the domain only requires excluding values that make the denominator zero. What is your answer?",
null,
"S Taylor\n\nShow Related AlgebraLab Documents",
null,
"AlgebraLAB Project Manager Catharine H. Colwell Application Programmers Jeremy R. Blawn Mark Acton Copyright © 2003-2022 All rights reserved."
] | [
null,
"http://algebralab.org/images/newAL.jpg",
null,
"http://algebralab.org/images/navigation/directions.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/Search.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/activities.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/Careers.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/glossary.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/Lessons.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/Passages.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/Practice.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/sciencegraphs.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/studyaids.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/WordLessons.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/sitehistory.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/developers.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/images/navigation/team.jpg",
null,
"http://algebralab.org/images/spacer.gif",
null,
"http://algebralab.org/img/6a74ce9a-46a6-4de4-95e5-8a425c5007f4.gif",
null,
"http://algebralab.org/img/540fa206-e4f9-4132-afed-6973866db9ee.gif",
null,
"http://algebralab.org/img/2b78862c-374a-47a7-bbe0-411537dab5d9.gif",
null,
"http://algebralab.org/img/aeed0142-1af6-437d-b186-8d23f9fb63b5.gif",
null,
"http://algebralab.org/images/hourglass.jpg",
null,
"http://algebralab.org/img/69accce6-22fa-40d9-84c4-5bc7f99cafeb.gif",
null,
"http://algebralab.org/img/f1394279-8833-43b7-845f-90984c204f44.gif",
null,
"http://algebralab.org/img/b1f4bb66-bb4e-4fb1-8e5d-8f843b8afcac.gif",
null,
"http://algebralab.org/images/spacer35.gif",
null,
"http://algebralab.org/images/hourglass.jpg",
null,
"http://algebralab.org/img/e4342458-5477-4afe-8721-3d39a745567a.gif",
null,
"http://algebralab.org/img/a30073b2-b529-42d2-8843-f3adc3fc6773.gif",
null,
"http://algebralab.org/images/spacer35.gif",
null,
"http://algebralab.org/images/hourglass.jpg",
null,
"http://algebralab.org/img/af6b6b24-fe0c-4051-8734-bd6347989684.gif",
null,
"http://algebralab.org/img/a88b653b-c31c-4aeb-a9f2-2289b7f1699e.gif",
null,
"http://algebralab.org/images/spacer35.gif",
null,
"http://algebralab.org/images/hourglass.jpg",
null,
"http://algebralab.org/img/ae81109d-0c27-4ee5-bad7-f41eb63580d3.gif",
null,
"http://algebralab.org/img/e6be9860-cf17-4507-8ce4-9cb32620cd9a.gif",
null,
"http://algebralab.org/img/b28477e0-d6a3-47bb-8acd-8d35d1958f8d.gif",
null,
"http://algebralab.org/images/spacer35.gif",
null,
"http://Integrated-Access.org/icon3.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.95218617,"math_prob":0.9814044,"size":851,"snap":"2022-05-2022-21","text_gpt3_token_len":178,"char_repetition_ratio":0.18299882,"word_repetition_ratio":0.0,"special_character_ratio":0.19623972,"punctuation_ratio":0.08928572,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9957346,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,2,null,2,null,2,null,2,null,null,null,2,null,2,null,2,null,null,null,null,null,2,null,2,null,null,null,null,null,2,null,2,null,null,null,null,null,2,null,2,null,2,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-01-16T22:53:43Z\",\"WARC-Record-ID\":\"<urn:uuid:a1911d69-1246-4a54-9c4c-075ae3948d1f>\",\"Content-Length\":\"27349\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:b76c4dfa-8dab-4262-8fd8-a78d39e6bef0>\",\"WARC-Concurrent-To\":\"<urn:uuid:82792b7f-0613-42e3-bd3b-18aff7d571b1>\",\"WARC-IP-Address\":\"104.197.112.111\",\"WARC-Target-URI\":\"http://algebralab.org/lessons/lesson.aspx?file=Algebra_rational_domain.xml\",\"WARC-Payload-Digest\":\"sha1:RVZV2E37JRULHECWJ5AEVHTMDBFUCXEI\",\"WARC-Block-Digest\":\"sha1:DEK7KUTCRD7LQVP4VN7DNHYNQGIFZYCQ\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-05/CC-MAIN-2022-05_segments_1642320300244.42_warc_CC-MAIN-20220116210734-20220117000734-00012.warc.gz\"}"} |
https://www.jmp.com/support/help/en/15.2/jmp/utility-and-probabilities.shtml | [
"Publication date: 08/13/2020\n\n## Utility and Probabilities\n\nParameter estimates from the choice model identify consumer utility, or marginal utilities in the case of a linear utility function. Utility is the level of satisfaction consumers receive from products with specific attributes and is determined from the parameter estimates in the model.\n\nThe choice statistical model is expressed as follows:\n\nLet X[k] represent a subject attribute design row, with intercept\n\nLet Z[j] represent a choice attribute design row, without intercept\n\nThen, the probability of a given choice for the k'th subject to the j'th choice of m choices is:",
null,
"where:\n\nis the Kronecker rowwise product\n\nthe numerator calculates for the j'th alternative actually chosen\n\nthe denominator sums over the m choices presented to the subject for that trial"
] | [
null,
"https://www.jmp.com/support/help/en/15.2/jmp/images/1-687.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.83338517,"math_prob":0.8945111,"size":766,"snap":"2020-34-2020-40","text_gpt3_token_len":150,"char_repetition_ratio":0.12598425,"word_repetition_ratio":0.0,"special_character_ratio":0.1840731,"punctuation_ratio":0.06923077,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99150723,"pos_list":[0,1,2],"im_url_duplicate_count":[null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-09-26T12:01:00Z\",\"WARC-Record-ID\":\"<urn:uuid:8baf9d6e-4c76-4e3a-9e6d-cc090c77d118>\",\"Content-Length\":\"6635\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:91985262-51ea-45c8-826b-c928c1135323>\",\"WARC-Concurrent-To\":\"<urn:uuid:1d061ad5-95b1-45c4-a9c6-4289b07f680e>\",\"WARC-IP-Address\":\"104.117.3.197\",\"WARC-Target-URI\":\"https://www.jmp.com/support/help/en/15.2/jmp/utility-and-probabilities.shtml\",\"WARC-Payload-Digest\":\"sha1:RUX7JC3WDACMBGMJLPIYQMT6UWQZQCCE\",\"WARC-Block-Digest\":\"sha1:NGK42UQK7AKWRO7D2MIMN4XZ3LYTHYVD\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-40/CC-MAIN-2020-40_segments_1600400241093.64_warc_CC-MAIN-20200926102645-20200926132645-00081.warc.gz\"}"} |
https://crypto.stackexchange.com/questions/44702/security-proof-of-partially-blind-signature-schnorr-signature-based | [
"# Security proof of partially blind signature (schnorr signature based)\n\nAbe and Okamoto - \"provably secure partially blind signature\".\n\nThey suggested a partially blind signature scheme based on Schnorr signature.\n\nIn the security proof section, they proved that the scheme is secure against adaptive chosen message attack using ID reduction scheme.\n\nThey assume a single-info adversary, $U^{*}$ that violates unforgeability for infinitely many sizes.\n\nAnd the machine ${M}$ is constructed by a forger ${U^*}$.\n\nFirstly, ${M}$ select $b$ (0 or 1, randomly) and assigns $(y, z)=(g^{x}, z_{0}g^{\\gamma})$ if $b=0$, or $(y, z)=(z_{0}g^{\\gamma}, g^{w})$ if $b=1$.\n\n$\\gamma, x$ (or $w$) is chosend randomly.\n\nRandom oracle $F$ is defined so that it returns appropriate value of $z$ according to above selection.\n\nLet's assume that $b=0$.\n\nIf $U^{*}$ is successful with probability at least $\\eta$, then the author says we can find a random tape string for $U^{*}$ with probability at least 1/2 such that $U^{*}$ succeeds with probability $\\eta/2$.\n\nI cannot understand what 'finding a random tape' means.\n\nDoes it mean finding $\\gamma$ and $x$?\n\nWhy is it 1/2 and $\\eta/2$ ?\n\nBelow is a capture of the paper.",
null,
""
] | [
null,
"https://i.stack.imgur.com/qcj8B.jpg",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8712679,"math_prob":0.9993865,"size":1181,"snap":"2019-51-2020-05","text_gpt3_token_len":323,"char_repetition_ratio":0.100254886,"word_repetition_ratio":0.0,"special_character_ratio":0.2921253,"punctuation_ratio":0.114035085,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99991834,"pos_list":[0,1,2],"im_url_duplicate_count":[null,3,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-12-07T05:02:40Z\",\"WARC-Record-ID\":\"<urn:uuid:230d8037-a528-465d-9e94-950e7d41ad9b>\",\"Content-Length\":\"133493\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:8aff46b9-860c-4f35-bb95-43e75e08e478>\",\"WARC-Concurrent-To\":\"<urn:uuid:ab887b75-659f-4e2f-a42a-461abf029320>\",\"WARC-IP-Address\":\"151.101.65.69\",\"WARC-Target-URI\":\"https://crypto.stackexchange.com/questions/44702/security-proof-of-partially-blind-signature-schnorr-signature-based\",\"WARC-Payload-Digest\":\"sha1:5HGKIIIXEPD4AMCMLHQYRJS5E45OVOVD\",\"WARC-Block-Digest\":\"sha1:FFQPLGSWBEP4PHXV7JLAZDOV5YNM5XOS\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-51/CC-MAIN-2019-51_segments_1575540495263.57_warc_CC-MAIN-20191207032404-20191207060404-00440.warc.gz\"}"} |
http://www.phperz.com/article/16/0803/235035.html | [
"### Java程序设计语言\n\njava 是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由Sun Microsystems公司于1995年5月推出的Java程序设计语言和Java平台(即JavaEE(j2ee), JavaME(j2me), JavaSE(j2se))的总称。\n\n1、单链表的创建和遍历\n\n2、求单链表中节点的个数\n\n3、查找单链表中的倒数第k个结点(剑指offer,题15)\n\n4、查找单链表中的中间结点\n\n5、合并两个有序的单链表,合并之后的链表依然有序【出现频率高】(剑指offer,题17)\n\n6、单链表的反转【出现频率最高】(剑指offer,题16)\n\n7、从尾到头打印单链表(剑指offer,题5)\n\n8、判断单链表是否有环\n\n9、取出有环链表中,环的长度\n\n10、单链表中,取出环的起始点(剑指offer,题56)。本题需利用上面的第8题和第9题。\n\n11、判断两个单链表相交的第一个交点(剑指offer,题37)\n\n1、单链表的创建和遍历:\n\n``````\npublic Node current;\n\n//方法:向链表中添加数据\n//判断链表为空的时候\n} else {\n//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)\ncurrent.next = new Node(data);\n//把链表的当前索引向后移动一位\ncurrent = current.next; //此步操作完成之后,current结点指向新添加的那个结点\n}\n}\n\n//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历\npublic void print(Node node) {\nif (node == null) {\nreturn;\n}\n\ncurrent = node;\nwhile (current != null) {\nSystem.out.println(current.data);\ncurrent = current.next;\n}\n}\n\nclass Node {\n//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。\nint data; //数据域\nNode next;//指针域\n\npublic Node(int data) {\nthis.data = data;\n}\n}\n\npublic static void main(String[] args) {\nfor (int i = 0; i < 10; i++) {\n}\n\n}\n\n}\n``````\n\n2、求单链表中节点的个数:\n\n``````\n//方法:获取单链表的长度\nreturn 0;\n}\n\nint length = 0;\nwhile (current != null) {\nlength++;\ncurrent = current.next;\n}\n\nreturn length;\n}\n``````\n\n3、查找单链表中的倒数第k个结点:\n\n3.1 普通思路:\n\n)。时间复杂度为O(n),大概思路如下:\n\n``````\npublic int findLastNode(int index) { //index代表的是倒数第index的那个结点\n\n//第一次遍历,得到链表的长度size\nreturn -1;\n}\n\nwhile (current != null) {\nsize++;\ncurrent = current.next;\n}\n\n//第二次遍历,输出倒数第index个结点的数据\nfor (int i = 0; i < size - index; i++) {\ncurrent = current.next;\n}\n\nreturn current.data;\n}\n``````\n\n3.2 改进思路:(这种思路在其他题目中也有应用)\n\n这里需要声明两个指针:即两个结点型的变量first和second,首先让first和second都指向第一个结点,然后让second结点往后挪k-1个位置,此时first和second就间隔了k-1个位置,然后整体向后移动这两个节点,直到second节点走到最后一个结点的时候,此时first节点所指向的位置就是倒数第k个节点的位置。时间复杂度为O(n)\n\n``````\npublic Node findLastNode(Node head, int index) {\n\nif (node == null) {\nreturn null;\n}\n\n//让second结点往后挪index个位置\nfor (int i = 0; i < index; i++) {\nsecond = second.next;\n}\n\n//让first和second结点整体向后移动,直到second结点为Null\nwhile (second != null) {\nfirst = first.next;\nsecond = second.next;\n}\n\n//当second结点为空的时候,此时first指向的结点就是我们要找的结点\nreturn first;\n}``````\n\n要注意k等于0的情况;\n\n如果k大于链表中节点个数时,就会报空指针异常,所以这里需要做一下判断。\n\n``````\npublic Node findLastNode(Node head, int k) {\nif (k == 0 || head == null) {\nreturn null;\n}\n\n//让second结点往后挪k-1个位置\nfor (int i = 0; i < k - 1; i++) {\nSystem.out.println(\"i的值是\" + i);\nsecond = second.next;\nif (second == null) { //说明k的值已经大于链表的长度了\n//throw new NullPointerException(\"链表的长度小于\" + k); //我们自己抛出异常,给用户以提示\nreturn null;\n}\n}\n\n//让first和second结点整体向后移动,直到second走到最后一个结点\nwhile (second.next != null) {\nfirst = first.next;\nsecond = second.next;\n}\n//当second结点走到最后一个节点的时候,此时first指向的结点就是我们要找的结点\nreturn first;\n}\n\n``````\n\n4、查找单链表中的中间结点:\n\n和上面的第2节一样,也是设置两个指针first和second,只不过这里是,两个指针同时向前走,second指针每次走两步,first指针每次走一步,直到second指针走到最后一个结点时,此时first指针所指的结点就是中间结点。注意链表为空,链表结点个数为1和2的情况。时间复杂度为O(n)。\n\n``````\n//方法:查找链表的中间结点\n\nreturn null;\n}\n\n//每次移动时,让second结点移动两位,first结点移动一位\nwhile (second != null && second.next != null) {\nfirst = first.next;\nsecond = second.next.next;\n}\n\n//直到second结点移动到null时,此时first指针指向的位置就是中间结点的位置\nreturn first;\n}\n\n``````\n\n5、合并两个有序的单链表,合并之后的链表依然有序:\n\n这道题经常被各公司考察。\n\n1->2->3->4\n\n2->3->4->5\n\n1->2->2->3->3->4->4->5\n\n挨着比较链表1和链表2。\n\n这个类似于归并排序。尤其要注意两个链表都为空、和其中一个为空的情况。只需要O (1) 的空间。时间复杂度为O (max(len1,len2))\n\n``````\n//两个参数代表的是两个链表的头结点\n\nreturn null;\n}\n}\n}\n\nNode current; //current结点指向新链表\n} else {\n}\n\ncurrent = current.next; //current指针下移\n} else {\ncurrent = current.next;\n}\n}\n\n//合并剩余的元素\nif (head1 != null) { //说明链表2遍历完了,是空的\n}\n\nif (head2 != null) { //说明链表1遍历完了,是空的\n}\n\n}\n``````\n\n``````\npublic static void main(String[] args) {\nfor (int i = 0; i < 4; i++) {\n}\n\nfor (int i = 3; i < 8; i++) {\n}\n\n}\n\n``````",
null,
"6、单链表的反转:【出现频率最高】\n\n1->2->3->4\n\n4->2->2->1\n\n从头到尾遍历原链表,每遍历一个结点,将其摘下放在新链表的最前端。注意链表为空和只有一个结点的情况。时间复杂度为O(n)\n\n``````\n//方法:链表的反转\n\n//如果链表为空或者只有一个节点,无需反转,直接返回原链表的头结点\n}\n\nNode next = null; //定义当前结点的下一个结点\n\nwhile (current != null) {\nnext = current.next; //暂时保存住当前结点的下一个结点,因为下一次要用\n\ncurrent = next; // 操作结束后,current节点后移\n}\n\n}\n\n``````\n\n7、从尾到头打印单链表:\n\n对于这种颠倒顺序的问题,我们应该就会想到栈,后进先出。所以,这一题要么自己使用栈,要么让系统使用栈,也就是递归。注意链表为空的情况。时间复杂度为O(n)\n\n注:不要想着先将单链表反转,然后遍历输出,这样会破坏链表的结构,不建议。\n\n``````\n//方法:从尾到头打印单链表\n\nreturn;\n}\n\nStack<Node> stack = new Stack<Node>(); //新建一个栈\n\n//将链表的所有结点压栈\nwhile (current != null) {-\nstack.push(current); //将当前结点压栈\ncurrent = current.next;\n}\n\n//将栈中的结点打印输出即可\nwhile (stack.size() > 0) {\nSystem.out.println(stack.pop().data); //出栈操作\n}\n}\n``````\n\n``````\n\nreturn;\n}\n}\n``````\n\n8、判断单链表是否有环:\n\n这里也是用到两个指针,如果一个链表有环,那么用一个指针去遍历,是永远走不到头的。\n\n因此,我们用两个指针去遍历:first指针每次走一步,second指针每次走两步,如果first指针和second指针相遇,说明有环。时间复杂度为O (n)。\n\n``````\n//方法:判断单链表是否有环\n\nreturn false;\n}\n\nwhile (second != null) {\nfirst = first.next; //first指针走一步\nsecond = second.next.next; second指针走两步\n\nif (first == second) { //一旦两个指针相遇,说明链表是有环的\nreturn true;\n}\n}\n\nreturn false;\n}\n``````\n\n``````\n\npublic Node current;\n\n//方法:向链表中添加数据\n//判断链表为空的时候\n} else {\n//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)\ncurrent.next = new Node(data);\n//把链表的当前索引向后移动一位\ncurrent = current.next;\n}\n}\n\n//方法重载:向链表中添加结点\nif (node == null) {\nreturn;\n}\n\n} else {\ncurrent.next = node;\ncurrent = current.next;\n}\n}\n\n//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历\npublic void print(Node node) {\nif (node == null) {\nreturn;\n}\n\ncurrent = node;\nwhile (current != null) {\nSystem.out.println(current.data);\ncurrent = current.next;\n}\n}\n\n//方法:检测单链表是否有环\n\nreturn false;\n}\n\nwhile (second != null) {\nfirst = first.next; //first指针走一步\nsecond = second.next.next; //second指针走两步\n\nif (first == second) { //一旦两个指针相遇,说明链表是有环的\nreturn true;\n}\n}\n\nreturn false;\n}\n\nclass Node {\n//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。\nint data; //数据域\nNode next;//指针域\n\npublic Node(int data) {\nthis.data = data;\n}\n}\n\npublic static void main(String[] args) {\nfor (int i = 0; i < 4; i++) {\n}\n\n}\n}\n``````\n\n88行:我们将头结点继续往链表中添加,此时单链表就环了。最终运行效果为true。\n\n9、取出有环链表中,环的长度:",
null,
"",
null,
"这里面,我们需要先利用上面的第7小节中的hasCycle方法(判断链表是否有环的那个方法),这个方法的返回值是boolean型,但是现在要把这个方法稍做修改,让其返回值为相遇的那个结点。然后,我们拿到这个相遇的结点就好办了,这个结点肯定是在环里嘛,我们可以让这个结点对应的指针一直往下走,直到它回到原点,就可以算出环的长度了。\n\n``````\n//方法:判断单链表是否有环。返回的结点是相遇的那个结点\n\nreturn null;\n}\n\nwhile (second != null) {\nfirst = first.next;\nsecond = second.next.next;\n\nif (first == second) { //一旦两个指针相遇,说明链表是有环的\nreturn first; //将相遇的那个结点进行返回\n}\n}\nreturn null;\n}\n\n//方法:有环链表中,获取环的长度。参数node代表的是相遇的那个结点\npublic int getCycleLength(Node node) {\n\nreturn 0;\n}\n\nNode current = node;\nint length = 0;\n\nwhile (current != null) {\ncurrent = current.next;\nlength++;\nif (current == node) { //当current结点走到原点的时候\nreturn length;\n}\n}\nreturn length;\n}\n``````\n\n``````\npublic Node current;\n\npublic int size;\n\n//方法:向链表中添加数据\n//判断链表为空的时候\n} else {\n//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)\ncurrent.next = new Node(data);\n//把链表的当前索引向后移动一位\ncurrent = current.next; //此步操作完成之后,current结点指向新添加的那个结点\n}\n}\n\n//方法重载:向链表中添加结点\nif (node == null) {\nreturn;\n}\n} else {\ncurrent.next = node;\ncurrent = current.next;\n}\n}\n\n//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历\npublic void print(Node node) {\nif (node == null) {\nreturn;\n}\n\ncurrent = node;\nwhile (current != null) {\nSystem.out.println(current.data);\ncurrent = current.next;\n}\n}\n\n//方法:判断单链表是否有环。返回的结点是相遇的那个结点\n\nreturn null;\n}\n\nwhile (second != null) {\nfirst = first.next;\nsecond = second.next.next;\n\nif (first == second) { //一旦两个指针相遇,说明链表是有环的\nreturn first; //将相遇的那个结点进行返回\n}\n}\n\nreturn null;\n}\n\n//方法:有环链表中,获取环的长度。参数node代表的是相遇的那个结点\npublic int getCycleLength(Node node) {\n\nreturn 0;\n}\n\nNode current = node;\nint length = 0;\n\nwhile (current != null) {\ncurrent = current.next;\nlength++;\nif (current == node) { //当current结点走到原点的时候\nreturn length;\n}\n}\n\nreturn length;\n}\n\nclass Node {\n//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。\nint data; //数据域\nNode next;//指针域\n\npublic Node(int data) {\nthis.data = data;\n}\n}\n\npublic static void main(String[] args) {\n\nNode second = null; //把第二个结点记下来\n\nfor (int i = 0; i < 4; i++) {\nif (i == 1) {\nsecond = list1.current; //把第二个结点记下来\n}\n}\n\nSystem.out.println(\"环的长度为\" + list1.getCycleLength(current));\n}\n\n}``````\n\n运行效果:",
null,
"``````\npublic static void main(String[] args) {\nfor (int i = 0; i < 4; i++) {\n}\n\nSystem.out.println(\"环的长度为\" + list1.getCycleLength(current));\n}\n``````",
null,
"10、单链表中,取出环的起始点:",
null,
"",
null,
"``````\n//方法:获取环的起始点。参数length表示环的长度\npublic Node getCycleStart(Node head, int cycleLength) {\n\nreturn null;\n}\n\n//先让second指针走length步\nfor (int i = 0; i < cycleLength; i++) {\nsecond = second.next;\n}\n\n//然后让first指针和second指针同时各走一步\nwhile (first != null && second != null) {\nfirst = first.next;\nsecond = second.next;\n\nif (first == second) { //如果两个指针相遇了,说明这个结点就是环的起始点\nreturn first;\n}\n}\n\nreturn null;\n}\n\n``````\n\n``````\npublic Node current;\n\npublic int size;\n\n//方法:向链表中添加数据\n//判断链表为空的时候\n} else {\n//创建新的结点,放在当前节点的后面(把新的结点合链表进行关联)\ncurrent.next = new Node(data);\n//把链表的当前索引向后移动一位\ncurrent = current.next; //此步操作完成之后,current结点指向新添加的那个结点\n}\n}\n\n//方法重载:向链表中添加结点\nif (node == null) {\nreturn;\n}\n} else {\ncurrent.next = node;\ncurrent = current.next;\n}\n}\n\n//方法:遍历链表(打印输出链表。方法的参数表示从节点node开始进行遍历\npublic void print(Node node) {\nif (node == null) {\nreturn;\n}\n\ncurrent = node;\nwhile (current != null) {\nSystem.out.println(current.data);\ncurrent = current.next;\n}\n}\n\n//方法:判断单链表是否有环。返回的结点是相遇的那个结点\n\nreturn null;\n}\n\nwhile (second != null) {\nfirst = first.next;\nsecond = second.next.next;\n\nif (first == second) { //一旦两个指针相遇,说明链表是有环的\nreturn first; //将相遇的那个结点进行返回\n}\n}\n\nreturn null;\n}\n//方法:有环链表中,获取环的长度。参数node代表的是相遇的那个结点\npublic int getCycleLength(Node node) {\n\nreturn 0;\n}\n\nNode current = node;\nint length = 0;\n\nwhile (current != null) {\ncurrent = current.next;\nlength++;\nif (current == node) { //当current结点走到原点的时候\nreturn length;\n}\n}\n\nreturn length;\n}\n\n//方法:获取环的起始点。参数length表示环的长度\npublic Node getCycleStart(Node head, int cycleLength) {\n\nreturn null;\n}\n\n//先让second指针走length步\nfor (int i = 0; i < cycleLength; i++) {\nsecond = second.next;\n}\n\n//然后让first指针和second指针同时各走一步\nwhile (first != null && second != null) {\nfirst = first.next;\nsecond = second.next;\n\nif (first == second) { //如果两个指针相遇了,说明这个结点就是环的起始点\nreturn first;\n}\n}\n\nreturn null;\n}\nclass Node {\n//注:此处的两个成员变量权限不能为private,因为private的权限是仅对本类访问。\nint data; //数据域\nNode next;//指针域\n\npublic Node(int data) {\nthis.data = data;\n}\n}\n\npublic static void main(String[] args) {\n\nNode second = null; //把第二个结点记下来\n\nfor (int i = 0; i < 4; i++) {\n\nif (i == 1) {\nsecond = list1.current; //把第二个结点记下来\n}\n}\n\nint length = list1.getCycleLength(current); //获取环的长度\n\n}\n\n}\n\n``````\n\n11、判断两个单链表相交的第一个交点:\n\n《编程之美》P193,5.3,面试题37就有这道题。\n\n面试时,很多人碰到这道题的第一反应是:在第一个链表上顺序遍历每个结点,每遍历到一个结点的时候,在第二个链表上顺序遍历每个结点。如果在第二个链表上有一个结点和第一个链表上的结点一样,说明两个链表在这个结点上重合。显然该方法的时间复杂度为O(len1 * len2)。\n\n我们可以看出两个有公共结点而部分重合的链表,拓扑形状看起来像一个Y,而不可能是X型。 如下图所示:",
null,
"``````\n//方法:求两个单链表相交的第一个交点\nreturn null;\n}\n\nint lengthDif = 0; //两个链表长度的差值\n\n//找出较长的那个链表\nif (length1 > length2) {\nlengthDif = length1 - length2;\n} else {\nlengthDif = length2 - length1;\n}\n\n//将较长的那个链表的指针向前走length个距离\nfor (int i = 0; i < lengthDif; i++) {\n}\n\n//将两个链表的指针同时向前移动\n}\n}\n\nreturn null;\n}\n\n//方法:获取单链表的长度\nreturn 0;\n}\n\nint length = 0;\nNode current = head; while (current != null) {\n\nlength++;\ncurrent = current.next;\n}\n\nreturn length;``````\n\nJAVA实现链表面试题\nJava实现栈和队列面试题\nJava开发基础笔试题汇总\njava开发工程师笔试题汇总\n\njava企业招聘笔试题\n\n10个经典的Java main方法面试题\n\nJava常见面试题二则\nJAVA常见面试题总结"
] | [
null,
"http://img.phperz.com/data/img/20160703_2/1467524399_9758.png",
null,
"http://img.phperz.com/data/img/20160703_14/1467524399_1753.png",
null,
"http://img.phperz.com/data/img/20160703_5/1467524399_2757.png",
null,
"http://img.phperz.com/data/img/20160703_7/1467524400_4807.png",
null,
"http://img.phperz.com/data/img/20160703_13/1467524400_8114.png",
null,
"http://img.phperz.com/data/img/20160703_7/1467524400_4273.png",
null,
"http://img.phperz.com/data/img/20160703_17/1467524400_9083.png",
null,
"http://img.phperz.com/data/img/20160703_6/1467524400_6332.png",
null
] | {"ft_lang_label":"__label__zh","ft_lang_prob":0.52786475,"math_prob":0.980801,"size":17277,"snap":"2020-24-2020-29","text_gpt3_token_len":9012,"char_repetition_ratio":0.2184334,"word_repetition_ratio":0.61481845,"special_character_ratio":0.2876078,"punctuation_ratio":0.19101979,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9764864,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16],"im_url_duplicate_count":[null,3,null,3,null,3,null,3,null,3,null,3,null,3,null,3,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-07-04T23:58:56Z\",\"WARC-Record-ID\":\"<urn:uuid:1400b757-1df7-431e-86cf-f85da112d8e7>\",\"Content-Length\":\"60908\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:dde7cfd8-2ec5-4037-b55a-fc0439eb57e5>\",\"WARC-Concurrent-To\":\"<urn:uuid:66170eb0-8148-40af-8322-4790e262113d>\",\"WARC-IP-Address\":\"115.28.218.96\",\"WARC-Target-URI\":\"http://www.phperz.com/article/16/0803/235035.html\",\"WARC-Payload-Digest\":\"sha1:O73OVAHTDXWIVBDSPMRWHUEQ4DBEJ6NA\",\"WARC-Block-Digest\":\"sha1:KIGOO4IIFK4VP6MFLEDWVVDSFZT7EP46\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-29/CC-MAIN-2020-29_segments_1593655886802.13_warc_CC-MAIN-20200704232817-20200705022817-00177.warc.gz\"}"} |
https://patents.justia.com/patent/20130096983 | [
"# SYSTEMS AND METHODS FOR IMPROVING THE ACCURACY OF DAY-AHEAD LOAD FORECASTS ON AN ELECTRIC UTILITY GRID\n\nSystems and methods improve the forecast of electricity consumption, and/or refining such predictions. Predictions may be refined by accounting for factors such as preliminary predictions, pricing and cost information associated with future supply of energy, the extent of anticipated changes in the predictions, the time of day and/or anticipated daylight for the period of time. Coefficient values are calculated for a forecast error model that takes into account factors related to electricity consumption using existing historical electrical grid data. Using the calculated values, the forecast error model may be applied to current electricity demand forecasts.\n\n## Latest THE CATHOLIC UNIVERSITY OF AMERICA Patents:\n\nDescription\nCROSS-REFERENCE TO RELATED APPLICATIONS\n\nThis application references and claims priority to U.S. Provisional Patent Application No. 61/471,502, filed Apr. 4, 2011, and references and claims priority to U.S. Provisional Patent Application No. 61/557,700, filed Nov. 9, 2011. The contents the above-identified applications are incorporated herein by reference in their entirety.\n\nFIELD\n\nThe present invention relates to systems and methods for predicting load on an electric utility grid, improving the forecast of electricity consumption, and/or refining such predictions.\n\nSUMMARY\n\nThe present invention relates to systems and methods for predicting load on an electric utility grid, improving the forecast of electricity consumption, and/or refining such predictions. Further, the present invention can be used to more efficiently utilize the generators that produce electricity. Utilizing the systems and methods disclosed herein, the present invention can, amongst other things, enhance environmental quality, contribute to energy efficiency/conservation, and/or contribute to reducing greenhouse gas emissions.\n\nBy way of example, a forecasted level of load that is greater than actual electricity demand can induce the system operator to reduce the output of previously scheduled generating units so as to match electricity supply with demand. This reduction in output can be expected to reduce the operating efficiency of the generating units in question, thereby increasing their emissions per megawatt-hour of generated electricity. On the other hand, a forecasted level of load that is less than actual electricity demand can induce the system operator to dispatch “peaking” units (e.g. a single cycle turbine) which can have a high degree of operational flexibility but are also high in terms of carbon intensity. Hence, the systems and methods disclosed that for predicting load on an electric utility grid, improving the forecast of electricity consumption, and/or refining such predictions can enhance environmental quality, contribute to energy efficiency/conservation, and/or contribute to reducing greenhouse gas emissions.\n\nTraditionally, some have used forecasts of meteorological conditions to predict the load on electric utility grids. However, in embodiments of the present invention, the systems and methods refines initial predictions of load on electric utility grids to generate refined predictions using information comprising market conditions reflecting other participants in the market and/or other factors. In embodiments of the present invention, the refined predictions can take into account variables that reflect the information and insights of the electricity suppliers, the “complexity” of the expected demand conditions, the time of day and/or anticipated daylight for the period of time, to name just a few. Further, in embodiments of the present invention, the refined predictions can take into account one or more factors such as regional factors, geographical factors, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in initial predictions, the extent of the anticipated changes in pricing and/or cost information associated with future supply of energy, and the time of day and/or anticipated daylight for the period of time, to name just a few.\n\nIn embodiments of the present invention, the system and method can forecast electricity demand for an electricity control area taking into account expected meteorological conditions in addition to variables that reflect the information and insights of the electricity suppliers, the “complexity” of the expected demand conditions, the time of day and/or anticipated daylight for the period of time, to name just a few. Further, in embodiments of the present invention, the refined predictions can take into account one or more factors such as regional factors, geographical factors, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in initial predictions, the extent of the anticipated changes in pricing and/or cost information associated with future supply of energy, and the time of day and/or anticipated daylight for the period of time, to name just a few.\n\nFurther, the present system, in exemplary embodiments, in addition to meteorological data and/or predictions taking in to consideration meteorological data the present invention can take into consideration one or more of the following data: load predictions for future periods of time, predictions for future periods of sub periods of time, pricing information for the same period of time and/or sub period of time, fuel costs for the same period of time and/or sub period of time, data related to the cost of fuel, data related to the day ahead price information relative to various energy suppliers, the extent of anticipated changes in pricing and/or cost information associated with future supply of energy, the extent of the anticipated changes in future demand of energy, the month of the year, the day of the week, the hour of the day and/or anticipated daylight for the period of time, and/or any further combination and separation thereof, to name a few.\n\nIn exemplary embodiments, the prediction can be for each hour of the next day. In exemplary embodiments, the prediction can be for each half hour of each day, fifteen minute segment, or any other sub period of times as may be consistent with the pricing and/or demand data, to name a few.\n\nIn exemplary embodiments, the predictions can take into account factors such as meteorological factors, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in the predictions, and the time of day and/or anticipated daylight for the period of time.\n\nIn exemplary embodiments, the present invention makes refinements in load predictions that were based on meteorological factors to adjust for systematic errors associated with those forecasts. In such embodiments, the refined prediction can take into account factors such as preliminary predictions, pricing and cost information associated with future supply of energy, the extent of anticipated changes in the predictions, the time of day and/or anticipated daylight for the period of time.\n\nIn some exemplary embodiments, the forecast error equation may be further refined. After calculating a set of coefficients, differences between predicted errors from the historical data using the forecast error equation, and actual errors from the historical data can be calculated. These residual terms may be applied to an auto-regressive moving average analysis, in order to determine disturbances at one or more times. The one or more computers may calculate a new set of coefficients for the forecast error equation based on the auto-regressive moving average analysis.\n\nIn exemplary embodiments, the forecast error equation may be a multivariable fractional polynomial model.\n\nIn exemplary embodiments, the sparks ratio is the day-ahead electricity prices relative to the prices of the fuel used to generate electricity. In some exemplary embodiments, the fuel may be natural gas, coal, and/or oil.\n\nBRIEF DESCRIPTION OF THE DRAWINGS\n\nThe features and advantages of the present invention will be more fully understood with reference to the following, detailed description when taken in conjunction with the accompanying figures, wherein:\n\nFIG. 1. illustrates an exemplary load graph as published by the California Independent System Operator (CAISO), including exemplary kinds of data that can be used with exemplary embodiments of the present invention;\n\nFIGS. 2A-2B are block diagrams of certain components of the systems and methods for predicting anticipated load demand on an electric utility grid, in accordance with exemplary embodiments of the present invention;\n\nFIG. 3 is a scatter diagram illustrating an exemplary relationship between the day-ahead energy/natural gas price ratio (“sparks ratio”) and load including data that can be used with exemplary embodiments of the present invention;\n\nFIG. 4 is a scatter diagram illustrating an exemplary relationship between the day-ahead energy/gas price ratio (“sparks ratio”) and a measure of the error by CASIO in forecasting load for Pacific Gas and Electric service territory, in accordance with exemplary embodiments of the present invention;\n\nFIG. 5 is a scatter diagram illustrating an exemplary relationship between the skewness in the daily day-ahead forecast and a measure of the error by CASIO in forecasting the 5:00 PM load for Pacific Gas and Electric service territory, in accordance with exemplary embodiments of the present invention;\n\nFIG. 6 is an illustrative depiction of a report depicting the results of an out-of-sample test of the methodology for the PGE service territory in California over the period 1 Apr. 2010 through 31 Dec. 2010, in accordance with exemplary embodiments of the present invention;\n\nFIG. 7 is an illustrative depiction of graph depicting High vs. Low Variation in the Day-Ahead Price of Electricity, in accordance with exemplary embodiments of the present invention;\n\nFIG. 8 is an illustrative depiction of graph depicting Positive vs. Negative Skewness in Day-Ahead Prices, in accordance with exemplary embodiments of the present invention;\n\nFIG. 9 is an illustrative depiction of graph depicting High vs. Low Variation in Forecasted Load, in accordance with exemplary embodiments of the present invention; and\n\nFIG. 10 is an illustrative depiction of graph depicting the pattern of forecasted load when forecasted load is positively skewed, in accordance with exemplary embodiments of the present invention;\n\nFIG. 11 is an illustrative depiction of graph depicting an autocorrelation of a residual of forecasted load pattern, in accordance with exemplary embodiments of the present invention; and\n\nFIG. 12 is an illustrative depiction of graph depicting an autocorrelation of a residual of forecasted load pattern, in accordance with exemplary embodiments of the present invention.\n\nDETAILED DESCRIPTION\n\nThe present invention relates to systems and methods for predicting load on an electric utility grid, improving the forecast of electricity consumption, and/or refining such predictions.\n\nFurther, in exemplary embodiments, the present invention can be used to more efficiently utilize the fleet of generation resources. Utilizing the systems and methods disclosed herein, the present invention can, amongst other things, enhance environmental quality, contribute to energy efficiency/conservation, and/or contribute to reducing greenhouse gas emissions.\n\nBy way of example, a forecasted level of load that is greater than actual electricity demand can induce the system operator to reduce the output of previously scheduled generating units so as to match electricity supply with demand. This reduction in output can be expected to reduce the operating efficiency of the generating units in question, thereby increasing their emissions per megawatt-hour of generated electricity. On the other hand, a forecasted level of load that is less than actual electricity demand can induce the system operator to dispatch “peaking” units (e.g. a single cycle turbine) which can have a high degree of operational flexibility but are also high in terms of carbon intensity. Hence, the systems and methods disclosed that for predicting anticipated load demand on an electric utility grid, load on an electricity grid, improving the forecast of electricity consumption, and/or refining such predictions can enhance environmental quality, contribute to energy efficiency/conservation, and/or contribute to reducing greenhouse gas emissions.\n\nTraditionally, some have used meteorological conditions to predict anticipated load demand on an electric utility grid, load on an electricity grid, improving the forecast of electricity consumption, and/or refining such predictions, as illustrated in FIG. 1. However, in embodiments of the present invention, the systems and methods takes the initial predictions for the anticipated load demand on electric utility grids to generate refined predictions using information comprising market conditions reflecting the insights and expectations of other market participants and/or other factors.\n\nIn embodiments of the present invention, the refined predictions can take into account one or more factors such as seasonal factors, geographical factors, day of the week considerations, hour of the day considerations, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in initial predictions, measures of the variation in expected demand over the course of the day, the extent of the anticipated changes in pricing and/or cost information associated with future supply of energy, and the time of day and/or anticipated daylight for the period of time, to name a few.\n\nIn embodiments of the present invention, the system and method can make predictions for the anticipated load demand on electric utility grids to generate by taking into account meteorological conditions in addition to one or more factors such as seasonal factors, geographical factors, day of the week considerations, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in initial predictions, measures of the variation in expected demand over the course of the day, the extent of the anticipated changes in pricing and/or cost information associated with future supply of energy, the extent of the anticipated changes in future demand of energy, and the time of day and/or anticipated daylight for the period of time, and/or any further combination and separation thereof, to name a few.\n\nFurther, the present systems and methods, in exemplary embodiments, in addition to meteorological data and/or predictions, take in to consideration meteorological data the present invention can take into consideration one or more of the following data: load predictions for future periods of time, load predictions for future periods of sub periods of time, pricing information for the same period of time and/or sub period of time, fuel costs for the same period of time and/or sub period of time, data related to the cost of fuel, data related to the day ahead price information relative to various energy suppliers, and/or any further combination and separation thereof, to name a few.\n\nIn exemplary embodiments, systems and methods disclosed herein are for use with, amongst other things, a wholesale energy output such as a wholesale electricity market system. Wholesale electricity market systems can exist when competing generators offer their electricity output to the system operator.\n\nThe wholesale electricity market system traditionally functions as a bid-based, security-constrained, economic dispatch with nodal prices-type systems wherein price in the day-ahead market can be determined by minimizing generating costs based on the bids from the generators, expected load, expected net imports from other control areas, expected demand response from consumers, and expected transmission constraints. The result is a classic supply and demand equilibrium price. This type of pricing can include an hourly interval and can be calculated separately for sub regions in which the system operator's load flow model indicates that constraints will bind transmission imports. Other time and/or region divisions may be used consistent with the scope and spirit of the present invention. For example, time divisions such as half hour, fifteen minute, or other time divisions which may be consistent with pricing and/or demand data, to name a few, can be used consistent with the scope and spirit of the present invention.\n\nFurther, referring to FIG. 1, including additional information shown, the theoretical prices of energy, demand forecast, at each node on the network can be calculated as a “shadow price”, in which it is assumed that one additional kilowatt-hour is demanded at the node in question, and the hypothetical incremental cost to the system that would result from the optimized redispatch of available units, available resources 10, establishes the hypothetical production cost of the hypothetical kilowatt-hour wherein the difference between the actual demand 20 and demand forecast 30 represent the error in the demand forecast. In exemplary embodiments, the price may be known as a locational marginal price (LMP) or nodal price. In practice, the LMP algorithm described above can be run such that, incorporating a security-constrained, the least-cost dispatch calculation with supply based on the generators that submitted offers in the day-ahead market, and demand based on bids from load-serving entities can function such that supplies at the various nodes can be drained of energy.\n\nSurprisingly, load prediction does not currently take into account variables that reflect the information and insights of the firms that supply electricity to the power grid. These firms have an economic interest in the market outcome and thus will base their day-ahead supply offers on their expectations of demand. The challenge for these firms is to submit a bid that more than recoups their variable costs of production that does not exceed the bid of the marginal generating unit. But the marginal generating unit is conditional on electricity demand and thus firms have very large incentives to correctly anticipate demand. To the extent that the market is efficient, the collective information and insights of the suppliers will be reflected in the market prices. The existing methods used by load forecasters are also deficient in capturing the seasonal influences, day of the week considerations, hour of the day considerations, daylight considerations, and the effect that the shape of both the price and expected demand over the course of the forecast day have on the forecast errors over that day.\n\nFurther, in exemplary embodiments, the prediction can be for each hour of the next day. In exemplary embodiments, the prediction can be for each half hour of each day, fifteen minute segment, or other sub period of times as may be consistent with the pricing and/or demand data, to name a few.\n\nIn exemplary embodiments, the predictions can take into account factors such as, but not limited to, meteorological factors, seasonal factors, geographical factors, day of the week considerations, hour of the day considerations, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in initial predictions, measures of the variation in expected demand over the course of the day, the extent of the anticipated changes in pricing and/or cost information associated with future supply of energy, and the time of day and/or anticipated daylight for the period of time, to name a few.\n\nFurther, in exemplary embodiments, the predictions can take into account factors such as, but not limited to, regional factors, geographical factors, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in the predictions, and the time of day and/or anticipated daylight for the period of time, to name a few.\n\nIn exemplary embodiments, the present invention uses an initial prediction taking into consideration meteorological factors to form a refined prediction which adjusts for systematic errors associated with the methodology used to generated the initial prediction and/or other information not otherwise taken into consideration in the initial prediction. In such embodiments, the refined prediction can take into account one or more factors such as preliminary predictions, pricing and cost information associated with future supply of energy, the extent of anticipated changes in the predictions over the course of the forecast day, the time of day and/or anticipated daylight for the period of time.\n\nBy way of example, in terms of supply costs, the price of energy in the California ISO can be highly dependent on the delivered price of natural gas and the heat rates of the marginal generating unit where the heat rate reflects the quantity of energy (e.g. natural gas measured in MMbtu) required to produce a megawatt of electricity. Further, when load is low, only the most efficient plants may be dispatched and thus prices may reflect the natural gas operating costs of these low heat rate units. When loads are high, less efficient generating units may be the marginal source of supply and the day-ahead market price of energy will reflect the operating costs of these higher heat rate units to the extent that the day-ahead energy market is, amongst other things, efficient. As a result there can be a positive relationship between the day-ahead energy/gas price ratio and load.\n\nFor ease, the day-ahead energy/gas price ratio is, at times, described as the “sparks ratio.” This is merely for ease and is in no way meant to be a limitation.\n\nIn exemplary embodiments, the sparks ratio can be calculated under the assumption of substantially no energy losses and can, for example, increase as generating units with higher heat rates are expected to be dispatched. Following the above example, the relationship between this ratio and load for the PG&E LAP is illustratively depicted in FIG. 3, as discussed below.\n\nIn exemplary embodiments, the prediction can be for each hour of the next day. In exemplary embodiments, the prediction can be for each half hour of each day, fifteen minute segment, ten minute segment, other sub period of times as may be consistent with the pricing and/or demand data, to name a few.\n\nIn exemplary embodiments, the predictions can take into account factors such as meteorological factors, pricing and/or cost information associated with future supply of energy, the extent of anticipated changes in the predictions, and the time of day and/or anticipated daylight for the period of time.\n\nIn exemplary embodiments, the present invention refines an initial prediction taking into consideration meteorological factors to form a refined prediction which adjusts for systematic errors associated with the methodology used to generated the initial prediction and/or other information not otherwise taken into consideration in the initial prediction. In such embodiments, the refined prediction can take into account factors such as preliminary predictions, pricing and cost information associated with future supply of energy, the extent of anticipated changes in the predictions, the time of day and/or anticipated daylight for the period of time.\n\nIn exemplary embodiments, the “sparks ratio” can be calculated under the assumption of no energy losses. That is, that 1 MWh is approximately equivalent to 3.412 MMBTU. To facilitate the presentation of the data, the ratio in the figure can be reported for the range of one through ten. This range can account for over 98 percent of the observations.\n\nIn exemplary embodiments, output consumers system 102 affiliated with a prediction error system 104 and/or a stand alone prediction error system 104 can determine the load forecasting error as a function of binary variables for, for example, the hour of the day, the day of the week, the month of the year, and/or whether the hour in question occurs between sunrise and sunset, to name a few.\n\nIn exemplary embodiments, referring to FIG. 3, the marginal impact of each explanatory variable on the error measured in Mega Watts (MW) may not be independent of the values of the other explanatory variables. By way of example, as shown, a scatter diagram can have a positive slope indicating that the day-ahead sparks ratio is generally higher, the higher the level of actual load. Without meaning to be bound by theory, this can occur for various reasons. For example, generating units can be dispatched based on economics wherein the substantially more efficient units can be dispatched first thereby generating efficiency declines as load increases. Further, the day-ahead price can be determined based on the economics of the last generating unit that is expected to be dispatched. Also, generators can be expected to base their bids on their private knowledge and/or insights about the next day's electricity demand. This can be done to avoid submitting a bid that may be above the bid of the marginal generating unit where the marginal generating unit will vary based on demand conditions. For if it is, the generating unit may not be dispatched. Based on these considerations, in exemplary embodiments, the day-ahead price of electricity relative to the price of the fuel can be positively correlated with the actual load. In exemplary embodiments, the relationship may not be linear.\n\nIn exemplary embodiments, the marginal impact of an increase in sparks ratio on the error may not be independent from either the hour of the day and/or the forecasted peak hourly load. By way of example, a high sparks ratio at 5:00 PM, a time period usually associated with peak daily demand, may have more significant implications than the same value earlier in the day. Hence, a simple ordinary least squares model specification may not be appropriate. More specifically, a loglinear specification may be more appropriate in that it can permit the estimated marginal impact for each independent variable on the error to be contingent on the values of the other independent variables. In terms of the error itself, the natural logarithm of the actual load relative to the forecasted load would appear to be an appropriate representation in that it represents the relative gap between forecasted and actual load.\n\nIllustrating the above, referring to FIG. 4, by way of another example, according to exemplary embodiments, the scatter diagram can have a negative slope indicating that the ratio of the actual to forecasted load tends to be higher the lower the day-ahead sparks ratio.\n\nFurther illustrating the above, referring to FIG. 5, by way of another example, according to exemplary embodiments, in the natural logarithm of the ratio of actual to forecast load at 5:00 PM can be positive if the daily forecast of load is, for example, positively skewed.\n\nEquation (1):\n\nwhere:\n\nIn ForecastErrorhd can be the natural logarithm of the ratio of actual to forecasted load for hour h in day d;\n\nHouri can be binary variables representing each hour of the day excluding hour one (j=2 to 24);\n\nDayk can be binary variables representing each day of the week excluding Monday (k=2 to 7);\n\nMonthi can be binary variables representing each month excluding January (i=2 to 12);\n\nDaylighthd can be a binary variable that can be equal to one if hour h in day d occurs between sunrise and sunset;\n\nSparksRatiohd can be a measure of the day-ahead price of electricity relative to the price of natural gas, natural gas generating units playing an important role in establishing the market price of electricity. Increases in this ratio can be an indicator that more costly forms of generation are expected to be dispatched. By way of example, in the exemplary case of Pacific Gas and Electricity (PGE) LAP in California, the ratio can be measured as the day-ahead, for example, Apnode price for hour h in day d for the PG&E LAP divided by the price of natural gas reported by California ISO for the PG&E LAP the day prior to the closing of the day-ahead energy market. The Apnode price for the PGE LAP can be the locational marginal price for the PGE aggregated pricing node. Further, the price of natural gas can be normalized to its MWh equivalent under the assumption of zero energy losses. This can be done, for example, by multiplying the price per MMBtu by 3.412. For another example, this can be multiplied by a constant value that is greater than 3.412 which would imply a nonzero level of energy losses when the electricity is generated.\n\nCVPd can be the coefficient of variation in the 24 hourly day-ahead prices in day d. Specifically, for each day both the average hourly price and the standard deviation in the prices can be calculated. The ratio of the latter to the former can be defined as CVP. This ratio can be a measure of the complexity of expected market outcomes over the forecast day. This is illustrated for two very different days on the California power grid, for example, referring to FIG. 7.\n\nPosSkewPd can be substantially equal to, for example, the skewness in the 24 day-ahead hourly prices in day d when the skewness in the hourly prices can be positive. It can be equal to zero otherwise. The day-ahead prices can be positively skewed when there are a small number of hours which the day-ahead price is significantly higher as compared to other hours. This is illustrated for two different days in California, for example, referring to FIG. 8.\n\nNegSkewPd can be substantially equal to, for example, the absolute value of skewness in the 24 day-ahead hourly prices in day d when the skewness in the prices can be negative. It can be equal to zero otherwise.\n\nFLPeakRatiohd can be substantially equal to, for example, the ratio of the forecasted load in hour h relative to the forecasted peak load in day d. This variable can represent the difference between forecasted load for the market period in question and the peak level of forecasted load over the course of the forecast day. This may be a key variable to the extent that forecasters focus on the accuracy of their peak load forecasts.\n\nFLNadirRatiohd can be substantially equal to, for example, the ratio of the forecasted load in hour h relative to the forecasted minimum load level in day d. This variable can represent the difference between forecasted load for the market period in question and the minimum level of forecasted load over the course of the forecast day.\n\nFLPeakd can be the forecasted peak hourly load in day d.\n\nCVFLd can be the coefficient of variation in the 24 hourly day-ahead prices in day d. Specifically, for each day both the average hourly price and the standard deviation in the prices can be calculated. The ratio of the latter to the former can be defined as CVFLd. This can be a measure of the expected variation in electricity consumption over the forecast day. This variable can be illustrated for two very different forecast days in California, for example, referring to FIG. 9.\n\nPosSkewFLd can be substantially equal to, for example, the skewness in the 24 day-ahead hourly prices in day d when the skewness in the day-ahead forecasted hourly load can be positive. It can be equal to zero otherwise. Forecasted Load can be positively skewed when there are a small number of hours in which forecasted load is significantly higher than in other hours, for example, referring to FIG. 10.\n\nNegSkewFLd can be a measure of whether forecasted load is negatively skewed. One measure of this can be the absolute value of the skewness in the 24 day-ahead hourly levels of forecasted load in day d when the skewness in the forecasted hourly load can be negative. It can be equal to zero otherwise.\n\nIn this example, formula 1 assumes an hourly time division h. Other time divisions may be used consistent with the scope and spirit of the present invention. For example, time divisions such as half hour, fifteen minute, ten minute, or other time divisions which may be consistent with pricing and/or demand data, to name a few, can be used consistent with the scope and spirit of the present invention. In such instances, h would be modified to reflect the alternative time division.\n\nFollowing the above more specific example, the output consumers system 102 affiliated with a prediction error system 104 and/or a stand alone prediction error system 104 can determine the load forecasting error by using the following equation:\n\n$ Equation ( 2 ) ln ForecastError hd = const + ∑ j = 2 24 α j Hour j + ∑ k = 2 7 δ k Day k + ∑ i = 2 12 μ i Month i + β 1 Daylight hd + β 2 SparksRatio hd 2 + β 3 CVP d - 1 + β 4 PosSkewP d + β 5 NegSkewP d + β 6 FLPeakRatio d 0.5 + β 7 FLNadirRatio d 0.5 + β 8 FLPeak d + β 9 FLNadir d + β 10 CVFL d 3 + β 11 PosSkewFL d + β 12 NegSkewFL d ( 2 )$\n\nThe variables which are used in both Equation (1) and Equation (2) have the same meaning as set forth above. The symbols α, δ, μ and β in equation (2) are estimated parameters that will vary from across electricity control areas. The values of the estimated parameters reflect the contribution of the corresponding variable to measure of the load forecast error.\n\nIn this example, formula 2 assumes an hourly time division h. Other time divisions may be used consistent with operations of the electricity control error. For example, time divisions such as half hour, fifteen minute, or other time divisions which may be consistent with pricing and/or demand data, to name a few, can be used consistent with the scope and spirit of the present invention. In such instances, h and the range for j would be modified to reflect the alternative time division.\n\nEquation (2) was estimated for the PGE service territory in California using hourly data for the sample period 1 Apr. 2009 through 31 Mar. 2010. The results are presented in Table 1. Observe that the adjusted R-squared is approximately 0.48. This indicates that the model is able to “explain” approximately 48 percent of the error as measured by the natural logarithm of actual relative to forecasted load. It should also be noted that a substantial number of the coefficients are statistically significant as evidenced by their p values being less than 0.05.\n\nTABLE 1 Estimated Variable Coefficient t- Statistic P value const 0.5576 12.99 0 Hour2 0.0075 5.98 0 Hour3 0.0171 10.25 0 Hour4 0.0242 13.14 0 Hour5 0.0312 16.9 0 Hour6 0.0446 25.31 0 Hour7 0.0590 29.72 0 Hour8 0.0516 19.31 0 Hour9 0.0517 14.73 0 Hour10 0.0521 13.47 0 Hour11 0.0506 12.34 0 Hour12 0.0452 10.75 0 Hour13 0.0472 11.23 0 Hour14 0.0463 10.91 0 Hour15 0.0443 10.51 0 Hour16 0.0449 10.69 0 Hour17 0.0541 12.18 0 Hour18 0.0577 12.5 0 Hour19 0.0517 11.52 0 Hour20 0.0515 11.9 0 Hour21 0.0425 10.57 0 Hour22 0.0153 4.66 0 Hour23 −0.0049 −2.04 0.042 Hour24 −0.0100 −6.51 0 Tuesday (d = 2) −0.0041 −0.89 0.374 Wednesday (d = 3) −0.0001 −0.02 0.987 Thursday (d = 4) 0.0047 1.02 0.307 Friday (d = 5) 0.0047 1.05 0.293 Saturday (d = 6) 0.0073 1.63 0.102 Sunday (d = 7) 0.0016 0.46 0.645 February (i = 2) −0.0019 −0.58 0.561 March (i = 3) −0.0063 −1.86 0.062 April (i = 4) −0.0144 −3.6 0 May (i = 5) −0.0085 −2.03 0.042 June (i = 6) −0.0135 −2.62 0.009 July (i = 7) 0.0032 0.53 0.596 August (i = 8) 0.0028 0.51 0.613 September (i = 9) −0.0090 −1.75 0.08 October (i = 10) −0.0033 −0.89 0.374 November (i = 11) −0.0049 −1.64 0.101 December (i = 12) 0.0015 0.43 0.665 Daylight 0.0044 2.69 0.007 SparksRatio 0.0016 5.24 0 CVPd−1 −0.0013 −2.56 0.011 PosSkewPd 0.0051 2.67 0.008 NegSkewPd 0.0003 0.1 0.921 PLPeakRatio −1.2149 −6.27 0 PLNadirRatio 0.6110 4.07 0 PLPeakd 0.0000 −5.65 0 PLNadird 0.0000 3.75 0 CVPL 11.9449 4.01 0 PosSkewPLd −0.0047 −0.51 0.613 NegSkewPLd 0.0044 0.75 0.456 Adjusted R2 0.4814 Number of 8585 Observations indicates data missing or illegible when filed\n\nThe parameter estimates presented in Table 1 can permit the calculation of a revised forecast. This can be done by first calculating the predicted value of the error variable based on the observed values of the Sparks Ratio and the other variables on the right hand sign of equation (2). The revised forecast can be obtained by taking the antilog of the predicted values and multiplying the resulting value by the level of load forecasted by the system operator.\n\nReferring to FIG. 6, by way of example, an illustrative depiction of a report is shown depicting the results of an exemplary out-of-sample test of the methodology disclosed herein for the PGE service territory in California over the period 1 Apr. 2010 through 31 Dec. 2010. Over this period, CASISO's day-ahead forecasts had a root-mean-squared-error of approximately 4.2 percent of mean load. Using the methodology presented above, the root-mean-squared-error of the revised forecasts is about 3 percent of mean load.\n\nIn exemplary embodiments, the model implemented in Equation (2) can be estimated using a multivariable fractional polynomial (MFP) model. In other embodiments, other functional forms where the variables/factors have different exponent values may be determined. In some embodiments, other functional forms may include one or more variables/factors used more than once with different exponents.\n\nAs an example, Equation 3 illustrates the results of an exemplary model where factors such as Positive Skewness in the Forcasted Load, and Negative Skewness in the Forecasted Load are each represented twice in the equation as separate variables with different exponents. Though Equation 3 shows each variable assigned an whole number exponent such as +1, −1, +2, etc., other non-integer exponents can be assigned to one or more variables, including for example fractions and decimals.\n\n$ Equation ( 3 ) ln ForecastError hd = const + ∑ j = 2 24 α j Hour j ? ∑ k = 2 7 δ k Day k ? ∑ i = 2 12 μ i Month i ? β 1 ? ? β 2 ? ? β 3 CVP d - 1 ? β 4 PosSkewP d ? β 5 NegSkewP d ? β 6 FLPeakRatio d ? β 7 FLNadirRatio d ? β 8 ? ? β 9 FLNadir d ? β 10 ? ? β 11 PosSkewFL d - 2 ? β 12 NegSkewFL d - 2 ? β 13 ? ? β 14 ? ? indicates text missing or illegible when filed ( 3 )$\n\nIn exemplary embodiments, the functional form of Equation 3 is used to calculate a new set of coefficients (β1, β2, etc.) each which is assigned to a variable, using the sampled data from for the PGE service territory in California using hourly data for the sample period 1 Apr. 2009 through 31 Mar. 2010.\n\nIn exemplary embodiments, a regression equation, like Equation 3, may be analyzed, for example using such techniques as autocorrelation to determine any systematic errors. For example, the residual, or the difference between a predicted load from a model, such as may be predicted using Equation 3, and the actual load, may be calculated. The residual may be further analyzed by calculating the autocorrelation of the residual.\n\nFor example, using Equation 3 and the coefficients from the sampled data, an autocorrelation of the residual can be calculated, the results of which are shown in FIG. 11. FIG. 11 shows when the autocorrelation of the residual is plotted over time, a “hidden” pattern is revealed. In this case, the plot shows the residual being correlated, specifically shown with a repeated series of peaks and valleys. The peaks and valleys may correlate with hourly, daily, weekly, etc. energy trends of power utilization trends of users.\n\nGenerally, in embodiments, a regression analysis can be further applied to reduce the range of the residual to appear substantially as random or “white noise”. For example, in FIG. 11, the boxed area represents an area representing the range in which the residual should be substantially contained within, thus reducing the effect of a systematic error.\n\nBy way of example, in exemplary embodiments, a postulated equation, such as the Forecast Error equation set forth as Equation 3, may be modified to better fit the data and reduce or eliminate the effect of systematic error, such as illustrated in FIG. 11. For example, in exemplary embodiments, the error terms or the residual from an equation may be subjected to an autoregressive-moving-average (ARMA) analysis to refine the original equation to reduce or eliminate systematic errors. In an ARMA model the disturbances (i.e., the differences between the predicted and actual value of the one or more dependent variables) have a linear autoregressive moving-average (ARMA) specification over the period in which the model is estimated. In the simple case of an ARMA (1,1) model, the residual error term in period t, ut, depends on the residual term in the previous period t−1, ut-1, a measure of the “pure” error in period t, εt, and a weighted measure of the pure error term in period t−1, β1t-1, where β1 is an estimated parameter. These calculations can be programmed to be performed by a computer.\n\nIn embodiments, an ARMA analysis applied to an equation may be used to refine that equation to reduce or eliminate systematic errors. For example, applying an ARMA analysis or procedure to the updated regression equation, disturbances from the regression equation may be modeled. Regarding the updated regression equation, the periods/hours times where disturbances affect the regression equation are found to be, using an autoregressive analysis, are 1, 2, 3, 4, 24, 48, 72, 96, 120, 144, 168, and 192. Using a moving average analysis, the disturbances are found to be located at periods/hours 1 through 36, 48, 65, 72, 96, 120, 144, 168, and 192. Applying the ARMA procedure, a new regression equation with new coefficients for one or more of the variables/factors of the updated regression equation can be calculated. FIG. 12 illustrates, an embodiment, where a new updated plot of the autocorrelation of the residual of the updated regression equation after applying the ARMA procedure. In contrast to FIG. 11, in this exemplary embodiment, the residual autocorrelation here is almost fully located within the boxed area, or within an acceptable error range.\n\nIn exemplary embodiments, the output consumers system 102 affiliated with a prediction error system 104 and/or a stand alone prediction error system 104 may determine the load forecasting error by using, amongst other things, equation (4):\n\nwhere:\n\nFDeltaLhd (Forecasted_Delta_Load) can be substantially equal to, for example, the ratio of the forecasted load in hour h, day d, to the forecasted load in hour (h−1), day d\n\nGSigmaFLhd (Geo_Sigma_Forecasted_Load) is the geometric standard deviation in FDeltaLhd over the course of the 24 hours of each day\n\nPeakSparksRatiohd (Peak_Sparks_Ratio) can be a measure of the highest day-ahead price of electricity relative to the price of natural gas.\n\nAvPeakFLd (Average_Peak_Forecasted Load) is the average value of the forecasted load for the day relative to the peak level of forecasted load for the day\n\nThe remaining variables are defined above herein.\n\nIn exemplary embodiments, one or more forecasting equations, such as, for example, equation 4, may include variables relating to the volume of energy traded in the day-ahead electricity market, such as for example, day-ahead hourly volume, the mean daily volume, the coefficient of variation in the daily volume, and the skewness in the volume, to name a few. In some embodiments, for situations regarding power grids where natural gas is not the primary fuel, variables relating to the price of electricity relative to the price of coal may be used in forecasting equation. The price of coal may be normalized in United States Dollars (USD) per Megawatt-hour (MWh) or any other equivalent such as Euros per Megawatt-hour (EUR/MWh), and the like.\n\nFor example, power grids such as PJM (PJM Interconnection is a regional transmission organization “RTO” that coordinates the movement of wholesale electricity in all or parts of 13 states and the District of Columbia.) may report the volume of day-ahead generation offers. Therefore variables such as, for example, day-ahead hourly volume, the mean daily volume, the coefficient of variation in the daily volume, and the skewness in the volume, and the like, may be a part in one or more forecasting equations and applied to one or more power grids according to exemplary embodiments described herein.\n\nFor example, some day-ahead electricity markets may report the volume of day-ahead market activity (e.g., Elspot in Scandinavia). Therefore variables such as day-ahead hourly volume, the mean daily volume, the coefficient of variation in the daily volume, and the skewness in the volume, and the like, may be a part in one or more forecasting equations and applied to one or more power grids according to exemplary embodiments described herein.\n\nAs can be appreciated, the equations described herein are exemplary and various combinations of variables may be used in forecast error equations. In exemplary embodiments, forecast equations using a MFP model may vary across different electricity markets and may, for example, include different variables, coefficients, and/or exponents.\n\nReferring to FIGS. 2A-2B, to accomplish, amongst other things, the above predictions it will be understood that any of competing generators/retailers system 100, output consumers system 102, and/or prediction error system 104 can communicate with each other and/or can be further combined and/or separated. For ease, competing generators/retailers system 100, output consumers system 102, and/or prediction error system 104 are, at times, shown separately. This is merely for ease and is in no way meant to be a limitation.\n\nStill referring to FIGS. 2A-2B, in exemplary embodiments, output consumers system 102 and prediction error system 104 can be separate and/or distinct as shown in FIG. 2A and/or output consumers system 102 and prediction error system 104 can be combined as one step. For ease, the predictions are, at times, disclosed as being affiliated with prediction error system 104. This is merely for ease and is in no way meant to be a limitation.\n\nFurther, any element of competing generators/retailers system 100, output consumers system 102, and/or prediction error system 104 can reside on and/or be affiliated with output consumers system 102, competing generators/retailers system 100, prediction error system 104. For example, competing generators/retailers system 100 can be an algorithm stored in processor readable memory that can be accessed and/or processed by a processor affiliated with output consumers system 102. Further still, competing generators/retailers system 100 can reside on and/or be affiliated with prediction error system 104. For example, competing generators/retailers system 100 can be an algorithm stored in processor readable memory that can be accessed and/or processed by a processor affiliated with prediction error system 104.\n\nIn exemplary embodiments, competing generators/retailers system 100, output consumers system 102, and/or prediction error system 104 can include, but is not limited to, at least one communication portal; at least one graphical user interface; at least one user input; at least one speaker; at least one processor readable memory; at least one processor; and any other reasonable components for use in communicating information (e.g., data), storing information, and processing any form of information.\n\nIn exemplary embodiments, competing generators/retailers system 100, output consumers system 102, and/or prediction error system 104 can be, for example, a mobile phone, computer, networking system, iPad, iPod, iPhone, Smartphone, and Blackberry, to name a few.\n\nNow that exemplary embodiments of the present disclosure have been shown and described in detail, various modifications and improvements thereon will become readily apparent to those skilled in the art.\n\n## Claims\n\n1. A method of adjusting forecast load predictions on an electric grid using one or more operatively connected computers, the method comprising:\n\nobtaining, at the one or more computers, electrical grid information comprising: a day-ahead profile of a forecasted load for the electric grid, a day-ahead sparks ratio, a day-ahead price profile, and an hourly forecasted load relative to the forecasted profile;\naccessing, one or more databases operatively connected to the one or computers, electrical grid historical data;\ncalculating, by the one or more computers, coefficients for a forecast error equation by performing a regression analysis using the historical data, the forecast equation being a function of day-ahead sparks ratio, day-ahead price profile, day-ahead profile of forecasted load, and hourly forecasted load relative to the forecasted profile;\ncalculating, by the one or more computers, forecast prediction errors by applying data from the obtained electrical grid information to the forecast error equation with the calculated coefficients; and\nproviding, by the one or more computers, one or more electronic reports containing forecast errors for the electric grid.\n\n2. The method of claim 1, the method further comprising:\n\ncalculating, by the one or more computers, one or more residual terms as the differences between i) predicted errors from the historical data using the forecast error equation, and ii) actual errors from the historical data;\napplying, by the one or more computers, the residual terms to an auto-regressive moving average analysis, so as to determine one or more disturbances at one or more time times; and\ncalculating, by the one or more computers, a new set of coefficients for the forecast error equation based on the auto-regressive moving average analysis.\n\n3. The method of claim 1, wherein the forecast error equation is a multivariable fractional polynomial model.\n\n4. The method of claim 1, wherein the forecast error equation comprises a Coefficient of Variation variable calculated over a day, using one or more computers, as the ratio of standard deviation of the day-ahead prices to the average hourly price.\n\n5. The method of claim 1, wherein the forecast error equation comprises a Positive Skewness variable calculated over a day, using one or more computers, as values equal to the absolute value of the skewness in the day ahead prices.\n\n6. The method of claim 1, wherein the forecast error equation comprises a Negative Skewness variable calculated over a day, using one or more computers, as values equal to the absolute value of the skewness in the day ahead prices.\n\n7. The method of claim 1, wherein the forecast error equation comprises a Forecasted Load Peak Ratio variable calculated over a day, using one or more computers, as the ratio of the forecasted load to the forecasted peak load.\n\n8. The method of claim 1, wherein the forecast error equation comprises a Forecasted Load Nadir Ratio variable calculated over a day, using one or more computers, as the ratio of the forecasted load to the forecasted minimum load.\n\n9. The method of claim 1, wherein the forecast error equation comprises a Forecasted Load Peak variable equal to values of the forecasted peak hourly load for a day.\n\n10. The method of claim 1, wherein the forecast error equation comprises a Forecasted Load Nadir variable equal to values of the forecasted minimum hourly load for a day.\n\n11. The method of claim 1, wherein the forecast error equation comprises a Coefficient of Variation Forecasted Load Variable calculated over a day, using one or more computers, as the ratio of standard deviation of the day prices to the average hourly price.\n\n12. The method of claim 1, wherein the forecast error equation comprises a Positive Skewness Forecasted Load Variable calculated, using one or more computers, as equal to the skewness in the day-ahead forecasted hourly load when the skewness is positive.\n\n13. The method of claim 1, wherein the forecast error equation comprises a Negative Skewness Forecasted Load variable calculated, using one or more computers, as equal the absolute skewness in the day-ahead forecasted hourly load when the skewness is negative.\n\n14. The method of claim 1, wherein the forecast error equation comprises a Forecasted Delta Load variable calculated over a day, using one or more computers, as equal to the ratio of a forecasted load at a first time to a forecasted load at previous time.\n\n15. The method of claim 14, wherein the forecast error equation comprises a Geo Sigma Forecasted Load variable calculated over a day, using one or more computers, as the geometric standard deviation of the Forecasted Delta Load variable.\n\n16. The method of claim 1, wherein the forecast error equation comprises a Peak Sparks Ratio variable equal to the ratio of the highest day-ahead price of electricity relative to the price of a fuel used to generate electricity.\n\n17. The method of claim 1, wherein the forecast error equation comprises an Average Peak Forecasted Load variable calculated as, using one or more computers, as the average value of the forecasted load for the day relative to the peak level of the forecasted load for the day.\n\n18. The method of claim 1, wherein the forecast error equation comprises a day-ahead hourly volume of energy traded variable.\n\n19. The method of claim 1, wherein the forecast error equation comprises a mean daily volume of energy traded variable.\n\n20. The method of claim 1, wherein the forecast error equation comprises a coefficient of variation in the daily volume of energy traded variable.\n\n21. The method of claim 1, wherein the forecast error equation comprises a skewness in the volume of energy traded variable.\n\n22. The method of claim 1, wherein the sparks ratio is the day-ahead electricity prices relative to the prices of the fuel used to generate electricity.\n\n23. The method of claim 22, wherein the fuel is natural gas.\n\n24. The method of claim 22, wherein the fuel is coal.\n\n25. The method of claim 22, wherein the fuel is oil.\n\nPatent History\nPublication number: 20130096983\nType: Application\nFiled: Apr 4, 2012\nPublication Date: Apr 18, 2013\nPatent Grant number: 10127568\nApplicant: THE CATHOLIC UNIVERSITY OF AMERICA (Washington, DC)\nInventors: Kevin F. Forbes (Silver Spring, MD), Ernest M. Zampelli (Ellicott City, MD), O. Chris S. St. Cyr (Greenbelt, MD)\nApplication Number: 13/438,936\nClassifications\nCurrent U.S. Class: Market Prediction Or Demand Forecasting (705/7.31)\nInternational Classification: G06Q 30/02 (20120101); G06Q 10/06 (20120101);"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.886063,"math_prob":0.9368882,"size":48729,"snap":"2022-27-2022-33","text_gpt3_token_len":9612,"char_repetition_ratio":0.18276039,"word_repetition_ratio":0.4907068,"special_character_ratio":0.18986641,"punctuation_ratio":0.10399818,"nsfw_num_words":1,"has_unicode_error":false,"math_prob_llama3":0.9563328,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-08-19T15:22:08Z\",\"WARC-Record-ID\":\"<urn:uuid:998965f6-b25d-4e05-9006-62eef7a4fe08>\",\"Content-Length\":\"135205\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:4e5cdf57-dee3-4c9a-afff-ec1608e4661a>\",\"WARC-Concurrent-To\":\"<urn:uuid:56fee179-0bd0-4d46-a1c2-d31a33751474>\",\"WARC-IP-Address\":\"44.209.20.103\",\"WARC-Target-URI\":\"https://patents.justia.com/patent/20130096983\",\"WARC-Payload-Digest\":\"sha1:5QQSH2NHT2VAARPT4SCGEUJRQ4YDDEKV\",\"WARC-Block-Digest\":\"sha1:FR7GIATZAP5BNDLIF75TIZPI42KMBZQ7\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-33/CC-MAIN-2022-33_segments_1659882573699.52_warc_CC-MAIN-20220819131019-20220819161019-00245.warc.gz\"}"} |
http://www.reviewcivilpe.com/closed-conduit-hydraulics-darcy-weisbach-equation/ | [
"# Closed Conduit Hydraulics – Darcy-Weisbach Equation\n\nThe Darcy-Weisbach equation is used to determine flow characteristics in closed conduit systems (pipes). It is probably more common than the Hazen-Williams equation due to it being able to solve for systems in both laminar AND turbulent flow.\n\n$$h_f = f \\frac{L}{D} \\frac{V^2}{2g}$$\n\n• headloss $$h_f$$ (ft)\n• friction factor $$f$$, length $$L$$\n• length $$L$$ (ft)\n• diameter $$D$$ (ft)\n• velocity $$V$$ $$\\frac{ft}{s}\\) • gravity g $$32.2 \\frac{ft}{s^2}$$ #### Friction Factor The friction factor $$f is either given or must be calculated using a Moody-Stanton diagram (available in both the AIO and CERM). Getting the friction factor from a Moody-Stanton chart requires the Reynolds Number \\(Re$$, and relative roughness $$\\frac{\\epsilon}{D}$$. #### Relative Roughness The absolute roughness $$\\epsilon$$ is usually given by what material the pipe is made of (e.g. cast iron, concrete, streel) and requires a table look up. The relative roughness is this table value divided by the diamater $$D$$. #### Reynolds Number$$ \\frac{VD}{v} \n\nWhere V is the velocity of the fluid, D is the diameter, and v is the kinamatic viscosity of the fluid. The standard kinematic viscosity to use is $$1.217 * 10^{-5} \\frac{ft^2}{s}$$.\n\nFind the line that corresponds to the relative roughness and follow it to where it lines up with the Reynold Number. The friction factor $$f$$ is directly horizontal from that point. Practice looking these things up the Moody-Stanton graph will become your fast friend!\n\nRemember $$Q = \\frac{V}{A}$$ and to keep units in check.",
null,
""
] | [
null,
"http://2.gravatar.com/avatar/8872b8762cf4ac4d415c97260836d524",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.81595075,"math_prob":0.99973506,"size":1780,"snap":"2023-14-2023-23","text_gpt3_token_len":467,"char_repetition_ratio":0.10191441,"word_repetition_ratio":0.0,"special_character_ratio":0.26629212,"punctuation_ratio":0.0931677,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9999536,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-07T05:34:02Z\",\"WARC-Record-ID\":\"<urn:uuid:65722b80-e706-4b4e-b243-f60d987b875f>\",\"Content-Length\":\"33353\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:9a0052ba-7934-4065-9f38-7e2e63c80020>\",\"WARC-Concurrent-To\":\"<urn:uuid:c94ca545-947d-4499-a5fe-38b9746e81b5>\",\"WARC-IP-Address\":\"64.90.41.200\",\"WARC-Target-URI\":\"http://www.reviewcivilpe.com/closed-conduit-hydraulics-darcy-weisbach-equation/\",\"WARC-Payload-Digest\":\"sha1:USWXDALZ5YJUUTLQWTSKGGKLIHWRPML7\",\"WARC-Block-Digest\":\"sha1:TIL6PWS57TP4G2BJGHIMFIVXCEEEIGFS\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224653608.76_warc_CC-MAIN-20230607042751-20230607072751-00517.warc.gz\"}"} |
https://balbhartisolutions.com/maharashtra-board-class-5-maths-solutions-chapter-7-problem-set-31/ | [
"Balbharti Maharashtra Board Class 5 Maths Solutions Chapter 7 Circles Problem Set 31 Textbook Exercise Important Questions and Answers.\n\n## Maharashtra State Board Class 5 Maths Solutions Chapter 7 Circles Problem Set 31\n\nQuestion 1.\nIn the figure given alongside, points S, L, M, and N are on the circle. Answer the questions with the help of the diagram.",
null,
"",
null,
"(1) Write the names of the arcs with end-points S and M.\nArcs with the end-points S and M are, arc SLM and arc SNM.\n\n(2) Write the names of the arcs with the end-points L and N.\nArcs with the end-points L and N are, arc LMN and arc LSN.\n\nQuestion 2.\nWrite the names of arcs that points A, B, C, and D in the given circle give rise to.\nArcs with end-points A and C are, arc ABC and arc ADC.\nArcs with end-points B and D are, arc BAD and arc BCD.\n\nQuestion 3.\nGive the names of the arcs that are made by points P, Q, R, S, and T in the figure.\nTaking end-points : P and R, arc PQR, arc PTR.\nTaking end-points: Q and S, arc QRS, arc QTS\nTaking end-points : R and T, arc RST, arc RPT\nTaking end-points : S and P, arc STP, arc SRP\nTaking end-points: Q and T, arc QPT, arc QST",
null,
"Question 4.\nMeasure and note down the circumference of different circular objects. (It is convenient to use a measuring tape for this purpose.)\n\nQuestion 1.\nDraw circles with the radii given below:\n(1) 1.2 cm",
null,
"(2) 2.5 cm",
null,
"",
null,
"(3) 3.3 cm",
null,
"Question 2.\nWrite true or false for the following statements:\n(1) Longest chord is a diameter.\n(2) Centre is not lying on the diameter.\n(3) All chords are of equal length.\n(4) All chords passes through the centre.\n(1) True\n(2) False\n(3) False\n(4) False",
null,
"Question 3.\nMatch the cplumns (A) and (B):",
null,
"(1) ↔ (c),\n(2) ↔ (a),\n(3) ↔ (d),\n(4) ↔ (b)\n\nQuestion 4.\nComplete the following table by filling in the blanks:",
null,
"(1) 6 cm\n(2) 10 cm\n(3) 34 cm\n(4) 9 cm",
null,
"Question 5.\nFrom the following figure, fill in the blanks:",
null,
"(1) If OP = 4cm then AB = _________ cm, OA = _________ cm, OB = _________ cm.\n(2) If AB = 10 cm then OA = _________ cm, OB = _________ cm, OP = _________ cm.\n(1) AB = 8 cm, OA = 4 cm, OB = 4 cm\n(2) OA = 5 cm, OB = 5 cm, OP = 5 cm\n\nQuestion 6.\nIn the table below, write the names of the points in the interior and exterior of the circle and those on the circle.",
null,
"Points in the exterior of the circle are A, F and G.\nPoints in the interior of the circle are O, E and B, and Points on the circle are C, D and H.",
null,
"Question 7.\nRadius of a circle with centre P is 4 cm. Fill in the blanks.\n(1) The, point A is at a distance of 5 cm from the centre P. Flence the point A lies in the ________ of the circle.\n(2) Point B is at a distance of 4 cm. from the centre P. Hence the point B lies ________ circle.\n(3) Point C lies at a distance 3 cm from the centre P. Hence it lies in the ________ of the circle.\n(1) Exterior\n(2) on the circle\n(3) interior\n\nQuestion 8.\nSolve the following:\n(1) What is the length of the diameter of a circle of radius 6 cm?\n(2) What is the length of the radius of a circle of diameter 14 cm?\n(3) Give the names of the arcs that are made by points X, Y, Z and W in this picture.",
null,
"(4) Give the names of the arc that are made by points E, F, G and H, taking end points E and G.",
null,
"",
null,
"(5) If the diameter of a circle is 7 cm. what is the length of the circumference? (Use measure tap)"
] | [
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-1.png",
null,
"https://i0.wp.com/balbhartisolutions.com/wp-content/uploads/2020/09/Maharashtra-Board-Solutions.png",
null,
"https://i0.wp.com/balbhartisolutions.com/wp-content/uploads/2020/09/Maharashtra-Board-Solutions.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-2.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-3.png",
null,
"https://i0.wp.com/balbhartisolutions.com/wp-content/uploads/2020/09/Maharashtra-Board-Solutions.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-4.png",
null,
"https://i0.wp.com/balbhartisolutions.com/wp-content/uploads/2020/09/Maharashtra-Board-Solutions.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-7.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-8.png",
null,
"https://i0.wp.com/balbhartisolutions.com/wp-content/uploads/2020/09/Maharashtra-Board-Solutions.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-9.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-10.png",
null,
"https://i0.wp.com/balbhartisolutions.com/wp-content/uploads/2020/09/Maharashtra-Board-Solutions.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-11.png",
null,
"https://balbhartisolutions.com/wp-content/uploads/2021/05/Maharashtra-Board-Class-5-Maths-Solutions-Chapter-7-Circles-Problem-Set-31-12.png",
null,
"https://i0.wp.com/balbhartisolutions.com/wp-content/uploads/2020/09/Maharashtra-Board-Solutions.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8378004,"math_prob":0.99222755,"size":3602,"snap":"2021-43-2021-49","text_gpt3_token_len":1102,"char_repetition_ratio":0.20094498,"word_repetition_ratio":0.09066306,"special_character_ratio":0.32565242,"punctuation_ratio":0.1486175,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9940607,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34],"im_url_duplicate_count":[null,1,null,null,null,null,null,1,null,1,null,null,null,1,null,null,null,1,null,1,null,null,null,1,null,1,null,null,null,1,null,1,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-10-21T12:47:21Z\",\"WARC-Record-ID\":\"<urn:uuid:5cb5af42-d89e-4148-98e3-1bc2692c3cd4>\",\"Content-Length\":\"41804\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:dd0a3be5-209c-45a3-a04b-812a6b02e7e8>\",\"WARC-Concurrent-To\":\"<urn:uuid:dd45494f-1cfe-4b06-83bd-b474fa3e1915>\",\"WARC-IP-Address\":\"172.105.50.94\",\"WARC-Target-URI\":\"https://balbhartisolutions.com/maharashtra-board-class-5-maths-solutions-chapter-7-problem-set-31/\",\"WARC-Payload-Digest\":\"sha1:OSGFSAARHNX6NL5J5VNC6P5244CC3QJO\",\"WARC-Block-Digest\":\"sha1:F2TGKADAMJPCXUKRIO2J4B7NAKBRTQV5\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-43/CC-MAIN-2021-43_segments_1634323585405.74_warc_CC-MAIN-20211021102435-20211021132435-00467.warc.gz\"}"} |
https://docs.opencv.org/3.4/d2/d71/classcv_1_1xfeatures2d_1_1Elliptic__KeyPoint.html | [
"",
null,
"OpenCV 3.4.17-dev Open Source Computer Vision\ncv::xfeatures2d::Elliptic_KeyPoint Class Reference\n\nElliptic region around an interest point. More...\n\n#include <opencv2/xfeatures2d.hpp>\n\nInheritance diagram for cv::xfeatures2d::Elliptic_KeyPoint:",
null,
"Public Member Functions\n\nElliptic_KeyPoint ()\n\nElliptic_KeyPoint (Point2f pt, float angle, Size axes, float size, float si)\n\nvirtual ~Elliptic_KeyPoint ()",
null,
"Public Member Functions inherited from cv::KeyPoint\nKeyPoint ()\nthe default constructor More...\n\nKeyPoint (Point2f pt, float size, float angle=-1, float response=0, int octave=0, int class_id=-1)\n\nKeyPoint (float x, float y, float size, float angle=-1, float response=0, int octave=0, int class_id=-1)\n\nsize_t hash () const\n\nPublic Attributes\n\nSize_< float > axes\nthe lengths of the major and minor ellipse axes More...\n\nfloat si\nthe integration scale at which the parameters were estimated More...\n\nMatx23f transf\nthe transformation between image space and local patch space More...",
null,
"Public Attributes inherited from cv::KeyPoint\nfloat angle\n\nint class_id\nobject class (if the keypoints need to be clustered by an object they belong to) More...\n\nint octave\noctave (pyramid layer) from which the keypoint has been extracted More...\n\nPoint2f pt\ncoordinates of the keypoints More...\n\nfloat response\nthe response by which the most strong keypoints have been selected. Can be used for the further sorting or subsampling More...\n\nfloat size\ndiameter of the meaningful keypoint neighborhood More...",
null,
"Static Public Member Functions inherited from cv::KeyPoint\nstatic void convert (const std::vector< KeyPoint > &keypoints, std::vector< Point2f > &points2f, const std::vector< int > &keypointIndexes=std::vector< int >())\n\nstatic void convert (const std::vector< Point2f > &points2f, std::vector< KeyPoint > &keypoints, float size=1, float response=1, int octave=0, int class_id=-1)\n\nstatic float overlap (const KeyPoint &kp1, const KeyPoint &kp2)\n\nDetailed Description\n\nElliptic region around an interest point.\n\n◆ Elliptic_KeyPoint() [1/2]\n\n cv::xfeatures2d::Elliptic_KeyPoint::Elliptic_KeyPoint ( )\n\n◆ Elliptic_KeyPoint() [2/2]\n\n cv::xfeatures2d::Elliptic_KeyPoint::Elliptic_KeyPoint ( Point2f pt, float angle, Size axes, float size, float si )\n\n◆ ~Elliptic_KeyPoint()\n\n virtual cv::xfeatures2d::Elliptic_KeyPoint::~Elliptic_KeyPoint ( )\nvirtual\n\n◆ axes\n\n Size_ cv::xfeatures2d::Elliptic_KeyPoint::axes\n\nthe lengths of the major and minor ellipse axes\n\n◆ si\n\n float cv::xfeatures2d::Elliptic_KeyPoint::si\n\nthe integration scale at which the parameters were estimated\n\n◆ transf\n\n Matx23f cv::xfeatures2d::Elliptic_KeyPoint::transf\n\nthe transformation between image space and local patch space\n\nThe documentation for this class was generated from the following file:"
] | [
null,
"https://docs.opencv.org/3.4/opencv-logo-small.png",
null,
"https://docs.opencv.org/3.4/d2/d71/classcv_1_1xfeatures2d_1_1Elliptic__KeyPoint.png",
null,
"https://docs.opencv.org/3.4/closed.png",
null,
"https://docs.opencv.org/3.4/closed.png",
null,
"https://docs.opencv.org/3.4/closed.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7195985,"math_prob":0.945086,"size":2447,"snap":"2022-05-2022-21","text_gpt3_token_len":658,"char_repetition_ratio":0.16577978,"word_repetition_ratio":0.16938111,"special_character_ratio":0.2529628,"punctuation_ratio":0.24776785,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9585438,"pos_list":[0,1,2,3,4,5,6,7,8,9,10],"im_url_duplicate_count":[null,null,null,1,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-01-17T09:02:40Z\",\"WARC-Record-ID\":\"<urn:uuid:2e36b85b-931d-4de0-934c-ebb9d98dcde7>\",\"Content-Length\":\"29036\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:34af919f-0b4c-458d-95a8-9cfaeeea34b3>\",\"WARC-Concurrent-To\":\"<urn:uuid:c6c57a50-8bcc-4121-a500-09affce107a5>\",\"WARC-IP-Address\":\"172.67.218.21\",\"WARC-Target-URI\":\"https://docs.opencv.org/3.4/d2/d71/classcv_1_1xfeatures2d_1_1Elliptic__KeyPoint.html\",\"WARC-Payload-Digest\":\"sha1:YBS2WAXLX2VMTURCTMRILIB6F64SNLTM\",\"WARC-Block-Digest\":\"sha1:HYIMKJXSSKG3DXSFVXEBPHV73AJXAS6T\",\"WARC-Identified-Payload-Type\":\"application/xhtml+xml\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-05/CC-MAIN-2022-05_segments_1642320300343.4_warc_CC-MAIN-20220117061125-20220117091125-00615.warc.gz\"}"} |
https://golangfix.com/valid-parenthesis-problem-index-out-of-range-go/ | [
"# Valid Parenthesis Problem Index Out of Range (Go)\n\n## Issue\n\nI was converting code for a problem I previously solved in Python into Go and ran into a runtime error: index out of range with length 1 on this line\n\n`````` if string(s[i]) == \")\" && arr[len(s) - 1] == \"(\"{\n``````\n\nHere is the code in entirety.\n\n``````func isValid(s string) bool {\narr := make([]string, 0)\nif len(s) < 2 {\nreturn false\n}\n\nfor i := 0; i < len(s); i++ {\n\nif string(s[i]) == \"(\" || string(s[i]) == \"[\" || string(s[i]) == \"{\" {\narr = append(arr, string(s[i]))\n} else if string(s[i]) == \")\" || string(s[i]) == \"]\" || string(s[i]) == \"}\" {\nif len(arr) >= 1 {\nif string(s[i]) == \")\" && arr[len(s) - 1] == \"(\"{\narr = arr[:len(arr) -1]\n} else if string(s[i]) == \"]\" && arr[len(s) - 1] == \"[\" {\narr = arr[:len(arr) -1]\n} else if string(s[i]) == \"}\" && arr[len(s) - 1] == \"{\" {\narr = arr[:len(arr) -1]\n} else {\nreturn false\n}\n}else {\nreturn false\n}\n}\n}\nif reflect.DeepEqual(arr, []string{\"\"}) {\nreturn true\n} else {\nreturn false\n}\n\n}\n\n``````\n\nWhat is the cause of the issue?\n\n## Solution\n\nYou’ve used `len(s)-1` to find the last index of `arr`, but it should be `len(arr)-1`.\n\nHere’s a working version of your code, that fixes some additional bugs, and avoids needless conversion to string for single characters. https://go.dev/play/p/sazf2RguoIr\n\n``````package main\n\nimport \"fmt\"\n\nfunc isValid(s string) bool {\nvar arr []rune\nfor _, c := range s {\nif c == '(' || c == '[' || c == '{' {\narr = append(arr, c)\n} else if c == ')' || c == ']' || c == '}' {\nif len(arr) == 0 {\nreturn false\n}\nvar last rune\narr, last = arr[:len(arr)-1], arr[len(arr)-1]\nif c == ')' && last != '(' || c == ']' && last != '[' || c == '}' && last != '{' {\nreturn false\n}\n}\n}\nreturn len(arr) == 0\n}\n\nfunc main() {\ncases := []string{\n\"()[({}())]\",\n\"(]\",\n\"((())\",\n\"{{{}}}\",\n\"{{{[][][]}}}\",\n}\nfor _, c := range cases {\nfmt.Println(c, isValid(c))\n}\n}\n``````\n\nAnswered By – Paul Hankin\n\nAnswer Checked By – Senaida (GoLangFix Volunteer)"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.5147724,"math_prob":0.99706125,"size":1855,"snap":"2022-40-2023-06","text_gpt3_token_len":585,"char_repetition_ratio":0.17341977,"word_repetition_ratio":0.121212125,"special_character_ratio":0.45822102,"punctuation_ratio":0.110497236,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99830073,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-10-02T15:39:13Z\",\"WARC-Record-ID\":\"<urn:uuid:0dc6a3ab-69c8-4504-a27e-decfd77e46d3>\",\"Content-Length\":\"48472\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:bd8b109d-945a-4c70-a547-0c677267d3c3>\",\"WARC-Concurrent-To\":\"<urn:uuid:b2dfea93-a6c3-4b9e-92e2-a67df7fe16d4>\",\"WARC-IP-Address\":\"173.82.8.218\",\"WARC-Target-URI\":\"https://golangfix.com/valid-parenthesis-problem-index-out-of-range-go/\",\"WARC-Payload-Digest\":\"sha1:JFRV5K7QSFLNCQA3WGKOB4O7GYFU2ESU\",\"WARC-Block-Digest\":\"sha1:P7Z3ITKHMM7RJMHLZD7XRI34Z7WS6Q62\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-40/CC-MAIN-2022-40_segments_1664030337338.11_warc_CC-MAIN-20221002150039-20221002180039-00734.warc.gz\"}"} |
https://slideplayer.com/slide/7655277/ | [
"",
null,
"# Chapter 2 Functions and Graphs Section 2 Elementary Functions: Graphs and Transformations.\n\n## Presentation on theme: \"Chapter 2 Functions and Graphs Section 2 Elementary Functions: Graphs and Transformations.\"— Presentation transcript:\n\nChapter 2 Functions and Graphs Section 2 Elementary Functions: Graphs and Transformations\n\n2 Identity Function Domain: R Range: R\n\n3 Square Function Domain: R Range: [0, ∞)\n\n4 Cube Function Domain: R Range: R\n\n5 Square Root Function Domain: [0, ∞) Range: [0, ∞)\n\n6 Square Root Function Domain: [0, ∞) Range: [0, ∞)\n\n7 Cube Root Function Domain: R Range: R\n\n8 Absolute Value Function Domain: R Range: [0, ∞)\n\n9 Vertical Shift The graph of y = f(x) + k can be obtained from the graph of y = f(x) by vertically translating (shifting) the graph of the latter upward k units if k is positive and downward |k| units if k is negative. Graph y = |x|, y = |x| + 4, and y = |x| – 5.\n\n10 Vertical Shift\n\n11 Horizontal Shift The graph of y = f(x + h) can be obtained from the graph of y = f(x) by horizontally translating (shifting) the graph of the latter h units to the left if h is positive and |h| units to the right if h is negative. Graph y = |x|, y = |x + 4|, and y = |x – 5|.\n\n12 Horizontal Shift\n\n13 Reflection, Stretches and Shrinks The graph of y = Af(x) can be obtained from the graph of y = f(x) by multiplying each ordinate value of the latter by A. If A > 1, the result is a vertical stretch of the graph of y = f(x). If 0 < A < 1, the result is a vertical shrink of the graph of y = f(x). If A = –1, the result is a reflection in the x axis. Graph y = |x|, y = 2|x|, y = 0.5|x|, and y = –2|x|.\n\n14 Reflection, Stretches and Shrinks\n\n15 Reflection, Stretches and Shrinks\n\n16 Summary of Graph Transformations Vertical Translation: y = f (x) + k k > 0 Shift graph of y = f (x) up k units. k < 0 Shift graph of y = f (x) down |k| units. Horizontal Translation: y = f (x + h) h > 0 Shift graph of y = f (x) left h units. h < 0 Shift graph of y = f (x) right |h| units. Reflection: y = –f (x) Reflect the graph of y = f (x) in the x axis. Vertical Stretch and Shrink: y = Af (x) A > 1: Stretch graph of y = f (x) vertically by multiplying each ordinate value by A. 0 < A < 1: Shrink graph of y = f (x) vertically by multiplying each ordinate value by A.\n\n17 Piecewise-Defined Functions Earlier we noted that the absolute value of a real number x can be defined as Notice that this function is defined by different rules for different parts of its domain. Functions whose definitions involve more than one rule are called piecewise-defined functions. Graphing one of these functions involves graphing each rule over the appropriate portion of the domain.\n\n18 Example of a Piecewise-Defined Function Graph the function\n\n19 Example of a Piecewise-Defined Function Graph the function Notice that the point (2,0) is included but the point (2, –2) is not.\n\nDownload ppt \"Chapter 2 Functions and Graphs Section 2 Elementary Functions: Graphs and Transformations.\"\n\nSimilar presentations"
] | [
null,
"https://slideplayer.com/static/blue_design/img/slide-loader4.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8310844,"math_prob":0.997302,"size":2862,"snap":"2020-10-2020-16","text_gpt3_token_len":829,"char_repetition_ratio":0.17634709,"word_repetition_ratio":0.21602787,"special_character_ratio":0.30992314,"punctuation_ratio":0.111658454,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9994346,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-04-04T03:26:14Z\",\"WARC-Record-ID\":\"<urn:uuid:2ab41432-10dd-4163-beeb-3fd55381eaa0>\",\"Content-Length\":\"157030\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:228420d8-32c5-4bcc-8ad9-ee9fcf09ef60>\",\"WARC-Concurrent-To\":\"<urn:uuid:4ec7eaec-1650-413f-8e00-3dff23148320>\",\"WARC-IP-Address\":\"138.201.54.25\",\"WARC-Target-URI\":\"https://slideplayer.com/slide/7655277/\",\"WARC-Payload-Digest\":\"sha1:S4DN6S4EMNMEXXAFR2KYDF7NNZLIQRUG\",\"WARC-Block-Digest\":\"sha1:H2GLN5PWGWZMIXFFFGV5I7YVJ4CE3KAZ\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-16/CC-MAIN-2020-16_segments_1585370519111.47_warc_CC-MAIN-20200404011558-20200404041558-00084.warc.gz\"}"} |
https://books.google.co.ve/books?id=9MlHAAAAIAAJ&dq=related:ISBN8474916712&lr=&output=html_text&source=gbs_navlinks_s | [
"# A Treatise on Plane and Spherical Trigonometry: And Its Applications to Astronomy and Geodesy\n\nD. C. Heath & Company, 1892 - 368 páginas\n0 Opiniones\nLas opiniones no están verificadas, pero Google revisa que no haya contenido falso y lo quita si lo identifica\n\n### Comentarios de la gente -Escribir un comentario\n\nNo encontramos ningún comentario en los lugares habituales.\n\n### Pasajes populares\n\nPágina 148 - In any triangle the square of any side is equal to the sum of the squares of the other two sides minus twice the product of these two sides and the cosine of their included angle.\nPágina 147 - Law of Sines. — In any triangle the sides are proportional to the sines of the opposite angles.\nPágina 278 - AB'C, we have by (4) cos a' — cos b cos c' + sin b sin c' cos B'AC, or cos(тг— a) = cos b cos(тг— c) + sin b sin(тт — C)COS(тг —A). .-. cos a = cos b cos с + sin b sin с cos A.\nPágina 278 - ... cos a = cos b cos с + sin b sin с cos A ; (2) cos b = cos a cos с + sin a sin с cos в ; ^ A. (3) cos с = cos a cos b + sin a sin b cos C.\nPágina 278 - A cos 6 = cos a cos c + sin a sin c cos B cos c = cos a cos 6 + sin a sin 6 cos C Law of Cosines for Angles cos A = — cos B...\nPágina 6 - Radian is the angle subtended, at the centre of a circle, by an arc equal in length to the radius...\nPágina 17 - If the cosine of A be subtracted from unity, the remainder is called the versed sine of A. If the sine of A be...\nPágina 89 - The logarithm of any power of a number is equal to the logarithm of the number multiplied by the exponent of the power.\nPágina 149 - In every plane triangle, the sum of two sides is to their difference as the tangent of half the sum of the angles opposite those sides is to the tangent of half their difference."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.52581936,"math_prob":0.9877392,"size":3553,"snap":"2022-27-2022-33","text_gpt3_token_len":1191,"char_repetition_ratio":0.10989011,"word_repetition_ratio":0.072463766,"special_character_ratio":0.4171123,"punctuation_ratio":0.06419401,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99869543,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-08-09T20:06:25Z\",\"WARC-Record-ID\":\"<urn:uuid:21c49903-b905-4c44-a039-9d85befba871>\",\"Content-Length\":\"154751\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:662d5dc3-3ed5-4c27-86a7-be493c835262>\",\"WARC-Concurrent-To\":\"<urn:uuid:21e27f20-0586-487a-ad54-7e35e8cfbd19>\",\"WARC-IP-Address\":\"172.253.115.102\",\"WARC-Target-URI\":\"https://books.google.co.ve/books?id=9MlHAAAAIAAJ&dq=related:ISBN8474916712&lr=&output=html_text&source=gbs_navlinks_s\",\"WARC-Payload-Digest\":\"sha1:6ESHZOPBK4MHHNDBUWNB4RG4YJAABA34\",\"WARC-Block-Digest\":\"sha1:HDIBBFZ7R3CIB4B32SIZQGCNPXTF5O6J\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-33/CC-MAIN-2022-33_segments_1659882571086.77_warc_CC-MAIN-20220809185452-20220809215452-00230.warc.gz\"}"} |
https://emresahin.net/patch-histogram/ | [
"This post will introduce a new feature for binary blobs like connected components in a text.\n\nThe feature is called patch histogram and it's the histogram of 3x3 patches of black and white pixels. We collect all 3x3 patches and count their frequency.\n\n3x3 patch for a binary image contains \\$2^9 = 512\\$ different combinations. For each of these combinations, we assign a number. I wrote the implementation in Python and here is a lookup table that converts all possible 3x3 patches to their ids.\n\n``````patch_histogram_dict = {}\nfor f in range(0, 512):\ni22 = f & 1\ni21 = (f >> 1) & 1\ni20 = (f >> 2) & 1\ni12 = (f >> 3) & 1\ni11 = (f >> 4) & 1\ni10 = (f >> 5) & 1\ni02 = (f >> 6) & 1\ni01 = (f >> 7) & 1\ni00 = (f >> 8) & 1\npatch_histogram_dict[ma(i00, i01, i02, i10, i11, i12, i20, i21, i22)] = f\n``````\n\nI was looking a skeleton feature that can be applied to components after medial axis transform. However, we will use binarized connected component images directly in this version and take a look at skeletal version later.\n\nAbove, we used a function `ma` to convert a set of numbers to a tuple of tuples. It's simple as\n\n``````def ma(i00, i01, i02, i10, i11, i12, i20, i21, i22):\nreturn ((i00, i01, i02),\n(i10, i11, i12),\n(i20, i21, i22))\n``````\n\nThe first step in feature generation is marking each pixel of the image with its id. Then a simple `np.histogram` call generates the histogram.\n\n``````for i in range(1, rows - 1):\nfor j in range(1, cols - 1):\ns = framed[(i-1):(i+2), (j-1):(j+2)]\nmarks[i-1, j-1] = patch_dict[ma(s[0, 0], s[0, 1], s[0, 2],\ns[1, 0], s[1, 1], s[1, 2],\ns[2, 0], s[2, 1], s[2, 2])]\n``````\n\n=framed= is a copy of the original image with a 1 pixel frame, so that boundary pixel are also counted without much checking. `patch_dict` is a parameter that the function receives. Its default value is the dictionary that we made above, but any kind of patch dictionaries can be used.\n\nThe feature is a call to `numpy.histogram` as follows\n\n``````histogram = numpy.histogram(marked_points,\nhist_range,\ndensity=True,\nbins=bins)\n``````\n\n=marked~points~= are the result of above pixel counting loop. `hist_range` is the minimum and maximum value for the patch dictionary. `density` parameter is True, so that the histogram is normalized to 1 and feature become size invariant. `bins` is a parameter we can set freely, but by default it's equal to the range of elements.\n\nThe comparison can be done with standard histogram comparison methods, like EMD or Chi Square distance metrics."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.84228057,"math_prob":0.99590975,"size":2413,"snap":"2023-40-2023-50","text_gpt3_token_len":734,"char_repetition_ratio":0.11581569,"word_repetition_ratio":0.013729977,"special_character_ratio":0.33402404,"punctuation_ratio":0.16159695,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.987063,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-12-01T07:29:00Z\",\"WARC-Record-ID\":\"<urn:uuid:26b21f75-0c66-40c5-a264-b5faffc0b922>\",\"Content-Length\":\"8128\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:a610a82a-d5b9-4db9-ae65-bd5215f9fc6e>\",\"WARC-Concurrent-To\":\"<urn:uuid:ad2f4f44-4ded-4a89-9ca7-69439d7e1700>\",\"WARC-IP-Address\":\"75.2.60.5\",\"WARC-Target-URI\":\"https://emresahin.net/patch-histogram/\",\"WARC-Payload-Digest\":\"sha1:KFNQH2WYFPZ3JEMRKJ2M2NM7L6EXDJR5\",\"WARC-Block-Digest\":\"sha1:K2VIQIEAMBCIKHSLIQ4GTQZWKLZOJ2ZD\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-50/CC-MAIN-2023-50_segments_1700679100276.12_warc_CC-MAIN-20231201053039-20231201083039-00456.warc.gz\"}"} |
https://codebindtechnologies.com/codebind-technologies-online-aptitude-test-interview-questions/ | [
"# Interview Aptitude Questions with Solution\n\n9789617617\n\n## CodeBind Technologies Online-Aptitude Test Interview Questions\n\nA. 45\nB. 60\nC. 75\nD. 90\n\nExplanation:\n\nLet number of notes of each denomination be x.\n\nThen x + 5x + 10x = 480\n\n16x = 480\n\nx = 30.\n\nHence, total number of notes = 3x = 90.\n\nA. 60\nB. 95\nC. 120\nD. 150\n\nExplanation :\n\nJust Multiply each term in the given sequence with natural numbers. i.e 1 to infinity ( need of the question is only till 7).\nSo,\n1 x 1 = 1\n1 x 2 = 2\n2 x 3 = 6\n6 x 4 = 24\n24 x 5 = 120\n\nA. 37\nB. 44\nC. 50\nD. 55\n\nExplanation :\n\n1,3,4,8,15,27,...? next what\n1\n3\n4 = 3 + 1\n8 = 4 + 3 + 1\n15 = 8 + 4 + 3\n27 = 15 + 8 + 4\n50= 27 + 15 + 8\n\nA. True\nB. False\nC. Uncertain\n\nExplanation :\n\nThe first two statements give information about Zoe's tulips and pansies. Information about any other kinds of flowers cannot be determined\n\nA. Grandmother\nB. Father\nC. Grandfather\nD. Grandfather or Grandmother\n\nExplanation :\n\nS is daughter of P and sister of T. So, T is daughter of P.\nNow, the sister of P is the daughter of M. This means that P is also the daughter of M. Clearly, T is the granddaughter of M.\nSo, M is the Grandfather or Grandmother of T.\n\nA. Novel\nB. Glass\nC. Cover\nD. Page\n\nExplanation :\n\nA window is made up of panes, and a book is made up of pages. The answer is not (choice a) because a novel is a type of book. The answer is not (choice b) because glass has no relationship to a book. (Choice c) is incorrect because a cover is only one part of a book; a book is not made up of covers.\n\nA. Father\nB. Brother\nC. Cousin\nD. Uncle\nE. Grandson\n\nExplanation :\n\nMy grandfather's only son — My father. So, the girl is the daughter of Vipul's father i.e., Vipul is the girl's brother.\n\nA. Dish\nB. Soup\nC. Spoon\nD. Food\n\nExplanation :\n\nCoffee goes into a cup and soup goes into a bowl. Choices a and c are incorrect because they are other utensils. The answer is not choice d because the word food is too general.\n\nA. (91 + 1/3)%\nB. (93 + 1/3)%\nC. (97 + 1/3)%\nD. (98 + 1/3)%\n\nExplanation :\n\nif 270 is 100% then 252 is what %\nie: 100/270 *252\n= 28/3 * 10\n=93.3 % (93 + 1/3)%\n\nA. 79\nB. 87\nC. 86\nD. 76\n\nExplanation :\n\nAverage = total runs / no.of innings = 32\nSo, total = Average x no.of innings = 32 x 10 = 320.\n\nNow increase in avg = 4runs. So, new avg = 32+4 = 36runs\nTotal runs = new avg x new no. of innings = 36 x 11 = 396\nRuns made in the 11th inning = 396 - 320 = 76\n\nA. 20 litres\nB. 30 litres\nC. 40 litres\nD. 60 litres\n\nExplanation :\n\nQuantity of milk = 60 x 2 litres = 40 litres.\n3\nQuantity of water in it = (60- 40) litres = 20 litres.\nNew ratio = 1 : 2\nLet quantity of water to be added further be x litres.\nThen, milk : water = 40 .\n20 + x\nNow, 40 = 1\n20 + x 2\n20 + x = 80\nx = 60.\nQuantity of water to be added = 60 litres.\n\nA. 744589\nB. 744193\nC. 166479\nD. 745194\n\nExplanation :\n\nE N T R Y S A D\n1 2 3 4 5 9 7 8\n\nA is coded as 7,\nR as 4,\nE as 1,\nS as 9 and\nT as 3.\nSo, ARREST is coded as 744193.\n\nA. See\nB. Kee\nC. Lee\nD. Pee\nE. Tee\n\nExplanation :\n\nIn the first and second statement, the common word is 'juice' and the common code word is 'see'. So 'see' means 'juice'.\nIn the second and third statements, the common word is 'is' and the common code is 'lee'.\nSo, 'lee' means 'is'.\nThus, in the second statement, the remaining word is 'sweet' which is coded as 'kee'.\nHence, option (B) is the correct answer.\n\nA. JAK\nB. HAL\nC. HAK\nD. JAI\n\nExplanation :\n\nThe middle letters are static, so concentrate on the first and third letters. The series involves an alphabetical order with a reversal of the letters. The first letters are in alphabetical order: F, G, H, I , J. The second and fourth segments are reversals of the first and third segments. The missing segment begins with a new letter.\n\nA. 145\nB. 129\nC. 113\nD. 97\n\nExplanation :\n\nAddition of 4 at the beginning sequentially multiplied by 2\n21+4=25\n25+(4*2)=33\n33+(8*2)=49\n49+(16*2)=81\n81+(32*2)=145\n\nA. 44\nB. 45\nC. 46\nD. 47\n\nExplanation :\n\nThe sequence ascends in od numbers, beginning with 5. as 5, 7, 9, 11, 13, …….\n1\n6=1+5\n13=6+7\n22=13+9\n33=22+11\nSo, the next number should get increase of 13.\nSo, 33+13=46\n\nA. Son\nB. Brother\nC. Cousin\nD. Grandson\nE. Uncle\n\nExplanation :\n\nHere's Y.\nY has a son.\nY's son has a son (therefore Y has a grandson).\nAnd X is the brother of the above guy (i.e. Y's grandson).\nSo, X is the grandson of Y.\n\nA. True\nB. False\nC. Uncertain\n\nExplanation :\n\nFrom the first two statements, you know that the Kingston Mall has the most stores, so the Kingston Mall would have more stores than the Four Corners Mall.\n\nA. Brother\nB. Cousin\nC. Aunt\nD. Sister\n\nExplanation :\n\nOnly son of Amar's mother's father -- Amar's maternal uncle.\nSo, the girl's maternal uncle is Amar's maternal uncle.\nThus, the girl's mother is Amar's aunt.\n\nA. Niece\nB. Daughter\nC. Wife\nD. Daughter-in-law\nE. None of these\n\nExplanation :\n\nOnly son of Neena's father--in-law Mahipal -- Neena's husband. So, Raman is Neena's husband and Anita and Bindu are his daughters. Thus, Bindu is the grand daughter of Mahipal.\n\nA . 47\nB. 46\nC. 39\nD. none of the above\n\nExplanation:\n\nRequired number = (38 + 9 - 1) = 47-1 = 46\n\nA. Daughter\nB. Brother\nC. Husband\nD. Sister-in-law\n\nExplanation:\n\nA is father of C and C is sister of D. So, A is father of D.\nBut D is son of B. So, B is the mother of D and wife of K Also. E is the brother of A So, B is the sister-in-law of E\n\nA. Tent\nB. City\nC. Dwelling\nD. Palace\n\nExplanation:\nAbove the line, the relationship shows a progression of sources of light. The relationship below the line shows a progression of types of palace, from smallest to largest. (Choice a) is incorrect because a tent is smaller than a palace. Choices b and c are wrong because they are not part of the progression\n\nA. 1/70\nB. 1/840\nC. 1/8\nE. 1/40320\n\nExplanation: total digits = 8\neven digit = 4 ( 2 , 4 , 6 , 8)\nodd digit = 4 ( 1 , 3 , 5 , 7)\nno repetition\nso probability of 1st digit being even = 4/8 = 1/2\n2nd digit being even = 3/7\n3rd digit being even = 2/6 = 1/3\n4th digit being even = 1/5\nprobability that first 4 digits of the code are even numbers\n= (1/2)(3/7)(1/3)(1/5)\n= 1/70\n\nA. 155679\nB. 167890\nC. 179890\nD. 177366\n\nExplanation:\n\nGiven Population of a town = 160000.\nR1 = 3%, R2 = 2.5%, R3 = 5%.\nThen the present population of the town = 160000(1+3/100)(1+2.5/100)(1+5/100)= 177366.\n\nA. 5%\nB. 2.8%\nC. 3.9%\nD. 7%\n\nExplanation:\n\nA decade means 10 years.So,Total increase in population = 2,62,500 - 1,75,000\n=> 87,500\nSo, Average increase per year = 87,500/10 = 8,750\n% increase per year = (increase per year/ initial population) × 100\n=> (8750 / 1,75,000) × 100 => .05 × 100 => 5%\n\nA. 12.9\nB. 13.8\nC. 17\nD. 15.8\n\nExplanation:\n\nFirst ten odd prime no ÷10\n(3+5+7+11+13+17+19+23+29+31)÷10\n=158÷10\n15.8\n\nA. 2:5\nB. 4:5\nC. 6:7\nD. 3:8\n\nExplanation:\n\nLet the third number be x.\nThen, first number = 120% of x =120x/100 = 6x/5\nSecond number =150% of x = 150x/100 = 3x/2\nRatio of first two numbers = 6x/5 : 3x/2 = 12x : 15x = 4 : 5\n\nA. 222\nB.222.5\nC. 267\nD.220\n\nExplanation :\n\nCost Price = 178 × 100/(100 - 11)\n= 178 × 100/89\n= 2 × 100 = 200 (Rupees)\nIf he profit 11% then the Selling Price Will be = 200 + 200 × 11/100\n= 200 + 22 = 222 (Rupees)\n\nA. ALEUT\nB. ALGTU\nC. ALGUT\nD. ALGRT\n\nExplanation:\n\n(algut) is the ans.\n2=a\n3=l\n5=g\n4=u\n9=t\n\nA. 381171\nB. 381191\nC. 832252\nD. 835545\n\nExplanation:\n\nTake common letters from england and france and substitute in Greece\n\nA.25%\nB. 30%\nC. 35%\nD.20%\n\nExplanation:\n\n7 - 5.25 = 1.75\nTherefore,\n1.75/7 × 100\n= 25 %\n\nA. Rs. 4991\nB. Rs. 5991\nC. Rs. 6001\nD. Rs. 6991\n\nExplanation:\n\nGiven average = Rs. 6500\nAnd sales are Rs. 6435, Rs. 6927, Rs. 6855, Rs. 7230 and Rs. 6562 for 5 consecutive months.\nLet the sale of 6th month be xThen,\n6500 = (x+6435+ 6927+6855+7230+6562 )/6\n39000 = x + 34009 => x = 4991\nTherefore, sale at 6th month = Rs. 4991.\n\nA. 6 Years\nB.7 Years\nC. 8 Years\nD. 12 Years\n\nExplanation:\n\nReena is 12 years old\nLet the present age of Suma = x years\nThen the present age of Reena = 2x years\nThree years ago, age of Suma = x - 3\nThree years ago, age of Reena = 2x - 3\nAccording to the question\n=>2x-3 = (x-3)\n=>2x-3 = 3x-9\n=>3x-2x = 9-3\n=>x=6\nTherefore the present age of Suma = 6 years\nPresent age of Reena = 12 years\nTherefore, Reena is 12 years old\n\nA. 35\nB. 38\nC. 40\nD. 42\n\nExplanation:\n\nlet the no. of questions e answered correctly be x\nlet the no. of questions he answered wrong be y\ntotal no. of questions =\nx+y=60\ny=60-x------eqn 1\n4x-y=130\n4x-60+x=130\n5x=130+60\n5x=190\nx=190/5\nx=38\ntherefore, the no. of questions he answered correctly=38\n\nA. 18\nB. 9\nC.7\nD.20\n\nExplanation:\n\nSum of ages of three boys = 45 years\nNow, (3x + 5x + 7x) = 45\n⇒ 15x = 45\n⇒ x = 3\nSo, age of youngest boy = 3x\n= 3 × 3\n= 9 years\n\nA.100\nB. 200\nC. 180\nD.400\n\nExplanation:\n\nLet the number of students in three classes be 2x, 3x and 5x respectively.\nDue to increase of 40 students in each class, we have\n= 2x + 40 = 4\n3x + 40 5\n\n⇒ 10x + 200 = 12x + 160\n⇒ 2x = 200 – 160 ⇒ 2x = 40\n⇒ x = 20\n∴ Original strength\n= 10x = 10 × 20 = 200\n\nA. I alone is sufficient\nB. II alone is sufficient\nC. Neither I nor II is sufficient\nD. Either I or II is sufficient\n\nExplanation:\n\nFrom both the given statements, we find that Mr. Rijo reached the bus stand at 9 AM and a bus is sure to arrive at 10 AM. So. Mr. Rijo has to wait for at the most one hour.\n\nA. Rs. 250000\nB. Rs. 300000\nC. Rs. 450000\nD. Rs. 150000\n\nExplanation:\n\nl = 300m , b = 125m\nArea of the rectangular = l*b = 300 * 125 = 37,500\nCost of tilling = 8 * 37500 = 300000\n\nA. 360\nB. 180\nC. 270\nD. 140\n\nExplanation:\n\nNumber of hours from 8am till 2pm= 6\n\nThe rotation of an hour hand in one hour= 30°\n\nTotal degree of rotation= 360°\n\nTherefore, the Angle traced by the hour hand in 6 hours is= (360/12)*6 = 180\n\nA. 24\nB. 22\nC. 18\nD. 20\n\nExplanation:\n\nNo of boxes = total no of books/No of books in 1 box\nTotal no of books =528\nNo of books in 1 box = 24\nNo of boxes =528/24 = 22\n\nA. 10\nB. 8\nC. 4\nD. 6\n\nExplanation:\n\nM1*H1*D1 = M2*H2*D2\n4*5*16 = 20*4*D2\n320/80 =D2\nD2=4\n\nA. 501\nB. 105\nC. 525\nD. 150\n\nExplanation:\n\nAs given\nTwo-fifth of one -third of three-seventh of number is 15.\nLet us assume that the unknown number be x .\n2/5*1/3*3/7*x =15\nx = 262.5\nPercentage = Part value*100/Total value\nPercentage = 40%,Total value = 262.5\n40=Part value*100/262.5\nPart value = 105.\nThe 40% of derived number is 105 .\n\nA. 30 10\nB. 65 45\nC. 35 15\nD. 45 25\n\nExplanation:\n\na = b + 20\na-5 = 3(b-5)\nb+20-5 = 3(b-5)\nb+15 = 3b-15\n2b = 30\nb = 15 yrs\na = b + 20\na = 15+20\na = 35 yrs\n\nA. 360\nB. 480\nC. 720\nD. 5040\n\nExplanation:\n\nThe word 'LEADING' has 7 different letters.\nWhen the vowels EAI are always together, they can be supposed to form one letter.\nThen, we have to arrange the letters LNDG (EAI).\nNow, 5 (4 + 1) letters can be arranged in 5! = 120 ways.\nThe vowels (EAI) can be arranged among themselves in 3! = 6 ways.\nRequired number of ways = (120 x 6) = 720.\n\nA. AAEILMTR\nB. AAIELMRT\nC. AAELIMRT\nD. AAEILMRT\n\nExplanation:\n\nArranged the letters in an alphabetical order.\n\nA. BEA\nB. ABE\nC. DEC\nD. ECB\n\nExplanation:\n\nIn the above question, it can be clearly seen that the sequence BEA is the most appropriate since if all cats lay eggs is true and it is also true that all tigers are cats, then it will also be true that all tigers lay eggs.\n\nA. GERH\nB. GRHE\nC. GREH\nD. GHRE\nE. GEHR\n\nExplanation:\n\nReverse the word and move each letter -1.Reverse of FISH is HSIF subtract 1 from each letter of HSIF. So code of FISH become GRHE.\n\nA)ACFJO\nB)AEIMQ\nC)DINSX\nD)EHKNQ\n\nExplanation :\n\nABCDEFGHIJKLMNO\n1 2 3 4\n\nA)7\nB)10\nC)12\nD)13\n\nExplanation :\n\nThis is a simple alternating addition and subtraction series. In the first pattern, 3 is added; in the second, 2 is subtracted.\n\nA)Kapil\nB)Jai\nC)Both\nD)None\n\nExplanation :\n\nKapil because Kapil is brother of Jai’s Brother\n\nA)F2\nB)F7\nC)F8\nD)F1\n\nExplanation :\n\nTo check the spelling and grammar in just a sentence or paragraph of your document, select the text you want to check and then press F7.\n\nA)10\nB)12\nC)15\nD)18\n\nExplanation :\n\na - b = 3 ---( 1 )\na² + b² = 29----( 2 )\nWe know that the algebraic identity,\n( a - b )² = a² + b² - 2ab\n3² = 29 - 2 ab\n[ From ( 1 ) and ( 2 ) ]\n9 = 29 - 2ab\n2ab = 29 - 9\n2ab = 20\nab = 20/2\nab = 10\n\nA)B\nB)A\nC)Both\nD)Insufficient Data\n\nExplanation :\n\n20×100/30=66%\n40×100/70= 57.14%\nB student score more\n\nA)251\nB)254\nC)255\nD)256\n\nExplanation :\n\nAs George is sitting to the left of Henry,so, George's seat is 252. The next seat to the left,where Inez was sitting is 251.\n\nA)12\nC)6\nC)5\nD)10\n\nExplanation :\n\nPipe A's 1hr work=1/10\npipe B's 1hr work =1/15\n(A+B)'s 1hr work=1/10+1/15=\n5/30=1/6\nNow A and B can do it in 1÷1/6=6days.\n\nA)15%\nB)20%\nC)10%\nD)25%\n\nExplanation :\n\nLoss = 9000-7650\n= 1350\nLoss% = 1350/9000×100\n= 15\n\nA)BY\nB)DX\nC)BX\nD)CX\n\nExplanation :\n\nBecause the gap between A, E, G, are about 2 Words are in forward and the gap between Z, V, T are about 2 words are in backward.\n\nA)7\nB)5\nC)2\nD)9\n\nExplanation :\n\nZ = 1, Y= 2, X = 3, W = 4, V = 5,….\nSo answer of the above solution is 5.\n\nA)RUR\nB)QUR\nC)RUS\nD)SUR\nE)PUR\n\nExplanation :\n\nFirst letter of each term is J, L, N, P, R Second letter of each term is A, E, I, O, U (all vowels) Third letter of each term is Z, X, V, T, R.\nRUR will come next in the series.\n\nA)A16\nB)G4\nC)E4\nD)E3\n\nExplanation :\n\nThe letters decrease by 1; the numbers are multiplied by 2.\n\nA)22\nB)19\nC)25\nD)21\n\nExplanation :\n\nThere are two series here\n39, 32,..(decreased by 2)\n41, 34, 27...(decreased by 5)\n\nHence, next term = 27 - 2 = 25\n\nA)PORIVEDCNE\nB)RPOVPINECE\nC)RPVODINEEC\nD)EORIVEDCEP\n\nExplanation :\n\nThe word ‘APPEAR’ has been coded by interchanging the two letters at a time. Hence PROVIDENCE is coded as in (C)\n\nA)(1/16)\nB)(1/8)\nC)(1/12)\nD)(1/64)\n\nExplanation :\n\nEach no. is getting divided by 2\n1st no. is 2\n\n2nd no. is (2/2)= 1\n\n3rd no. is (1/2)= 1/2\n\n4th no. is (1/2)*(1/2)= 1/4\n\nSo next no. Will be (1/4)*(1/2)= 1/8\n\nSo answer of the above solution is (1/8).\n\nA)Uncle\nB)Father\nC)Grandfather\nD)Brother\n\nExplanation :\n\nClearly, the only daughter or Monika's father is Monika herself\nSo, Rahul's mother is Monika\nThus, Monika's husband is the father of Rahul\n\nA)3\nB)2\nC)4\nD)7\nE)5\n\nExplanation :\n\n324 - Light is bright\n629 - Girl is beautiful\n4758 - I prefer bright clothes\n\nA)chn\nB)nhi\nC)ptr\nD)wop\n\nExplanation :\n\nnso ptr kli chn - Sharma gets marriage gift\nptr lnm wop ch - wife gives marriage gift\ntti wop nhi - he gives nothing\n\nA)CMN\nB)UJI\nC)VIJ\nD)IJT\n\nExplanation :\n\nThe first letter is in backward pattern and the last two letters are going forward\n\nA. True\nB. False\nC. Uncertain\n\nExplanation:\n\nBecause the first two sentences are true, both Josh and Darren saw more movies than Stephen. However, it is uncertain as to whether Darren saw more movies than Josh.\n\nA. 24\nB. 28\nC. 77\nD. 218\n\nExplanation:\n\nEach number in the series is the preceding number multiplied by 3 and then decreased by 2.\n\nA. 128\nB. 144\nC. 192\nD. 256\n\nExplanation:\n\nThe Pattern is *8,*4,….\nMissing term =128*2 =256\n\nA. 12.5%\nB. 40%\nC. 80%\nD. 125%\n\nExplanation:\n\n5 : 4 = 5/4 = ( (5/4) x 100 )% = 125%.\n\nA. 64\nB. 216\nC. 256\nD. 24\n\nExplanation:\n\nIf repetition is allowed, 4^4 or 256, as the number could be 1111 just as well as 1359.\nHowever, if repetition isn’t allowed, the first digit can be any of the four, the second any except the one used for the first digit, the third any except the two digits so far used and the fourth can only be one digit, so 4! or 24 possibilities.\n\nA. Rs. 375\nB. Rs. 400\nC. Rs. 600\nD. Rs. 800\n\nExplanation:\n\nC’s 1 day’s work = 1/3-(1/6+1/8) = 1/3-7/24 = 1/24.\nA’s wages: B’s wages: C’s wages = 1/6:1/8:1/24 = 4:3:1.\nC’s share (for 3 days) =Rs.(3*1/24*3200) = Rs. 400.\n\nA. 220 Km\nB. 224 Km\nC. 230 Km\nD. 234 km\n\nExplanation:\n\n(1/2)x/21 + (1/2)x/24 = 10\nx/21 + x/24 = 20\n15x = 168* 20\nX = (168 * 20/15)\nX =224 km\n\na) 33\nb) 81\nc) 93\nd) 97\n\nExplanation:\n\n97 is a prime number because it has only two distinct divisors: 1 and itself (97). As a consequence, 97 is only a multiple of 1 and 97.\n\na) 500\nb) 600\nc) 400\nd) 700\n\nExplanation:\n\n40%=sold apples\nso, 100-40=60% remaining\n60%=420 apples\n420/60×100=700 apples\n\na) 138\nb) 148\nc) 162\nd) 216\n\nExplanation:\n2*3=6\n6*3=18\n18*3=54\n54*3=162\n\na) S\nb) U\nc) T\nd) None\n\nExplanation:\n\nA B C D E F G H I J K L M\n\nN O P Q R S T U V W X Y Z\n4 3 2 1\n\na) 3656894927\nb) 3657694927\nc) 3656694927\nd) 365619497\ne) 365669492\n\nExplanation:\nLet A = 1, B = 2, C = 3,.... X = 24, Y = 25, Z = 26.\nThen. M = 13 = 1 + 3 =4; 0 = 15=1 + 5 = 6;\nL = 12= 1 + 2-3; T-20 = 2 + 0 = 2;\nY = 25 = 2 + 5 = 7. So. MOBILITY =46293927.\nCONFORMITY [C=3;O=1+5=6;N=1+4=5;F=6;0=1+5=6;R=1+8=9;M=1+3=4;I=9;T=2+0=2;Y=2+5=7]\nSo CONFORMITY=3656694927\n\na) 35\nb) 36\nc) 48\nd) 49\n\nExplanation:\nThe numbers are 12, 22, 32, 42, 52.\nMissing number = 62 = 36.\n\na) True\nb) False\nc) Uncertain\n\nExplanation:\n\nStep1. Click the File tab in the top-left corner of your Word screen.\nStep 2. Click Export in the blue vertical menu that runs along the left side of your screen.\nStep 3. With the Create XPS/PDF Document option selected, click the corresponding box on the right side of your screen. (It looks like a document icon wearing a seatbelt).\nStep 4. A new box labeled Publish as PDF or XPS appears, and you should use it to navigate to the location on your PC where you want to save the new PDF.\nStep 5.Click Publish to create and save your PDF.\n\na) 3-D\nc) Box\nd) All of These\n\na) 247\nb) 135\nc) 254\nd) 147\n\nExplanation:\n\nA B C D E F G H I J K L M 1 2 3 4 5 6 7 8 9 10 11 12 13\nN O P Q R S T U V W X Y Z\n14 15 16 17 18 19 20 21 22 23 24 25 26\n\na) 10%\nb) 7.5%\nc) 16%\nd) 15%\n\nExplanation:\n\nLet the principal be Rs 1000\nThen, amount = (2×1000) = Rs. 2000\nSI = 2000-1000 = 1000\nRate = ?\nTime = 10 years\nRate = SI × 100 / P × T\n=> 1000×100/1000×10\n=> 10\nRate = 10%\n\na) 34748\nb) 27474\nc) 30154\nd) 27574\ne) None\n\nExplanation:\n?+3699+1985-2047=31111\n?+5684-2047=31111\n?+3637=31111\n?=31111-3637\n? = 27474\n\na) 16.1 %\nb) 15.5 %\nc) 17.5 %\nd) 8.05 %\n\nExplanation:\n\nC.P.= 20000/-\nS.P.= 21610/-\nprofit = SP - CP\n21610-20000 = 1610\nProfit % = 1610/20000 * 100\n0.0805 * 100\n8.05%\n\na) 31\nb) 61\nc) 71\nd) 91\n\nExplanation:\n91 because it is multiple of 7 and 13. 91 is not a prime number because it is divisible by 7.\n\na) 306\nb) 765\nc) 700\nd) 510\n\nExplanation:\n\n15x+10x + 6x = 1581\n31x= 1581\nx=51\na=15x\na=15*51\na=765\n\nA. GRR\nB. GSS\nC. ISS\nD. ITT\n\nExplanation :\n\nThe sequence is added +2 letters to each letter\n\nA. 8\nB. 6\nC. 7\nD. Can't be determined\n\nExplanation:\n\nin 786 and 645 \"6\" is repeated so \"6\" is bring\n786 and 958 \"8\" is repeated so \"8\" is apple\nso remaining \"7\" is me\n\nA. QLPNKJ\nB. QLPNKJF\nC. QLPNMF\nD. QLPNDF\n\nExplanation:\n\nThe answer shall be part d\nas\n3 stands for q\n9 stands for l\n6 stands for p\n8 stands for n\nno repeating\n2 stands for m\n4 stands for f\n\nA. X gained Rs. 4350\nB. Y lost Rs. 4350\nC. X gained Rs. 3150\nD. X lost Rs. 3150\n\nExplanation:\n\nIn whole transaction gain in whole\n= 105 - 102.9 = 2.1 units\nBut, 100 units = 1,50,000\n1 unit = 1500\n2.1 units = 3150 gain\n\nA. 30.00 kg\nB. 35.00 kg\nC. 37.25 kg\nD. 42.50 kg\n\nExplanation:\n\nTotal weight of section A = 36×40 = 1440 kg\nTotal weight of section B = 44×35 = 1540 kg\nTotal weight of class = 1440+1540 = 2980 kg\nTotal students = 36+44 = 80\nAverage weight of class = 2980/80 =37.25 kg\n\na) Table\nb) Picture\nc) Clip Art\nd) Page Break\n\nExplanation:\n\nIn Microsoft Word and other word processor programs, pressing Ctrl+Enter adds a page break at the cursors current position instead of a new paragraph.\n\na)Review\nb)Page Layout\nc)Insert\nd)View\n\nExplanation:\n\nIn Microsoft Word, Page Layout - Page Setup-Margins\n\na) Book Mark\nb) Cross reference\nd) Word Art\n\nExplanation:\n\nIn Microsoft PowerPoint, the Ctrl+K shortcut key inserts a hyperlink into the current location.\n\na) Sam\nb) Jack\nc) Denise\nd) Jim\n\nExplanation:\n\nSam > Jack\nDenise > Jim\nDenise < Jack The answer is Sam because Jack, Denise, and Jim are slower than Sam.\n\na) 10\nb) 18\nc) 15\nd) 12\n\nExplanation:\n\ntotal 40 students.\n8 of them wont speak both language\nso remaining 32 students.\n\nboth language = (Hindi + kanada) - remaining\n= (24 + 20) - 32\n= 12\n\nA. CMN\nB. UJI\nC. VIJ\nD. IJT\n\nExplanation:\n\nBecause the letters are the same, concentrate on the number series, which is a simple 2, 3, 4, 5, 6 series, and follows each letter in order.\n\nA. 8, 20, 28\nB. 16, 28, 36\nC. 20, 35, 45\nD. None of these\n\nExplanation:\n\nLet their present ages be 4x, 7x and 9x years respectively.\nThen, (4x - 8) + (7x - 8) + (9x - 8) = 56\n20x = 80\nx = 4.\nTheir present ages are 4x = 16 years, 7x = 28 years and 9x = 36 years respectively.\n\nA. scarcely\nB. impolitely\nC. noisily\nD. Quietly\n\nExplanation:\n\nSecretly is the opposite of openly, and silently is the opposite of noisily. Choices a and b are clearly not the opposites of silently. (Choice d) means the same thing as silently\n\nA. decrease\nB. maintain\nC. increase\nD. preserve\n\nExplanation:\n\nGuide and direct are synonyms, and reduce and decrease are synonyms. The answer is not choice b or d because neither means the same as reduce. (Choice c) is incorrect because increase is the opposite of reduce.\n\nA. 700\nB. 800\nC. 1200\nD. 2000\n\nExplanation:\nThe century divisible by 400 is a leap year.\nThe year 700 is not a leap year.\n\nA. attorney\nB. law\nC. politician\nD. constituents\n\nExplanation:\n\nAn artist makes paintings; a senator makes laws. The answer is not choice a because an attorney does not make laws and a senator is not an attorney. Choice c is incorrect because a senator is not a politician. Constituents (choice d) is also incorrect because a senator serves his or her constituents\n\nA. 14 km\nB. 15 km\nC. 16 km\nD. 17 km\n\nExplanation:\n\nLet the distance travelled on foot be x km.\nThen, distance travelled on bicycle = (61 -x) km.\nSo, x + (61 -x) = 9\n4 9\n9x + 4(61 -x) = 9 x 36\n5x = 80\nx = 16 km.\n\nA. 69\nB. 78\nC. 96\nD. Cannot be determined\nE. None of these\n\nExplanation:\n\nLet the ten's digit be x and unit's digit be y.\nThen, x + y = 15 and x - y = 3 or y - x = 3.\nSolving x + y = 15 and x - y = 3, we get: x = 9, y = 6.\nSolving x + y = 15 and y - x = 3, we get: x = 6, y = 9.\nSo, the number is either 96 or 69.\nHence, the number cannot be determined.\n\nA. 396\nB. 427\nC. 671\nD. 264\n\nExplanation:\n\nIn each number except 427, the middle digit is the sum of other two\n\nA. 200 m\nB. 225 m\nC. 245 m\nD. 250 m\n\nExplanation:\n\nSpeed = [45 X 5/18] m/sec = [25/2] m/sec Time = 30 sec Let the length of bridge be x metres. Then, (130 + x)/30 = 25/2 => 2(130 + x) = 750 => x = 245 m.\n\nA. 31\nB. 61\nC. 71\nD. 91\n\nExplanation:\n\n91 is divisible by 7. So, it is not a prime number.\n\nA. 103\nB. 107\nC. 113\nD. None of these\n\nExplanation:\n\nThe smallest 3-digit number is 100, which is divisible by 2.\n100 is not a prime number.\n√101< 11 and 101 is not divisible by any of the prime numbers 2, 3, 5, 7, 11. 101 is a prime number. Hence 101 is the smallest 3-digit prime number.\n\nA. 55\nB. 36\nC. 105\nD. 70\n\nExplanation:\n\nThe pattern is 1 x 3, 2 x 5, 3 x 7, 4 x 9, 5 x 11, 6 x 13, 7 x 15, etc.\n\nA. 3.5km\nB. 2.4km\nC. 2.6km\n\nExplanation:\n\nLet the required distance be x km.\nSpeed downstream = (5 + 1)kmph = 6 kmph\nSpeed upstream = (5 - 1)kmph = 4 kmph\nThen,\nx/6 + x/4 = 1\n5x = 12\nx = 2.4\nThe required distance is 2.4 km\n\nA. 6400\nB. 14400\nC. 3600\nD. 1600\n\nExplanation:\n\nThe least number divisible by 16, 20, 24\n= L.C.M. of 16, 20, 24 = 240 = 2 x 2 x 2 x 2 x 3 x 5.\nTo make it perfect square, it must be multiplied by 3 x 5.\nRequired number = 240 x 3 x 5 = 3600\n\nA. 80°\nB. 85°\nC. 90°\nD. 75°\n\nExplanation:\n\nAt 10 o'clock, the hour hand is at 300° with the vertical.\nIn 40 minutes, angle made by hour hand = 300° + 40x0.5 = 320°\nAngle made by minute hand = 6x40 = 240°\nSo, angle between the hour hand and minute hand = 320 - 240 = 80°\n\nA. Tuesday\nB. Wednesday\nC. Monday\nD. Thursday\n\nExplanation:\n\nIf today is Sunday, Four days after Sunday will be Friday, the day before yesterday is Tuesday.\n\nA. ABC\nB. CAB\nC. BCA\nD. BAC\n\nExplanation:\n\nb) The complete sentence would look like this: Nowadays, a typical classroom has pods of desks, and kids are working on countless group assignments.\nBy looking at the set of sentences, one can understand that 'Nowadays' has to be the beginning of the sentence. From then on, it is simply putting the phrases together to form a coherent sentence\n\nA. 17. 5\nB. 18.5\nC. 20\nD. 133\n\nExplanation:\n\nLet the number be X.\nThen, 4/17 of 17/19 of the number is (4/17) * (17/19) * X = (4/19) * X\n3/38 of the number= (3/38) * X\n\nGiven:\n\nthe difference between these two values is 17.5.\nHence, [(4/19) * X - (3/38) * X ]= 17.5\nSolving the equation, we have X=133\nTherefore, the number is 133.\n\nA. Rs.2000/-\nB. Rs.1500/-\nC. Rs.1000/-\nD. Rs.4500/-\n\nExplanation:\n\nA = Rs.2000/- , that is 2 parts\nB = Rs.3000/- , that is 3 parts\nC = Rs.4000/- , that is 4 parts\nTotal 9 parts -------> profit (4500/-)\n----->1 part -------->Rs.500/-\nthen A's share 2 parts ----- > Rs.1000/-\n\nA. Monday\nB. Sunday\nC. Friday\nD. None of these\n\nExplanation:\n\nFormula:-(Date + Month code + No.of years + No.of leap year + Century code)/7\n= (24 + 0 + 11 + 2 + 6)/7 = 43/7 = 1\n= Sunday\n\nA. 4 years\nB. 8 years\nC. 10 yearswrong\nD. None of these\n\nExplanation:\nLet the ages of children be x, (x + 3), (x + 6), (x + 9) and (x + 12) years.\nThen, x + (x + 3) + (x + 6) + (x + 9) + (x + 12) = 50\n5x = 20\nx = 4.\nAge of the youngest child = x = 4 years.\n\nA. 1.5 timewrong\nB. 2 times\nC. 2.5 times\nD. 3 times\n\nExplanation:\nLet the daughter's age be y and father's age be 4y.\nFather’s age is 4 times more aged than his daughter, therefore father’s present age = y + 4y = 5y\nAfter five years, father’s age will be three times his daughter age.\n(4y + 5) = 3 (y + 5)\ny = 10\nAfter 5 years it was (4y + 5), then after further 5 years, father’s age = (4y +10) and daughter’s age = (y + 10)\n(4y + 10) / (y + 10) = ?\nSubstituting the value of y, we get\n[(4x10) + 10] / [10+10] = 5/2 = 2.5\nAfter another 5 years, father will be 2.5 times of daughter's age.\n\nA. 26 Years\nB. 25 Yearscorrect\nC. 32 Years\nD. 65 Years\n\nExplanation:\nLet 5 years age, the age of ashok, Anil and Ajay were 3x, 4x and 5x years. Then, their present ages are ( 3x + 5), (4x + 5) abd ( 5x + 5) years.\nNow, 3x +5 + 4x +5 + 5x + 5 = 75 => 12x = 60 x = 5\nHence, present age of Anil = 4x + 5 = 4 x 5 + 5 = 25 years.\n\nA. 30\nB. 35correct\nC. 37\nD. 41\n\nExplanation:\nLet A's age 10 years ago = x years.\nThen, B's age 10 years ago = 2x years.\n(x + 10) / (2x+ lO) = 3/4\n=> x = 5.\nSo, the total of their present ages =(x + 10 + 2x + 10)\n= (3x + 20) = 35 years.\n\nA. 11 : 7\nB. 9 : 5\nC. 7 : 4\nD. 7 : 3\n\nExplanation:\n10 years ago, age of mother was three times the age of her son. Say, the age of son was x and mother's age was 3x.\nAt present: Mother's age is (3x + 10) and son’s age is (x + 10)\nAfter ten years: Mother's age will be (3x + 10) +10 and son’s age will be (x + 10) + 10. Given that, mother’s age is twice that of son after ten years.\n(3x + 10) +10 = 2 [(x + 10) + 10]\n(3x + 20) = 2[x + 20]\nSolving the equation, we get x = 20\n(3x + 10): (x + 10) = 70: 30 = 7: 3.\n\nA. 5\nB. 10\nC. 15\nD. 20\n\nExplanation:\nLet the present ages of son and father be x and (60 -x) years respectively.\nThen, (60 - x) - 5= 4(x - 5)\n55 - x = 4x - 20\n5x = 75 => x = 15\n\nA. 12 years\nB. 16 years\nC. 24 years\nD. 48 years\n\nExplanation:\nPresent day,\nLet us consider Dhiraj's present age as K years\nRaj's present age is 4 times Dhiraj's = 4K years\n3 years ago,\nDhiraj's age = K-3 years\nRaj's age = 4K-3 years.\nThat time, Raj's age = 5 times Dhiraj's age\n4K-3 = 5(K-3)\n4K-3 = 5K-15\nK = 12 years\nPresent age of Raj = 4K = 4 x 12 = 48 years.\n\nA. Monday\nB. Sunday\nC. Wednesday\nD. Thursday"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.79115844,"math_prob":0.99623454,"size":29380,"snap":"2020-34-2020-40","text_gpt3_token_len":11266,"char_repetition_ratio":0.1827342,"word_repetition_ratio":0.042903226,"special_character_ratio":0.41422737,"punctuation_ratio":0.17227803,"nsfw_num_words":2,"has_unicode_error":false,"math_prob_llama3":0.9990769,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-09-27T00:49:50Z\",\"WARC-Record-ID\":\"<urn:uuid:8a69259a-edaf-4e24-b292-617670953723>\",\"Content-Length\":\"597619\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:486195b9-117b-487b-9317-b83762da57bc>\",\"WARC-Concurrent-To\":\"<urn:uuid:7420bd80-d93f-4dfe-9174-94ad527d0e47>\",\"WARC-IP-Address\":\"64.34.68.10\",\"WARC-Target-URI\":\"https://codebindtechnologies.com/codebind-technologies-online-aptitude-test-interview-questions/\",\"WARC-Payload-Digest\":\"sha1:WCVFSHEGMXDRIPAMGII3IXITER4YGB6H\",\"WARC-Block-Digest\":\"sha1:FFT7MBBX7RXNLHUOP3FVRG47IZ2IDQIE\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-40/CC-MAIN-2020-40_segments_1600400249545.55_warc_CC-MAIN-20200926231818-20200927021818-00196.warc.gz\"}"} |
https://www.nntp.perl.org/group/perl.perl5.porters/2003/11/msg84970.html | [
"",
null,
"Front page | perl.perl5.porters | Postings from November 2003\n\n## Empty subroutine as object method segfaults in 5.8.2 (sometimes)\n\nFrom:\nElizabeth Mattijsen\nDate:\nNovember 9, 2003 05:03\nSubject:\nEmpty subroutine as object method segfaults in 5.8.2 (sometimes)\nMessage ID:\np05111b09bbd3deb12c8d@[192.168.56.3]\n```I'm afraid I haven't been paying enough attention to p5p lately. I\ntoo was surprised by the arrival of 5.8.2, so I haven't tested my\nThread::xxx modules with 5.8.2-RCx. I guess I have to get used to\nthe increased frequency of releases as well. Which is a good thing!\n\na make test in 5.8.2. This affects Thread::Pool, which is more used.\n\nThe core dump is not giving any usable information, even with a debug\nenabled Perl (could this have to do that the segfault occurs inside a\n\nWhen checking where the error occurred, I found that it happened when\ncalling an object method. That object method (for that particular\nblessed object) consisted of:\n\nsub shutdown {}\n\ni.e. nothing. Since this method isn't supposed to return anything\n(but couldn't be inherited), I chose to do it this way.\n\nThe funny thing is that when I replace the subroutine with:\n\nsub shutdown { undef }\n\nthe problem (and the segfault) goes away.\n\nI've been trying to reduce the problem to a simple case:\n\npackage Foo;\nsub new { bless {},shift }\nsub empty {}\n\npackage main;\nmy \\$object = Foo->new;\n\\$object->empty;\n\nbut this just runs without any problems, even under valgrind, so it\nmust be something trickier that I'm doing.\n\nI'll be issuing new versions of my Thread::xxx modules to prevent\nfailures in 5.8.2, but thought I'd report this to p5p nonetheless\n\nLiz\n\nThe valgrind output for the Thread::Conveyor test-suite:\n\n==21280== Memcheck, a.k.a. Valgrind, a memory error detector for x86-linux.\n==21280== Copyright (C) 2002-2003, and GNU GPL'd, by Julian Seward.\n==21280== Using valgrind-20030725, a program supervision framework\nfor x86-linux.\n==21280== Copyright (C) 2000-2003, and GNU GPL'd, by Julian Seward.\n==21280== Estimated CPU clock rate is 2825 MHz\n==21280== For more details, rerun with: -v\n==21280==\n1..105\n==21280== valgrind's libpthread.so: KLUDGED call to: siglongjmp\n(cleanup handlers are ignored)\n==21280== valgrind's libpthread.so: KLUDGED call to: siglongjmp\n(cleanup handlers are ignored)\n# test belt optimized for cpu\nok 2 - check object type isa Thread::Conveyor\nok 4 - check number boxes on belt\nok 5 - check \\# elements simple list\nok 6 - check simple list\nok 7 - check \\# elements list ref\nok 8 - check type of list ref\nok 9 - check list ref\nok 10 - check \\# elements hash ref, \\#1\nok 11 - check type of hash ref, \\#1\nok 12 - check \\# elements hash ref, \\#2\nok 13 - check type of hash ref, \\#2\nok 14 - check \\# elements hash ref, \\#3\nok 15 - check type of hash ref, \\#3\nok 16 - check hash ref\nok 17 - check \\# elements dontwait\n==21280== Invalid read of size 4\n==21280== at 0x80BB5DA: Perl_runops_debug (dump.c:1438)\n==21280== by 0x8065068: S_run_body (perl.c:1860)\n==21280== by 0x805FC82: main (perlmain.c:86)\n==21280== Address 0x41D4A1EC is 8 bytes inside a block of size 24 free'd\n==21280== at 0x400296BF: free (vg_replace_malloc.c:220)\n==21280== by 0x80BC048: Perl_safesysfree (util.c:143)\n==21280== by 0x80922BA: Perl_op_free (op.c:325)\n==21280== by 0x80A2B8C: Perl_peep (op.c:6378)\n==21280==\n==21280== Invalid read of size 1\n==21280== at 0x80FAAC0: Perl_pp_stub (pp.c:36)\n==21280== by 0x80BB5DE: Perl_runops_debug (dump.c:1438)\n==21280== by 0x8065068: S_run_body (perl.c:1860)\n==21280== Address 0x41D4A1F8 is 20 bytes inside a block of size 24 free'd\n==21280== at 0x400296BF: free (vg_replace_malloc.c:220)\n==21280== by 0x80BC048: Perl_safesysfree (util.c:143)\n==21280== by 0x80922BA: Perl_op_free (op.c:325)\n==21280== by 0x80A2B8C: Perl_peep (op.c:6378)\n==21280==\n==21280== Invalid read of size 1\n==21280== by 0x80BB5DE: Perl_runops_debug (dump.c:1438)\n==21280== by 0x8065068: S_run_body (perl.c:1860)\n==21280== Address 0x41D4A1F8 is 20 bytes inside a block of size 24 free'd\n==21280== at 0x400296BF: free (vg_replace_malloc.c:220)\n==21280== by 0x80BC048: Perl_safesysfree (util.c:143)\n==21280== by 0x80922BA: Perl_op_free (op.c:325)\n==21280== by 0x80A2B8C: Perl_peep (op.c:6378)\n==21280==\n==21280== Invalid read of size 1\n==21280== at 0x80FAAE0: Perl_pp_stub (pp.c:36)\n==21280== by 0x80BB5DE: Perl_runops_debug (dump.c:1438)\n==21280== by 0x8065068: S_run_body (perl.c:1860)\n==21280== Address 0x41D4A1F8 is 20 bytes inside a block of size 24 free'd\n==21280== at 0x400296BF: free (vg_replace_malloc.c:220)\n==21280== by 0x80BC048: Perl_safesysfree (util.c:143)\n==21280== by 0x80922BA: Perl_op_free (op.c:325)\n==21280== by 0x80A2B8C: Perl_peep (op.c:6378)\n==21280==\n==21280== Invalid read of size 4\n==21280== at 0x80FAB45: Perl_pp_stub (pp.c:38)\n==21280== by 0x80BB5DE: Perl_runops_debug (dump.c:1438)\n==21280== by 0x8065068: S_run_body (perl.c:1860)\n==21280== Address 0x41D4A1E4 is 0 bytes inside a block of size 24 free'd\n==21280== at 0x400296BF: free (vg_replace_malloc.c:220)\n==21280== by 0x80BC048: Perl_safesysfree (util.c:143)\n==21280== by 0x80922BA: Perl_op_free (op.c:325)\n==21280== by 0x80A2B8C: Perl_peep (op.c:6378)\n==21280== valgrind's libpthread.so: KLUDGED call to: siglongjmp\n(cleanup handlers are ignored)\nScalars leaked: 1\n# Looks like you planned 105 tests but only ran 17.\n==21280==\n==21280== ERROR SUMMARY: 5 errors from 5 contexts (suppressed: 9 from 2)\n==21280== malloc/free: in use at exit: 221053 bytes in 125 blocks.\n==21280== malloc/free: 75824 allocs, 75699 frees, 17086815 bytes allocated.\n\n```"
] | [
null,
"https://st.pimg.net/devcom/images/develooperbutton.v1.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7119091,"math_prob":0.74745774,"size":6370,"snap":"2023-14-2023-23","text_gpt3_token_len":2239,"char_repetition_ratio":0.19258562,"word_repetition_ratio":0.34850165,"special_character_ratio":0.41868132,"punctuation_ratio":0.20395257,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9609755,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-08T21:12:59Z\",\"WARC-Record-ID\":\"<urn:uuid:73578d74-a730-40dc-b59d-5a47ee79747d>\",\"Content-Length\":\"11699\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:3bb7dd03-5f5a-4082-9962-3bc0a12a85aa>\",\"WARC-Concurrent-To\":\"<urn:uuid:e49faba2-649d-4cf4-b33b-615f9d0739b7>\",\"WARC-IP-Address\":\"139.178.67.96\",\"WARC-Target-URI\":\"https://www.nntp.perl.org/group/perl.perl5.porters/2003/11/msg84970.html\",\"WARC-Payload-Digest\":\"sha1:D4XLDVFHDHUU5C5ZY37AVWVZ24BWQJ2I\",\"WARC-Block-Digest\":\"sha1:WHGFMXZRS3DGLQ3AS2LGN4YJ6JYLWESL\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224655143.72_warc_CC-MAIN-20230608204017-20230608234017-00289.warc.gz\"}"} |
https://closure11.com/social-and-economic-networks-models-and-analysis%E7%AC%94%E8%AE%B0%E4%B8%80/ | [
"#### Social and Economic Networks: Models and Analysis笔记一:基本概念\n\nSocial and Economic Networks: Models and Analysis这门课是斯坦福大学在Coursera上的一门公开课,恰好这段时间开始开放,加上评分还不错,于是打算来听听,由于自己对Social Network Analysis不是特别熟悉,所以就从第一节课一些基本概念开始,在这个博客留下一些笔记吧。\n\n1.n个结点可以形成多少种不同的网络?\n\n2.Network表示方法\n\n3.图相关概念的基本定义:\n\n• Path(路径): a walk $$(i_1, i_2, \\cdots, i_K)$$ with each node $$i_k$$ distinct\n• Cycle(环路): a walk where $$i_1=i_K$$\n• Geodesic(测地线): a shortest path between two nodes\n• Components(连通分量): maximal connected subgraph\n• Diameter(直径?): largest geodesic (largest shortest path)\n• Neighborhood(邻居): $$N_i(g) = { j G_{ij}=1}$$\n• Degree(度数): $$d_i = # N_i(g)$$\n\n4.Erdos‐Renyi Random Graphs\n\n• 如果所有结点的平均度数 $$d(n) \\gt (1+\\epsilon) log(n) some \\epsilon>0$$ ,那么整个网络很可能是连通的;\n• 如果 $$d(n) \\gt (1+\\epsilon) log(n) some?\\epsilon>0$$ 并且 $$\\frac{d(n)}{n}\\rightarrow 0$$ ,那么当n足够大时,网络的平均路径长度和Diameter将正比于 $$\\frac{log(n)}{log(d)}$$ 。\n\n5.树\n\n(a)初始一个根节点\n\n(b)根结点产生d个子节点\n\n(c)b中生成的d个子节点每个再产生(d-1)个子节点\n\n...... [",
null,
"](/images/post/2014/10/1.jpg)这种树在经过l步之后,将包含 $$1+d+d(d-1)+\\cdots +d(d-1)^{l-1}=1+\\frac{d((d-1)^l-1)}{(d-2)}\\approx (d-1)^l$$ 个节点。 6.Chernoff Bounds 若X是一个二项分布的随机变量,那么 $$P(E[X]/3\\le X \\le 3E[X])\\gt 1-e^{-E[X]}$$ 。 应用到ER图中,那么顶点度数比较靠近平均值d的概率 $$P(d/3\\le d_i \\le 3d)\\gt 1-e^{-d}$$ 。 7.Clustering What fraction of my friends are friends of each other? $$Cl_i(g)=#\\{\\text{kj in g}| \\text{k,j in } N_i(g)\\}/#\\{\\text{k,j in } N_i(g)\\}$$ Average Clustering: $$Cl^{Avg}(g)=\\sum_iCl_i(g)/n$$"
] | [
null,
"https://closure11.com/images/post/2014/10/1-300x241.jpg",
null
] | {"ft_lang_label":"__label__zh","ft_lang_prob":0.7314776,"math_prob":0.9997491,"size":1792,"snap":"2023-14-2023-23","text_gpt3_token_len":1108,"char_repetition_ratio":0.06599553,"word_repetition_ratio":0.0,"special_character_ratio":0.35435268,"punctuation_ratio":0.097484276,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99980325,"pos_list":[0,1,2],"im_url_duplicate_count":[null,2,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-02T18:18:45Z\",\"WARC-Record-ID\":\"<urn:uuid:79c26d85-2538-4474-b126-0a22865c9509>\",\"Content-Length\":\"8615\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:e44fcfeb-9f3f-4bc9-a9cb-36ddb481d27f>\",\"WARC-Concurrent-To\":\"<urn:uuid:25f4990d-69c3-4694-9287-3027aaaabaef>\",\"WARC-IP-Address\":\"185.199.111.153\",\"WARC-Target-URI\":\"https://closure11.com/social-and-economic-networks-models-and-analysis%E7%AC%94%E8%AE%B0%E4%B8%80/\",\"WARC-Payload-Digest\":\"sha1:FGDW7L3E4YCR3CNA327J43QOFAMOE3MB\",\"WARC-Block-Digest\":\"sha1:XVK4TFC4NV22HC24YPK23NJP7YS3EOUS\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224648850.88_warc_CC-MAIN-20230602172755-20230602202755-00715.warc.gz\"}"} |
https://cm-to-m.appspot.com/92.4-cm-to-m.html | [
"Cm To M\n\n# 92.4 cm to m92.4 Centimeters to Meters\n\ncm\n=\nm\n\n## How to convert 92.4 centimeters to meters?\n\n 92.4 cm * 0.01 m = 0.924 m 1 cm\nA common question is How many centimeter in 92.4 meter? And the answer is 9240.0 cm in 92.4 m. Likewise the question how many meter in 92.4 centimeter has the answer of 0.924 m in 92.4 cm.\n\n## How much are 92.4 centimeters in meters?\n\n92.4 centimeters equal 0.924 meters (92.4cm = 0.924m). Converting 92.4 cm to m is easy. Simply use our calculator above, or apply the formula to change the length 92.4 cm to m.\n\n## Convert 92.4 cm to common lengths\n\nUnitUnit of length\nNanometer924000000.0 nm\nMicrometer924000.0 µm\nMillimeter924.0 mm\nCentimeter92.4 cm\nInch36.3779527559 in\nFoot3.031496063 ft\nYard1.0104986877 yd\nMeter0.924 m\nKilometer0.000924 km\nMile0.000574147 mi\nNautical mile0.0004989201 nmi\n\n## What is 92.4 centimeters in m?\n\nTo convert 92.4 cm to m multiply the length in centimeters by 0.01. The 92.4 cm in m formula is [m] = 92.4 * 0.01. Thus, for 92.4 centimeters in meter we get 0.924 m.\n\n## 92.4 Centimeter Conversion Table",
null,
"## Alternative spelling\n\n92.4 Centimeters to Meters, 92.4 Centimeters in Meters, 92.4 cm to Meters, 92.4 cm in Meters, 92.4 Centimeter to m, 92.4 Centimeter in m, 92.4 cm to Meter, 92.4 cm in Meter, 92.4 Centimeters to m, 92.4 Centimeters in m, 92.4 Centimeter to Meters, 92.4 Centimeter in Meters, 92.4 cm to m, 92.4 cm in m"
] | [
null,
"https://cm-to-m.appspot.com/image/92.4.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.81509423,"math_prob":0.95021766,"size":1005,"snap":"2023-40-2023-50","text_gpt3_token_len":367,"char_repetition_ratio":0.2967033,"word_repetition_ratio":0.010638298,"special_character_ratio":0.39303482,"punctuation_ratio":0.2260274,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98953617,"pos_list":[0,1,2],"im_url_duplicate_count":[null,1,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-09-24T21:59:15Z\",\"WARC-Record-ID\":\"<urn:uuid:b0be3e44-aedf-44e2-aedb-e92abe476012>\",\"Content-Length\":\"27966\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:3d210a6c-da81-44aa-87c6-61af981158bc>\",\"WARC-Concurrent-To\":\"<urn:uuid:aed314d1-eadf-47b6-88de-c296f8f95e52>\",\"WARC-IP-Address\":\"142.251.163.153\",\"WARC-Target-URI\":\"https://cm-to-m.appspot.com/92.4-cm-to-m.html\",\"WARC-Payload-Digest\":\"sha1:YNQUZM2KNDOM734S4D7PU3CAOQF7CR52\",\"WARC-Block-Digest\":\"sha1:IFF3OGSTXLTBKE4MJZIEMXDHX2VS3WDF\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-40/CC-MAIN-2023-40_segments_1695233506669.30_warc_CC-MAIN-20230924191454-20230924221454-00296.warc.gz\"}"} |
https://www.r-bloggers.com/2018/01/multi-threaded-lz4-and-zstd-compression-from-r/ | [
"[This article was first published on Blog - Data Science and the fst Package, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)\nWant to share your content on R-bloggers? click here if you have a blog, or here if you don't.\n\nThe fst package uses LZ4 and ZSTD to compress columnar data. In the latest release, methods compress_fst and decompress_fst were added which allow for direct (multi-threaded) access to these excellent compressors.\n\n# LZ4 and ZSTD\n\nLZ4 is one of the fastest compressors around, and like all LZ77-type compressors, decompression is even faster. The fst package uses LZ4 to compress and decompress data when lower compression levels are selected (in method write_fst). For higher compression levels, the ZSTD compressor is used, which offers superior compression ratio’s but requires more CPU resources.\n\n# How to use LZ4 and ZSTD from the fst package\n\nFrom version 0.8.0, methods compress_fst and decompress_fst are available in the package. These methods give you direct access to LZ4 and ZSTD. As an example of how they can be used, we download a 90 MB file from Kaggle and recompress it using ZSTD:\n\n```library(fst)\n\nsample_file <- \"survey_results_public.csv\"\n\n# read file contents into a raw vector\n\n# compress bytes with ZSTD at a compression level of 20 percent\ncompressed_vec <- compress_fst(raw_vec, \"ZSTD\", 20)\n\n# write the compressed data into a new file\ncompressed_file <- \"survey_results_public.fsc\"\nwriteBin(compressed_vec, compressed_file)\n\n# compression ratio\nfile.size(sample_file) / file.size(compressed_file)\n\n## 8.949771\n```\n\nusing a ZSTD compression level of 20 percent, the contents of the csv file are compressed to about 11 percent of the original size (calculated as the inverse of the compression ratio). To decompress the generated compressed file again you can do:\n\n```# read compressed file into a raw vector\n\n# decompress file contents\nraw_vec_decompressed <- decompress_fst(compressed_vec)\n```\n\nA nice feature of data.table’s fread method is that it can parse in-memory data directly. That means that we can easily feed our raw vector to fread:\n\n```library(data.table)\n\n# read data set from the in-memory csv\n```\n\nThis effectively reads your data.table from a compressed file, which saves disk space and increases read speed for slow disks.\n\nMethods compress_fst and decompress_fst use a fully multi-threaded implementation of the LZ4 and ZSTD algorithms. This is accomplished by dividing the data into (at maximum) 48 blocks, which are then processed in parallel. This increases the compression and decompression speeds significantly at a small cost to compression ratio:\n\n```library(microbenchmark)\n\n# measure ZSTD compression performance at low setting\ncompress_time <- microbenchmark(\ncompress_fst(raw_vec, \"ZSTD\", 10),\ntimes = 500\n)\n\n# decompress again\ndecompress_time <- microbenchmark(\ndecompress_fst(compressed_vec),\ntimes = 500\n)\n\ncat(\"Compress: \", 1e3 * as.numeric(object.size(raw_vec)) / median(compress_time\\$time), \"MB/s\",\n\"Decompress: \", 1e3 * as.numeric(object.size(raw_vec)) / median(decompress_time\\$time), \"MB/s\")\n\n## Compress: 1299.649 MB/s Decompress: 1948.932 MB/s\n```\n\nThat’s a ZSTD compression speed of around 1.3 GB/s!\n\n# Bring on the cores\n\nWith more cores, you can do more parallel compression work. When we do the compression and decompression measurements above for a range of thread and compression level settings, we find the following dependency between speed and parallelism:",
null,
"Figure 1: Compression and decompression speeds vs the number of cores used for computation\n\nThe code that was used to obtain these results is given in the last paragraph. As can be expected, the compression speed is highest for lower compression level settings. But interesting enough, decompression speeds actually increase with higher compression settings! For the highest levels, ZSTD decompression speeds of more than 3 GB/s were measured in our experiment!\n\nDifferent compression levels settings lead to different compression ratio’s. This relation is depicted below. For completeness, LZ4 compression ratio’s were added as well:",
null,
"Figure 2: Compression ratio for different settings of the compression level\n\nThe highlighted point at a 20 percent (ZSTD) compression level corresponds to the measurement that we did earlier. It’s clear from the graph that with a combination of LZ4 and ZSTD, a wide range of compression ratio’s (and speeds) is available to the user.\n\n# The case for high compression levels\n\nThere are many use cases where you compress your data only once but decompress it much more often. For example, you can compress and store a file that will need to be read many times in the future. In that case it’s very useful to spend the CPU resources on compressing at a higher setting. It will give you higher decompression speeds during reads and the compressed data will occupy less space.\n\nAlso, when operating from a disk that has a lower speed than the (de-)compression algorithm, compression can really help. For those cases, compression will actually increase the total transfer speed because (much) less data has to be moved to or from the disk. This is also the main reason why fst is able to serialize a data set at higher speeds than the physical limits of a drive.\n\n(Please take a look at this post to get an idea of how that works exactly)\n\n# Benchmark code\n\nBelow is the benchmark script that was used to obtain the dependency graph for the number of cores and compression level.\n\n```library(data.table)\n\n# benchmark results\nbench <- data.table(Threads = as.integer(NULL), Time = as.numeric(NULL),\nMode = as.character(NULL), Level = as.integer(NULL), Size = as.numeric(NULL))\n\n# Note that compression time increases steadily with higher levels.\n# If you want to run this code yourself, start by using levels 10 * 0:5\nfor (level in 10 * 0:10) {\n\ncat(\".\") # show some progress\n\n# compress measurement\ncompress_time <- microbenchmark(\ncompressed_vec <- compress_fst(raw_vec, \"ZSTD\", level), times = 25)\n\n# decompress measurement\ndecompress_time <- microbenchmark(\ndecompress_fst(compressed_vec), times = 25)\n\n# add measurements to the benchmark results\nbench <- rbindlist(list(bench,\ndata.table(\nTime = median(compress_time\\$time),\nMode = \"Compress\",\nLevel = level,\nSize = as.integer(object.size(compressed_vec))),\ndata.table(\nTime = median(decompress_time\\$time),\nMode = \"Decompress\",\nLevel = level,\nSize = as.integer(object.size(compressed_vec)))))\n}\n}\n```\n\nThis creates a data.table with compression and decompression benchmark results.\n\nThis post is also available on R-bloggers"
] | [
null,
"https://i0.wp.com/blog.fstpackage.org/img/fst_compression/img/fig-unnamed-chunk-9-1.png",
null,
"https://i2.wp.com/blog.fstpackage.org/img/fst_compression/img/fig-unnamed-chunk-10-1.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.8566895,"math_prob":0.85859156,"size":7123,"snap":"2022-27-2022-33","text_gpt3_token_len":1600,"char_repetition_ratio":0.19005479,"word_repetition_ratio":0.043935053,"special_character_ratio":0.22729187,"punctuation_ratio":0.12051077,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.96870446,"pos_list":[0,1,2,3,4],"im_url_duplicate_count":[null,6,null,6,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-07-03T03:01:46Z\",\"WARC-Record-ID\":\"<urn:uuid:26bee7f5-3ef3-4fe5-896c-2aee718eb578>\",\"Content-Length\":\"111783\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:dd5ca2a5-5f04-4c85-9a72-6d61a9af06c0>\",\"WARC-Concurrent-To\":\"<urn:uuid:e9607c79-ca7d-43df-b3bb-fc2063e79f5b>\",\"WARC-IP-Address\":\"172.64.104.18\",\"WARC-Target-URI\":\"https://www.r-bloggers.com/2018/01/multi-threaded-lz4-and-zstd-compression-from-r/\",\"WARC-Payload-Digest\":\"sha1:EE5YMOJZE6DAEFS7VWTUCNFLGXPYVLZV\",\"WARC-Block-Digest\":\"sha1:VG3IPMAJ7MB53GHGOOVQR2EG7MF5TIRO\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-27/CC-MAIN-2022-27_segments_1656104209449.64_warc_CC-MAIN-20220703013155-20220703043155-00453.warc.gz\"}"} |
https://www.cubrid.org/manual/en/10.2/sql/function/logical_op.html | [
"# Logical Operators¶\n\nFor logical operators, boolean expressions or expressions that evaluates to an INTEGER value are specified as operands; TRUE, FALSE or NULL is returned as a result. If the INTEGER value is used, 0 is evaluated to FALSE and the other values are evaluated to TRUE. If a boolean value is used, 1 is evaluated to TRUE and 0 is evaluated to FALSE.\n\nThe following table shows the logical operators.\n\nLogical Operators\n\nLogical Operator Description Condition\nAND, && If all operands are TRUE, it returns TRUE. a AND b\nOR, || If none of operands is NULL and one or more operands are TRUE, it returns TRUE. If pipes_as_concat is no that is a parameter related to SQL statements, a double pipe symbol can be used as OR operator. a OR b\nXOR If none of operand is NULL and each of operand has a different value, it returns TRUE. a XOR b\nNOT, ! A unary operator. If a operand is FALSE , it returns TRUE. If it is TRUE , returns FALSE. NOT a\n\nTruth Table of Logical Operators\n\na b a AND b a OR b NOT a a XOR b\nTRUE TRUE TRUE TRUE FALSE FALSE\nTRUE FALSE FALSE TRUE FALSE TRUE\nTRUE NULL NULL TRUE FALSE NULL\nFALSE TRUE FALSE TRUE TRUE TRUE\nFALSE FALSE FALSE FALSE TRUE FALSE\nFALSE NULL FALSE NULL TRUE NULL"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6690855,"math_prob":0.98837495,"size":1261,"snap":"2020-24-2020-29","text_gpt3_token_len":321,"char_repetition_ratio":0.21638823,"word_repetition_ratio":0.04405286,"special_character_ratio":0.25535288,"punctuation_ratio":0.103174604,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9622276,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-07-11T14:26:00Z\",\"WARC-Record-ID\":\"<urn:uuid:a6e5ee75-0723-4b79-b0c7-57d96a6b6d28>\",\"Content-Length\":\"151883\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:d342f41e-35ad-43de-b10a-e577288e7916>\",\"WARC-Concurrent-To\":\"<urn:uuid:3ce44a2b-424d-4f6b-bfae-69dfc4c7d208>\",\"WARC-IP-Address\":\"218.233.240.68\",\"WARC-Target-URI\":\"https://www.cubrid.org/manual/en/10.2/sql/function/logical_op.html\",\"WARC-Payload-Digest\":\"sha1:7QTWR37UGPMIAFQTQRGXLDBTMN5RXYCV\",\"WARC-Block-Digest\":\"sha1:JAVYRMBEDADS6IKHLHEPIWJA4QKDA63J\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-29/CC-MAIN-2020-29_segments_1593655933254.67_warc_CC-MAIN-20200711130351-20200711160351-00270.warc.gz\"}"} |
https://thriftorama.savingadvice.com/2008/01/26/5597-closer-to-a-tiki-bar_34733/ | [
"User Real IP - 54.161.98.96\nArray\n(\n => Array\n(\n => 182.68.68.92\n)\n\n => Array\n(\n => 101.0.41.201\n)\n\n => Array\n(\n => 43.225.98.123\n)\n\n => Array\n(\n => 2.58.194.139\n)\n\n => Array\n(\n => 46.119.197.104\n)\n\n => Array\n(\n => 45.249.8.93\n)\n\n => Array\n(\n => 103.12.135.72\n)\n\n => Array\n(\n => 157.35.243.216\n)\n\n => Array\n(\n => 209.107.214.176\n)\n\n => Array\n(\n => 5.181.233.166\n)\n\n => Array\n(\n => 106.201.10.100\n)\n\n => Array\n(\n => 36.90.55.39\n)\n\n => Array\n(\n => 119.154.138.47\n)\n\n => Array\n(\n => 51.91.31.157\n)\n\n => Array\n(\n => 182.182.65.216\n)\n\n => Array\n(\n => 157.35.252.63\n)\n\n => Array\n(\n => 14.142.34.163\n)\n\n => Array\n(\n => 178.62.43.135\n)\n\n => Array\n(\n => 43.248.152.148\n)\n\n => Array\n(\n => 222.252.104.114\n)\n\n => Array\n(\n => 209.107.214.168\n)\n\n => Array\n(\n => 103.99.199.250\n)\n\n => Array\n(\n => 178.62.72.160\n)\n\n => Array\n(\n => 27.6.1.170\n)\n\n => Array\n(\n => 182.69.249.219\n)\n\n => Array\n(\n => 110.93.228.86\n)\n\n => Array\n(\n => 72.255.1.98\n)\n\n => Array\n(\n => 182.73.111.98\n)\n\n => Array\n(\n => 45.116.117.11\n)\n\n => Array\n(\n => 122.15.78.189\n)\n\n => Array\n(\n => 14.167.188.234\n)\n\n => Array\n(\n => 223.190.4.202\n)\n\n => Array\n(\n => 202.173.125.19\n)\n\n => Array\n(\n => 103.255.5.32\n)\n\n => Array\n(\n => 39.37.145.103\n)\n\n => Array\n(\n => 140.213.26.249\n)\n\n => Array\n(\n => 45.118.166.85\n)\n\n => Array\n(\n => 102.166.138.255\n)\n\n => Array\n(\n => 77.111.246.234\n)\n\n => Array\n(\n => 45.63.6.196\n)\n\n => Array\n(\n => 103.250.147.115\n)\n\n => Array\n(\n => 223.185.30.99\n)\n\n => Array\n(\n => 103.122.168.108\n)\n\n => Array\n(\n => 123.136.203.21\n)\n\n => Array\n(\n => 171.229.243.63\n)\n\n => Array\n(\n => 153.149.98.149\n)\n\n => Array\n(\n => 223.238.93.15\n)\n\n => Array\n(\n => 178.62.113.166\n)\n\n => Array\n(\n => 101.162.0.153\n)\n\n => Array\n(\n => 121.200.62.114\n)\n\n => Array\n(\n => 14.248.77.252\n)\n\n => Array\n(\n => 95.142.117.29\n)\n\n => Array\n(\n => 150.129.60.107\n)\n\n => Array\n(\n => 94.205.243.22\n)\n\n => Array\n(\n => 115.42.71.143\n)\n\n => Array\n(\n => 117.217.195.59\n)\n\n => Array\n(\n => 182.77.112.56\n)\n\n => Array\n(\n => 182.77.112.108\n)\n\n => Array\n(\n => 41.80.69.10\n)\n\n => Array\n(\n => 117.5.222.121\n)\n\n => Array\n(\n => 103.11.0.38\n)\n\n => Array\n(\n => 202.173.127.140\n)\n\n => Array\n(\n => 49.249.249.50\n)\n\n => Array\n(\n => 116.72.198.211\n)\n\n => Array\n(\n => 223.230.54.53\n)\n\n => Array\n(\n => 102.69.228.74\n)\n\n => Array\n(\n => 39.37.251.89\n)\n\n => Array\n(\n => 39.53.246.141\n)\n\n => Array\n(\n => 39.57.182.72\n)\n\n => Array\n(\n => 209.58.130.210\n)\n\n => Array\n(\n => 104.131.75.86\n)\n\n => Array\n(\n => 106.212.131.255\n)\n\n => Array\n(\n => 106.212.132.127\n)\n\n => Array\n(\n => 223.190.4.60\n)\n\n => Array\n(\n => 103.252.116.252\n)\n\n => Array\n(\n => 103.76.55.182\n)\n\n => Array\n(\n => 45.118.166.70\n)\n\n => Array\n(\n => 103.93.174.215\n)\n\n => Array\n(\n => 5.62.62.142\n)\n\n => Array\n(\n => 182.179.158.156\n)\n\n => Array\n(\n => 39.57.255.12\n)\n\n => Array\n(\n => 39.37.178.37\n)\n\n => Array\n(\n => 182.180.165.211\n)\n\n => Array\n(\n => 119.153.135.17\n)\n\n => Array\n(\n => 72.255.15.244\n)\n\n => Array\n(\n => 139.180.166.181\n)\n\n => Array\n(\n => 70.119.147.111\n)\n\n => Array\n(\n => 106.210.40.83\n)\n\n => Array\n(\n => 14.190.70.91\n)\n\n => Array\n(\n => 202.125.156.82\n)\n\n => Array\n(\n => 115.42.68.38\n)\n\n => Array\n(\n => 102.167.13.108\n)\n\n => Array\n(\n => 117.217.192.130\n)\n\n => Array\n(\n => 205.185.223.156\n)\n\n => Array\n(\n => 171.224.180.29\n)\n\n => Array\n(\n => 45.127.45.68\n)\n\n => Array\n(\n => 195.206.183.232\n)\n\n => Array\n(\n => 49.32.52.115\n)\n\n => Array\n(\n => 49.207.49.223\n)\n\n => Array\n(\n => 45.63.29.61\n)\n\n => Array\n(\n => 103.245.193.214\n)\n\n => Array\n(\n => 39.40.236.69\n)\n\n => Array\n(\n => 62.80.162.111\n)\n\n => Array\n(\n => 45.116.232.56\n)\n\n => Array\n(\n => 45.118.166.91\n)\n\n => Array\n(\n => 180.92.230.234\n)\n\n => Array\n(\n => 157.40.57.160\n)\n\n => Array\n(\n => 110.38.38.130\n)\n\n => Array\n(\n => 72.255.57.183\n)\n\n => Array\n(\n => 182.68.81.85\n)\n\n => Array\n(\n => 39.57.202.122\n)\n\n => Array\n(\n => 119.152.154.36\n)\n\n => Array\n(\n => 5.62.62.141\n)\n\n => Array\n(\n => 119.155.54.232\n)\n\n => Array\n(\n => 39.37.141.22\n)\n\n => Array\n(\n => 183.87.12.225\n)\n\n => Array\n(\n => 107.170.127.117\n)\n\n => Array\n(\n => 125.63.124.49\n)\n\n => Array\n(\n => 39.42.191.3\n)\n\n => Array\n(\n => 116.74.24.72\n)\n\n => Array\n(\n => 46.101.89.227\n)\n\n => Array\n(\n => 202.173.125.247\n)\n\n => Array\n(\n => 39.42.184.254\n)\n\n => Array\n(\n => 115.186.165.132\n)\n\n => Array\n(\n => 39.57.206.126\n)\n\n => Array\n(\n => 103.245.13.145\n)\n\n => Array\n(\n => 202.175.246.43\n)\n\n => Array\n(\n => 192.140.152.150\n)\n\n => Array\n(\n => 202.88.250.103\n)\n\n => Array\n(\n => 103.248.94.207\n)\n\n => Array\n(\n => 77.73.66.101\n)\n\n => Array\n(\n => 104.131.66.8\n)\n\n => Array\n(\n => 113.186.161.97\n)\n\n => Array\n(\n => 222.254.5.7\n)\n\n => Array\n(\n => 223.233.67.247\n)\n\n => Array\n(\n => 171.249.116.146\n)\n\n => Array\n(\n => 47.30.209.71\n)\n\n => Array\n(\n => 202.134.13.130\n)\n\n => Array\n(\n => 27.6.135.7\n)\n\n => Array\n(\n => 107.170.186.79\n)\n\n => Array\n(\n => 103.212.89.171\n)\n\n => Array\n(\n => 117.197.9.77\n)\n\n => Array\n(\n => 122.176.206.233\n)\n\n => Array\n(\n => 192.227.253.222\n)\n\n => Array\n(\n => 182.188.224.119\n)\n\n => Array\n(\n => 14.248.70.74\n)\n\n => Array\n(\n => 42.118.219.169\n)\n\n => Array\n(\n => 110.39.146.170\n)\n\n => Array\n(\n => 119.160.66.143\n)\n\n => Array\n(\n => 103.248.95.130\n)\n\n => Array\n(\n => 27.63.152.208\n)\n\n => Array\n(\n => 49.207.114.96\n)\n\n => Array\n(\n => 102.166.23.214\n)\n\n => Array\n(\n => 175.107.254.73\n)\n\n => Array\n(\n => 103.10.227.214\n)\n\n => Array\n(\n => 202.143.115.89\n)\n\n => Array\n(\n => 110.93.227.187\n)\n\n => Array\n(\n => 103.140.31.60\n)\n\n => Array\n(\n => 110.37.231.46\n)\n\n => Array\n(\n => 39.36.99.238\n)\n\n => Array\n(\n => 157.37.140.26\n)\n\n => Array\n(\n => 43.246.202.226\n)\n\n => Array\n(\n => 137.97.8.143\n)\n\n => Array\n(\n => 182.65.52.242\n)\n\n => Array\n(\n => 115.42.69.62\n)\n\n => Array\n(\n => 14.143.254.58\n)\n\n => Array\n(\n => 223.179.143.236\n)\n\n => Array\n(\n => 223.179.143.249\n)\n\n => Array\n(\n => 103.143.7.54\n)\n\n => Array\n(\n => 223.179.139.106\n)\n\n => Array\n(\n => 39.40.219.90\n)\n\n => Array\n(\n => 45.115.141.231\n)\n\n => Array\n(\n => 120.29.100.33\n)\n\n => Array\n(\n => 112.196.132.5\n)\n\n => Array\n(\n => 202.163.123.153\n)\n\n => Array\n(\n => 5.62.58.146\n)\n\n => Array\n(\n => 39.53.216.113\n)\n\n => Array\n(\n => 42.111.160.73\n)\n\n => Array\n(\n => 107.182.231.213\n)\n\n => Array\n(\n => 119.82.94.120\n)\n\n => Array\n(\n => 178.62.34.82\n)\n\n => Array\n(\n => 203.122.6.18\n)\n\n => Array\n(\n => 157.42.38.251\n)\n\n => Array\n(\n => 45.112.68.222\n)\n\n => Array\n(\n => 49.206.212.122\n)\n\n => Array\n(\n => 104.236.70.228\n)\n\n => Array\n(\n => 42.111.34.243\n)\n\n => Array\n(\n => 84.241.19.186\n)\n\n => Array\n(\n => 89.187.180.207\n)\n\n => Array\n(\n => 104.243.212.118\n)\n\n => Array\n(\n => 104.236.55.136\n)\n\n => Array\n(\n => 106.201.16.163\n)\n\n => Array\n(\n => 46.101.40.25\n)\n\n => Array\n(\n => 45.118.166.94\n)\n\n => Array\n(\n => 49.36.128.102\n)\n\n => Array\n(\n => 14.142.193.58\n)\n\n => Array\n(\n => 212.79.124.176\n)\n\n => Array\n(\n => 45.32.191.194\n)\n\n => Array\n(\n => 105.112.107.46\n)\n\n => Array\n(\n => 106.201.14.8\n)\n\n => Array\n(\n => 110.93.240.65\n)\n\n => Array\n(\n => 27.96.95.177\n)\n\n => Array\n(\n => 45.41.134.35\n)\n\n => Array\n(\n => 180.151.13.110\n)\n\n => Array\n(\n => 101.53.242.89\n)\n\n => Array\n(\n => 115.186.3.110\n)\n\n => Array\n(\n => 171.49.185.242\n)\n\n => Array\n(\n => 115.42.70.24\n)\n\n => Array\n(\n => 45.128.188.43\n)\n\n => Array\n(\n => 103.140.129.63\n)\n\n => Array\n(\n => 101.50.113.147\n)\n\n => Array\n(\n => 103.66.73.30\n)\n\n => Array\n(\n => 117.247.193.169\n)\n\n => Array\n(\n => 120.29.100.94\n)\n\n => Array\n(\n => 42.109.154.39\n)\n\n => Array\n(\n => 122.173.155.150\n)\n\n => Array\n(\n => 45.115.104.53\n)\n\n => Array\n(\n => 116.74.29.84\n)\n\n => Array\n(\n => 101.50.125.34\n)\n\n => Array\n(\n => 45.118.166.80\n)\n\n => Array\n(\n => 91.236.184.27\n)\n\n => Array\n(\n => 113.167.185.120\n)\n\n => Array\n(\n => 27.97.66.222\n)\n\n => Array\n(\n => 43.247.41.117\n)\n\n => Array\n(\n => 23.229.16.227\n)\n\n => Array\n(\n => 14.248.79.209\n)\n\n => Array\n(\n => 117.5.194.26\n)\n\n => Array\n(\n => 117.217.205.41\n)\n\n => Array\n(\n => 114.79.169.99\n)\n\n => Array\n(\n => 103.55.60.97\n)\n\n => Array\n(\n => 182.75.89.210\n)\n\n => Array\n(\n => 77.73.66.109\n)\n\n => Array\n(\n => 182.77.126.139\n)\n\n => Array\n(\n => 14.248.77.166\n)\n\n => Array\n(\n => 157.35.224.133\n)\n\n => Array\n(\n => 183.83.38.27\n)\n\n => Array\n(\n => 182.68.4.77\n)\n\n => Array\n(\n => 122.177.130.234\n)\n\n => Array\n(\n => 103.24.99.99\n)\n\n => Array\n(\n => 103.91.127.66\n)\n\n => Array\n(\n => 41.90.34.240\n)\n\n => Array\n(\n => 49.205.77.102\n)\n\n => Array\n(\n => 103.248.94.142\n)\n\n => Array\n(\n => 104.143.92.170\n)\n\n => Array\n(\n => 219.91.157.114\n)\n\n => Array\n(\n => 223.190.88.22\n)\n\n => Array\n(\n => 223.190.86.232\n)\n\n => Array\n(\n => 39.41.172.80\n)\n\n => Array\n(\n => 124.107.206.5\n)\n\n => Array\n(\n => 139.167.180.224\n)\n\n => Array\n(\n => 93.76.64.248\n)\n\n => Array\n(\n => 65.216.227.119\n)\n\n => Array\n(\n => 223.190.119.141\n)\n\n => Array\n(\n => 110.93.237.179\n)\n\n => Array\n(\n => 41.90.7.85\n)\n\n => Array\n(\n => 103.100.6.26\n)\n\n => Array\n(\n => 104.140.83.13\n)\n\n => Array\n(\n => 223.190.119.133\n)\n\n => Array\n(\n => 119.152.150.87\n)\n\n => Array\n(\n => 103.125.130.147\n)\n\n => Array\n(\n => 27.6.5.52\n)\n\n => Array\n(\n => 103.98.188.26\n)\n\n => Array\n(\n => 39.35.121.81\n)\n\n => Array\n(\n => 74.119.146.182\n)\n\n => Array\n(\n => 5.181.233.162\n)\n\n => Array\n(\n => 157.39.18.60\n)\n\n => Array\n(\n => 1.187.252.25\n)\n\n => Array\n(\n => 39.42.145.59\n)\n\n => Array\n(\n => 39.35.39.198\n)\n\n => Array\n(\n => 49.36.128.214\n)\n\n => Array\n(\n => 182.190.20.56\n)\n\n => Array\n(\n => 122.180.249.189\n)\n\n => Array\n(\n => 117.217.203.107\n)\n\n => Array\n(\n => 103.70.82.241\n)\n\n => Array\n(\n => 45.118.166.68\n)\n\n => Array\n(\n => 122.180.168.39\n)\n\n => Array\n(\n => 149.28.67.254\n)\n\n => Array\n(\n => 223.233.73.8\n)\n\n => Array\n(\n => 122.167.140.0\n)\n\n => Array\n(\n => 95.158.51.55\n)\n\n => Array\n(\n => 27.96.95.134\n)\n\n => Array\n(\n => 49.206.214.53\n)\n\n => Array\n(\n => 212.103.49.92\n)\n\n => Array\n(\n => 122.177.115.101\n)\n\n => Array\n(\n => 171.50.187.124\n)\n\n => Array\n(\n => 122.164.55.107\n)\n\n => Array\n(\n => 98.114.217.204\n)\n\n => Array\n(\n => 106.215.10.54\n)\n\n => Array\n(\n => 115.42.68.28\n)\n\n => Array\n(\n => 104.194.220.87\n)\n\n => Array\n(\n => 103.137.84.170\n)\n\n => Array\n(\n => 61.16.142.110\n)\n\n => Array\n(\n => 212.103.49.85\n)\n\n => Array\n(\n => 39.53.248.162\n)\n\n => Array\n(\n => 203.122.40.214\n)\n\n => Array\n(\n => 117.217.198.72\n)\n\n => Array\n(\n => 115.186.191.203\n)\n\n => Array\n(\n => 120.29.100.199\n)\n\n => Array\n(\n => 45.151.237.24\n)\n\n => Array\n(\n => 223.190.125.232\n)\n\n => Array\n(\n => 41.80.151.17\n)\n\n => Array\n(\n => 23.111.188.5\n)\n\n => Array\n(\n => 223.190.125.216\n)\n\n => Array\n(\n => 103.217.133.119\n)\n\n => Array\n(\n => 103.198.173.132\n)\n\n => Array\n(\n => 47.31.155.89\n)\n\n => Array\n(\n => 223.190.20.253\n)\n\n => Array\n(\n => 104.131.92.125\n)\n\n => Array\n(\n => 223.190.19.152\n)\n\n => Array\n(\n => 103.245.193.191\n)\n\n => Array\n(\n => 106.215.58.255\n)\n\n => Array\n(\n => 119.82.83.238\n)\n\n => Array\n(\n => 106.212.128.138\n)\n\n => Array\n(\n => 139.167.237.36\n)\n\n => Array\n(\n => 222.124.40.250\n)\n\n => Array\n(\n => 134.56.185.169\n)\n\n => Array\n(\n => 54.255.226.31\n)\n\n => Array\n(\n => 137.97.162.31\n)\n\n => Array\n(\n => 95.185.21.191\n)\n\n => Array\n(\n => 171.61.168.151\n)\n\n => Array\n(\n => 137.97.184.4\n)\n\n => Array\n(\n => 106.203.151.202\n)\n\n => Array\n(\n => 39.37.137.0\n)\n\n => Array\n(\n => 45.118.166.66\n)\n\n => Array\n(\n => 14.248.105.100\n)\n\n => Array\n(\n => 106.215.61.185\n)\n\n => Array\n(\n => 202.83.57.179\n)\n\n => Array\n(\n => 89.187.182.176\n)\n\n => Array\n(\n => 49.249.232.198\n)\n\n => Array\n(\n => 132.154.95.236\n)\n\n => Array\n(\n => 223.233.83.230\n)\n\n => Array\n(\n => 183.83.153.14\n)\n\n => Array\n(\n => 125.63.72.210\n)\n\n => Array\n(\n => 207.174.202.11\n)\n\n => Array\n(\n => 119.95.88.59\n)\n\n => Array\n(\n => 122.170.14.150\n)\n\n => Array\n(\n => 45.118.166.75\n)\n\n => Array\n(\n => 103.12.135.37\n)\n\n => Array\n(\n => 49.207.120.225\n)\n\n => Array\n(\n => 182.64.195.207\n)\n\n => Array\n(\n => 103.99.37.16\n)\n\n => Array\n(\n => 46.150.104.221\n)\n\n => Array\n(\n => 104.236.195.147\n)\n\n => Array\n(\n => 103.104.192.43\n)\n\n => Array\n(\n => 24.242.159.118\n)\n\n => Array\n(\n => 39.42.179.143\n)\n\n => Array\n(\n => 111.93.58.131\n)\n\n => Array\n(\n => 193.176.84.127\n)\n\n => Array\n(\n => 209.58.142.218\n)\n\n => Array\n(\n => 69.243.152.129\n)\n\n => Array\n(\n => 117.97.131.249\n)\n\n => Array\n(\n => 103.230.180.89\n)\n\n => Array\n(\n => 106.212.170.192\n)\n\n => Array\n(\n => 171.224.180.95\n)\n\n => Array\n(\n => 158.222.11.87\n)\n\n => Array\n(\n => 119.155.60.246\n)\n\n => Array\n(\n => 41.90.43.129\n)\n\n => Array\n(\n => 185.183.104.170\n)\n\n => Array\n(\n => 14.248.67.65\n)\n\n => Array\n(\n => 117.217.205.82\n)\n\n => Array\n(\n => 111.88.7.209\n)\n\n => Array\n(\n => 49.36.132.244\n)\n\n => Array\n(\n => 171.48.40.2\n)\n\n => Array\n(\n => 119.81.105.2\n)\n\n => Array\n(\n => 49.36.128.114\n)\n\n => Array\n(\n => 213.200.31.93\n)\n\n => Array\n(\n => 2.50.15.110\n)\n\n => Array\n(\n => 120.29.104.67\n)\n\n => Array\n(\n => 223.225.32.221\n)\n\n => Array\n(\n => 14.248.67.195\n)\n\n => Array\n(\n => 119.155.36.13\n)\n\n => Array\n(\n => 101.50.95.104\n)\n\n => Array\n(\n => 104.236.205.233\n)\n\n => Array\n(\n => 122.164.36.150\n)\n\n => Array\n(\n => 157.45.93.209\n)\n\n => Array\n(\n => 182.77.118.100\n)\n\n => Array\n(\n => 182.74.134.218\n)\n\n => Array\n(\n => 183.82.128.146\n)\n\n => Array\n(\n => 112.196.170.234\n)\n\n => Array\n(\n => 122.173.230.178\n)\n\n => Array\n(\n => 122.164.71.199\n)\n\n => Array\n(\n => 51.79.19.31\n)\n\n => Array\n(\n => 58.65.222.20\n)\n\n => Array\n(\n => 103.27.203.97\n)\n\n => Array\n(\n => 111.88.7.242\n)\n\n => Array\n(\n => 14.171.232.77\n)\n\n => Array\n(\n => 46.101.22.182\n)\n\n => Array\n(\n => 103.94.219.19\n)\n\n => Array\n(\n => 139.190.83.30\n)\n\n => Array\n(\n => 223.190.27.184\n)\n\n => Array\n(\n => 182.185.183.34\n)\n\n => Array\n(\n => 91.74.181.242\n)\n\n => Array\n(\n => 222.252.107.14\n)\n\n => Array\n(\n => 137.97.8.28\n)\n\n => Array\n(\n => 46.101.16.229\n)\n\n => Array\n(\n => 122.53.254.229\n)\n\n => Array\n(\n => 106.201.17.180\n)\n\n => Array\n(\n => 123.24.170.129\n)\n\n => Array\n(\n => 182.185.180.79\n)\n\n => Array\n(\n => 223.190.17.4\n)\n\n => Array\n(\n => 213.108.105.1\n)\n\n => Array\n(\n => 171.22.76.9\n)\n\n => Array\n(\n => 202.66.178.164\n)\n\n => Array\n(\n => 178.62.97.171\n)\n\n => Array\n(\n => 167.179.110.209\n)\n\n => Array\n(\n => 223.230.147.172\n)\n\n => Array\n(\n => 76.218.195.160\n)\n\n => Array\n(\n => 14.189.186.178\n)\n\n => Array\n(\n => 157.41.45.143\n)\n\n => Array\n(\n => 223.238.22.53\n)\n\n => Array\n(\n => 111.88.7.244\n)\n\n => Array\n(\n => 5.62.57.19\n)\n\n => Array\n(\n => 106.201.25.216\n)\n\n => Array\n(\n => 117.217.205.33\n)\n\n => Array\n(\n => 111.88.7.215\n)\n\n => Array\n(\n => 106.201.13.77\n)\n\n => Array\n(\n => 50.7.93.29\n)\n\n => Array\n(\n => 123.201.70.112\n)\n\n => Array\n(\n => 39.42.108.226\n)\n\n => Array\n(\n => 27.5.198.29\n)\n\n => Array\n(\n => 223.238.85.187\n)\n\n => Array\n(\n => 171.49.176.32\n)\n\n => Array\n(\n => 14.248.79.242\n)\n\n => Array\n(\n => 46.219.211.183\n)\n\n => Array\n(\n => 185.244.212.251\n)\n\n => Array\n(\n => 14.102.84.126\n)\n\n => Array\n(\n => 106.212.191.52\n)\n\n => Array\n(\n => 154.72.153.203\n)\n\n => Array\n(\n => 14.175.82.64\n)\n\n => Array\n(\n => 141.105.139.131\n)\n\n => Array\n(\n => 182.156.103.98\n)\n\n => Array\n(\n => 117.217.204.75\n)\n\n => Array\n(\n => 104.140.83.115\n)\n\n => Array\n(\n => 119.152.62.8\n)\n\n => Array\n(\n => 45.125.247.94\n)\n\n => Array\n(\n => 137.97.37.252\n)\n\n => Array\n(\n => 117.217.204.73\n)\n\n => Array\n(\n => 14.248.79.133\n)\n\n => Array\n(\n => 39.37.152.52\n)\n\n => Array\n(\n => 103.55.60.54\n)\n\n => Array\n(\n => 102.166.183.88\n)\n\n => Array\n(\n => 5.62.60.162\n)\n\n => Array\n(\n => 5.62.60.163\n)\n\n => Array\n(\n => 160.202.38.131\n)\n\n => Array\n(\n => 106.215.20.253\n)\n\n => Array\n(\n => 39.37.160.54\n)\n\n => Array\n(\n => 119.152.59.186\n)\n\n => Array\n(\n => 183.82.0.164\n)\n\n => Array\n(\n => 41.90.54.87\n)\n\n => Array\n(\n => 157.36.85.158\n)\n\n => Array\n(\n => 110.37.229.162\n)\n\n => Array\n(\n => 203.99.180.148\n)\n\n => Array\n(\n => 117.97.132.91\n)\n\n => Array\n(\n => 171.61.147.105\n)\n\n => Array\n(\n => 14.98.147.214\n)\n\n => Array\n(\n => 209.234.253.191\n)\n\n => Array\n(\n => 92.38.148.60\n)\n\n => Array\n(\n => 178.128.104.139\n)\n\n => Array\n(\n => 212.154.0.176\n)\n\n => Array\n(\n => 103.41.24.141\n)\n\n => Array\n(\n => 2.58.194.132\n)\n\n => Array\n(\n => 180.190.78.169\n)\n\n => Array\n(\n => 106.215.45.182\n)\n\n => Array\n(\n => 125.63.100.222\n)\n\n => Array\n(\n => 110.54.247.17\n)\n\n => Array\n(\n => 103.26.85.105\n)\n\n => Array\n(\n => 39.42.147.3\n)\n\n => Array\n(\n => 137.97.51.41\n)\n\n => Array\n(\n => 71.202.72.27\n)\n\n => Array\n(\n => 119.155.35.10\n)\n\n => Array\n(\n => 202.47.43.120\n)\n\n => Array\n(\n => 183.83.64.101\n)\n\n => Array\n(\n => 182.68.106.141\n)\n\n => Array\n(\n => 171.61.187.87\n)\n\n => Array\n(\n => 178.162.198.118\n)\n\n => Array\n(\n => 115.97.151.218\n)\n\n => Array\n(\n => 196.207.184.210\n)\n\n => Array\n(\n => 198.16.70.51\n)\n\n => Array\n(\n => 41.60.237.33\n)\n\n => Array\n(\n => 47.11.86.26\n)\n\n => Array\n(\n => 117.217.201.183\n)\n\n => Array\n(\n => 203.192.241.79\n)\n\n => Array\n(\n => 122.165.119.85\n)\n\n => Array\n(\n => 23.227.142.218\n)\n\n => Array\n(\n => 178.128.104.221\n)\n\n => Array\n(\n => 14.192.54.163\n)\n\n => Array\n(\n => 139.5.253.218\n)\n\n => Array\n(\n => 117.230.140.127\n)\n\n => Array\n(\n => 195.114.149.199\n)\n\n => Array\n(\n => 14.239.180.220\n)\n\n => Array\n(\n => 103.62.155.94\n)\n\n => Array\n(\n => 118.71.97.14\n)\n\n => Array\n(\n => 137.97.55.163\n)\n\n => Array\n(\n => 202.47.49.198\n)\n\n => Array\n(\n => 171.61.177.85\n)\n\n => Array\n(\n => 137.97.190.224\n)\n\n => Array\n(\n => 117.230.34.142\n)\n\n => Array\n(\n => 103.41.32.5\n)\n\n => Array\n(\n => 203.90.82.237\n)\n\n => Array\n(\n => 125.63.124.238\n)\n\n => Array\n(\n => 103.232.128.78\n)\n\n => Array\n(\n => 106.197.14.227\n)\n\n => Array\n(\n => 81.17.242.244\n)\n\n => Array\n(\n => 81.19.210.179\n)\n\n => Array\n(\n => 103.134.94.98\n)\n\n => Array\n(\n => 110.38.0.86\n)\n\n => Array\n(\n => 103.10.224.195\n)\n\n => Array\n(\n => 45.118.166.89\n)\n\n => Array\n(\n => 115.186.186.68\n)\n\n => Array\n(\n => 138.197.129.237\n)\n\n => Array\n(\n => 14.247.162.52\n)\n\n => Array\n(\n => 103.255.4.5\n)\n\n => Array\n(\n => 14.167.188.254\n)\n\n => Array\n(\n => 5.62.59.54\n)\n\n => Array\n(\n => 27.122.14.80\n)\n\n => Array\n(\n => 39.53.240.21\n)\n\n => Array\n(\n => 39.53.241.243\n)\n\n => Array\n(\n => 117.230.130.161\n)\n\n => Array\n(\n => 118.71.191.149\n)\n\n => Array\n(\n => 5.188.95.54\n)\n\n => Array\n(\n => 66.45.250.27\n)\n\n => Array\n(\n => 106.215.6.175\n)\n\n => Array\n(\n => 27.122.14.86\n)\n\n => Array\n(\n => 103.255.4.51\n)\n\n => Array\n(\n => 101.50.93.119\n)\n\n => Array\n(\n => 137.97.183.51\n)\n\n => Array\n(\n => 117.217.204.185\n)\n\n => Array\n(\n => 95.104.106.82\n)\n\n => Array\n(\n => 5.62.56.211\n)\n\n => Array\n(\n => 103.104.181.214\n)\n\n => Array\n(\n => 36.72.214.243\n)\n\n => Array\n(\n => 5.62.62.219\n)\n\n => Array\n(\n => 110.36.202.4\n)\n\n => Array\n(\n => 103.255.4.253\n)\n\n => Array\n(\n => 110.172.138.61\n)\n\n => Array\n(\n => 159.203.24.195\n)\n\n => Array\n(\n => 13.229.88.42\n)\n\n => Array\n(\n => 59.153.235.20\n)\n\n => Array\n(\n => 171.236.169.32\n)\n\n => Array\n(\n => 14.231.85.206\n)\n\n => Array\n(\n => 119.152.54.103\n)\n\n => Array\n(\n => 103.80.117.202\n)\n\n => Array\n(\n => 223.179.157.75\n)\n\n => Array\n(\n => 122.173.68.249\n)\n\n => Array\n(\n => 188.163.72.113\n)\n\n => Array\n(\n => 119.155.20.164\n)\n\n => Array\n(\n => 103.121.43.68\n)\n\n => Array\n(\n => 5.62.58.6\n)\n\n => Array\n(\n => 203.122.40.154\n)\n\n => Array\n(\n => 222.254.96.203\n)\n\n => Array\n(\n => 103.83.148.167\n)\n\n => Array\n(\n => 103.87.251.226\n)\n\n => Array\n(\n => 123.24.129.24\n)\n\n => Array\n(\n => 137.97.83.8\n)\n\n => Array\n(\n => 223.225.33.132\n)\n\n => Array\n(\n => 128.76.175.190\n)\n\n => Array\n(\n => 195.85.219.32\n)\n\n => Array\n(\n => 139.167.102.93\n)\n\n => Array\n(\n => 49.15.198.253\n)\n\n => Array\n(\n => 45.152.183.172\n)\n\n => Array\n(\n => 42.106.180.136\n)\n\n => Array\n(\n => 95.142.120.9\n)\n\n => Array\n(\n => 139.167.236.4\n)\n\n => Array\n(\n => 159.65.72.167\n)\n\n => Array\n(\n => 49.15.89.2\n)\n\n => Array\n(\n => 42.201.161.195\n)\n\n => Array\n(\n => 27.97.210.38\n)\n\n => Array\n(\n => 171.241.45.19\n)\n\n => Array\n(\n => 42.108.2.18\n)\n\n => Array\n(\n => 171.236.40.68\n)\n\n => Array\n(\n => 110.93.82.102\n)\n\n => Array\n(\n => 43.225.24.186\n)\n\n => Array\n(\n => 117.230.189.119\n)\n\n => Array\n(\n => 124.123.147.187\n)\n\n => Array\n(\n => 216.151.184.250\n)\n\n => Array\n(\n => 49.15.133.16\n)\n\n => Array\n(\n => 49.15.220.74\n)\n\n => Array\n(\n => 157.37.221.246\n)\n\n => Array\n(\n => 176.124.233.112\n)\n\n => Array\n(\n => 118.71.167.40\n)\n\n => Array\n(\n => 182.185.213.161\n)\n\n => Array\n(\n => 47.31.79.248\n)\n\n => Array\n(\n => 223.179.238.192\n)\n\n => Array\n(\n => 79.110.128.219\n)\n\n => Array\n(\n => 106.210.42.111\n)\n\n => Array\n(\n => 47.247.214.229\n)\n\n => Array\n(\n => 193.0.220.108\n)\n\n => Array\n(\n => 1.39.206.254\n)\n\n => Array\n(\n => 123.201.77.38\n)\n\n => Array\n(\n => 115.178.207.21\n)\n\n => Array\n(\n => 37.111.202.92\n)\n\n => Array\n(\n => 49.14.179.243\n)\n\n => Array\n(\n => 117.230.145.171\n)\n\n => Array\n(\n => 171.229.242.96\n)\n\n => Array\n(\n => 27.59.174.209\n)\n\n => Array\n(\n => 1.38.202.211\n)\n\n => Array\n(\n => 157.37.128.46\n)\n\n => Array\n(\n => 49.15.94.80\n)\n\n => Array\n(\n => 123.25.46.147\n)\n\n => Array\n(\n => 117.230.170.185\n)\n\n => Array\n(\n => 5.62.16.19\n)\n\n => Array\n(\n => 103.18.22.25\n)\n\n => Array\n(\n => 103.46.200.132\n)\n\n => Array\n(\n => 27.97.165.126\n)\n\n => Array\n(\n => 117.230.54.241\n)\n\n => Array\n(\n => 27.97.209.76\n)\n\n => Array\n(\n => 47.31.182.109\n)\n\n => Array\n(\n => 47.30.223.221\n)\n\n => Array\n(\n => 103.31.94.82\n)\n\n => Array\n(\n => 103.211.14.45\n)\n\n => Array\n(\n => 171.49.233.58\n)\n\n => Array\n(\n => 65.49.126.95\n)\n\n => Array\n(\n => 69.255.101.170\n)\n\n => Array\n(\n => 27.56.224.67\n)\n\n => Array\n(\n => 117.230.146.86\n)\n\n => Array\n(\n => 27.59.154.52\n)\n\n => Array\n(\n => 132.154.114.10\n)\n\n => Array\n(\n => 182.186.77.60\n)\n\n => Array\n(\n => 117.230.136.74\n)\n\n => Array\n(\n => 43.251.94.253\n)\n\n => Array\n(\n => 103.79.168.225\n)\n\n => Array\n(\n => 117.230.56.51\n)\n\n => Array\n(\n => 27.97.187.45\n)\n\n => Array\n(\n => 137.97.190.61\n)\n\n => Array\n(\n => 193.0.220.26\n)\n\n => Array\n(\n => 49.36.137.62\n)\n\n => Array\n(\n => 47.30.189.248\n)\n\n => Array\n(\n => 109.169.23.84\n)\n\n => Array\n(\n => 111.119.185.46\n)\n\n => Array\n(\n => 103.83.148.246\n)\n\n => Array\n(\n => 157.32.119.138\n)\n\n => Array\n(\n => 5.62.41.53\n)\n\n => Array\n(\n => 47.8.243.236\n)\n\n => Array\n(\n => 112.79.158.69\n)\n\n => Array\n(\n => 180.92.148.218\n)\n\n => Array\n(\n => 157.36.162.154\n)\n\n => Array\n(\n => 39.46.114.47\n)\n\n => Array\n(\n => 117.230.173.250\n)\n\n => Array\n(\n => 117.230.155.188\n)\n\n => Array\n(\n => 193.0.220.17\n)\n\n => Array\n(\n => 117.230.171.166\n)\n\n => Array\n(\n => 49.34.59.228\n)\n\n => Array\n(\n => 111.88.197.247\n)\n\n => Array\n(\n => 47.31.156.112\n)\n\n => Array\n(\n => 137.97.64.180\n)\n\n => Array\n(\n => 14.244.227.18\n)\n\n => Array\n(\n => 113.167.158.8\n)\n\n => Array\n(\n => 39.37.175.189\n)\n\n => Array\n(\n => 139.167.211.8\n)\n\n => Array\n(\n => 73.120.85.235\n)\n\n => Array\n(\n => 104.236.195.72\n)\n\n => Array\n(\n => 27.97.190.71\n)\n\n => Array\n(\n => 79.46.170.222\n)\n\n => Array\n(\n => 102.185.244.207\n)\n\n => Array\n(\n => 37.111.136.30\n)\n\n => Array\n(\n => 50.7.93.28\n)\n\n => Array\n(\n => 110.54.251.43\n)\n\n => Array\n(\n => 49.36.143.40\n)\n\n => Array\n(\n => 103.130.112.185\n)\n\n => Array\n(\n => 37.111.139.202\n)\n\n => Array\n(\n => 49.36.139.108\n)\n\n => Array\n(\n => 37.111.136.179\n)\n\n => Array\n(\n => 123.17.165.77\n)\n\n => Array\n(\n => 49.207.143.206\n)\n\n => Array\n(\n => 39.53.80.149\n)\n\n => Array\n(\n => 223.188.71.214\n)\n\n => Array\n(\n => 1.39.222.233\n)\n\n => Array\n(\n => 117.230.9.85\n)\n\n => Array\n(\n => 103.251.245.216\n)\n\n => Array\n(\n => 122.169.133.145\n)\n\n => Array\n(\n => 43.250.165.57\n)\n\n => Array\n(\n => 39.44.13.235\n)\n\n => Array\n(\n => 157.47.181.2\n)\n\n => Array\n(\n => 27.56.203.50\n)\n\n => Array\n(\n => 191.96.97.58\n)\n\n => Array\n(\n => 111.88.107.172\n)\n\n => Array\n(\n => 113.193.198.136\n)\n\n => Array\n(\n => 117.230.172.175\n)\n\n => Array\n(\n => 191.96.182.239\n)\n\n => Array\n(\n => 2.58.46.28\n)\n\n => Array\n(\n => 183.83.253.87\n)\n\n => Array\n(\n => 49.15.139.242\n)\n\n => Array\n(\n => 42.107.220.236\n)\n\n => Array\n(\n => 14.192.53.196\n)\n\n => Array\n(\n => 42.119.212.202\n)\n\n => Array\n(\n => 192.158.234.45\n)\n\n => Array\n(\n => 49.149.102.192\n)\n\n => Array\n(\n => 47.8.170.17\n)\n\n => Array\n(\n => 117.197.13.247\n)\n\n => Array\n(\n => 116.74.34.44\n)\n\n => Array\n(\n => 103.79.249.163\n)\n\n => Array\n(\n => 182.189.95.70\n)\n\n => Array\n(\n => 137.59.218.118\n)\n\n => Array\n(\n => 103.79.170.243\n)\n\n => Array\n(\n => 39.40.54.25\n)\n\n => Array\n(\n => 119.155.40.170\n)\n\n => Array\n(\n => 1.39.212.157\n)\n\n => Array\n(\n => 70.127.59.89\n)\n\n => Array\n(\n => 14.171.22.58\n)\n\n => Array\n(\n => 194.44.167.141\n)\n\n => Array\n(\n => 111.88.179.154\n)\n\n => Array\n(\n => 117.230.140.232\n)\n\n => Array\n(\n => 137.97.96.128\n)\n\n => Array\n(\n => 198.16.66.123\n)\n\n => Array\n(\n => 106.198.44.193\n)\n\n => Array\n(\n => 119.153.45.75\n)\n\n => Array\n(\n => 49.15.242.208\n)\n\n => Array\n(\n => 119.155.241.20\n)\n\n => Array\n(\n => 106.223.109.155\n)\n\n => Array\n(\n => 119.160.119.245\n)\n\n => Array\n(\n => 106.215.81.160\n)\n\n => Array\n(\n => 1.39.192.211\n)\n\n => Array\n(\n => 223.230.35.208\n)\n\n => Array\n(\n => 39.59.4.158\n)\n\n => Array\n(\n => 43.231.57.234\n)\n\n => Array\n(\n => 60.254.78.193\n)\n\n => Array\n(\n => 122.170.224.87\n)\n\n => Array\n(\n => 117.230.22.141\n)\n\n => Array\n(\n => 119.152.107.211\n)\n\n => Array\n(\n => 103.87.192.206\n)\n\n => Array\n(\n => 39.45.244.47\n)\n\n => Array\n(\n => 50.72.141.94\n)\n\n => Array\n(\n => 39.40.6.128\n)\n\n => Array\n(\n => 39.45.180.186\n)\n\n => Array\n(\n => 49.207.131.233\n)\n\n => Array\n(\n => 139.59.69.142\n)\n\n => Array\n(\n => 111.119.187.29\n)\n\n => Array\n(\n => 119.153.40.69\n)\n\n => Array\n(\n => 49.36.133.64\n)\n\n => Array\n(\n => 103.255.4.249\n)\n\n => Array\n(\n => 198.144.154.15\n)\n\n => Array\n(\n => 1.22.46.172\n)\n\n => Array\n(\n => 103.255.5.46\n)\n\n => Array\n(\n => 27.56.195.188\n)\n\n => Array\n(\n => 203.101.167.53\n)\n\n => Array\n(\n => 117.230.62.195\n)\n\n => Array\n(\n => 103.240.194.186\n)\n\n => Array\n(\n => 107.170.166.118\n)\n\n => Array\n(\n => 101.53.245.80\n)\n\n => Array\n(\n => 157.43.13.208\n)\n\n => Array\n(\n => 137.97.100.77\n)\n\n => Array\n(\n => 47.31.150.208\n)\n\n => Array\n(\n => 137.59.222.65\n)\n\n => Array\n(\n => 103.85.127.250\n)\n\n => Array\n(\n => 103.214.119.32\n)\n\n => Array\n(\n => 182.255.49.52\n)\n\n => Array\n(\n => 103.75.247.72\n)\n\n => Array\n(\n => 103.85.125.250\n)\n\n => Array\n(\n => 183.83.253.167\n)\n\n => Array\n(\n => 1.39.222.111\n)\n\n => Array\n(\n => 111.119.185.9\n)\n\n => Array\n(\n => 111.119.187.10\n)\n\n => Array\n(\n => 39.37.147.144\n)\n\n => Array\n(\n => 103.200.198.183\n)\n\n => Array\n(\n => 1.39.222.18\n)\n\n => Array\n(\n => 198.8.80.103\n)\n\n => Array\n(\n => 42.108.1.243\n)\n\n => Array\n(\n => 111.119.187.16\n)\n\n => Array\n(\n => 39.40.241.8\n)\n\n => Array\n(\n => 122.169.150.158\n)\n\n => Array\n(\n => 39.40.215.119\n)\n\n => Array\n(\n => 103.255.5.77\n)\n\n => Array\n(\n => 157.38.108.196\n)\n\n => Array\n(\n => 103.255.4.67\n)\n\n => Array\n(\n => 5.62.60.62\n)\n\n => Array\n(\n => 39.37.146.202\n)\n\n => Array\n(\n => 110.138.6.221\n)\n\n => Array\n(\n => 49.36.143.88\n)\n\n => Array\n(\n => 37.1.215.39\n)\n\n => Array\n(\n => 27.106.59.190\n)\n\n => Array\n(\n => 139.167.139.41\n)\n\n => Array\n(\n => 114.142.166.179\n)\n\n => Array\n(\n => 223.225.240.112\n)\n\n => Array\n(\n => 103.255.5.36\n)\n\n => Array\n(\n => 175.136.1.48\n)\n\n => Array\n(\n => 103.82.80.166\n)\n\n => Array\n(\n => 182.185.196.126\n)\n\n => Array\n(\n => 157.43.45.76\n)\n\n => Array\n(\n => 119.152.132.49\n)\n\n => Array\n(\n => 5.62.62.162\n)\n\n => Array\n(\n => 103.255.4.39\n)\n\n => Array\n(\n => 202.5.144.153\n)\n\n => Array\n(\n => 1.39.223.210\n)\n\n => Array\n(\n => 92.38.176.154\n)\n\n => Array\n(\n => 117.230.186.142\n)\n\n => Array\n(\n => 183.83.39.123\n)\n\n => Array\n(\n => 182.185.156.76\n)\n\n => Array\n(\n => 104.236.74.212\n)\n\n => Array\n(\n => 107.170.145.187\n)\n\n => Array\n(\n => 117.102.7.98\n)\n\n => Array\n(\n => 137.59.220.0\n)\n\n => Array\n(\n => 157.47.222.14\n)\n\n => Array\n(\n => 47.15.206.82\n)\n\n => Array\n(\n => 117.230.159.99\n)\n\n => Array\n(\n => 117.230.175.151\n)\n\n => Array\n(\n => 157.50.97.18\n)\n\n => Array\n(\n => 117.230.47.164\n)\n\n => Array\n(\n => 77.111.244.34\n)\n\n => Array\n(\n => 139.167.189.131\n)\n\n => Array\n(\n => 1.39.204.103\n)\n\n => Array\n(\n => 117.230.58.0\n)\n\n => Array\n(\n => 182.185.226.66\n)\n\n => Array\n(\n => 115.42.70.119\n)\n\n => Array\n(\n => 171.48.114.134\n)\n\n => Array\n(\n => 144.34.218.75\n)\n\n => Array\n(\n => 199.58.164.135\n)\n\n => Array\n(\n => 101.53.228.151\n)\n\n => Array\n(\n => 117.230.50.57\n)\n\n => Array\n(\n => 223.225.138.84\n)\n\n => Array\n(\n => 110.225.67.65\n)\n\n => Array\n(\n => 47.15.200.39\n)\n\n => Array\n(\n => 39.42.20.127\n)\n\n => Array\n(\n => 117.97.241.81\n)\n\n => Array\n(\n => 111.119.185.11\n)\n\n => Array\n(\n => 103.100.5.94\n)\n\n => Array\n(\n => 103.25.137.69\n)\n\n => Array\n(\n => 47.15.197.159\n)\n\n => Array\n(\n => 223.188.176.122\n)\n\n => Array\n(\n => 27.4.175.80\n)\n\n => Array\n(\n => 181.215.43.82\n)\n\n => Array\n(\n => 27.56.228.157\n)\n\n => Array\n(\n => 117.230.19.19\n)\n\n => Array\n(\n => 47.15.208.71\n)\n\n => Array\n(\n => 119.155.21.176\n)\n\n => Array\n(\n => 47.15.234.202\n)\n\n => Array\n(\n => 117.230.144.135\n)\n\n => Array\n(\n => 112.79.139.199\n)\n\n => Array\n(\n => 116.75.246.41\n)\n\n => Array\n(\n => 117.230.177.126\n)\n\n => Array\n(\n => 212.103.48.134\n)\n\n => Array\n(\n => 102.69.228.78\n)\n\n => Array\n(\n => 117.230.37.118\n)\n\n => Array\n(\n => 175.143.61.75\n)\n\n => Array\n(\n => 139.167.56.138\n)\n\n => Array\n(\n => 58.145.189.250\n)\n\n => Array\n(\n => 103.255.5.65\n)\n\n => Array\n(\n => 39.37.153.182\n)\n\n => Array\n(\n => 157.43.85.106\n)\n\n => Array\n(\n => 185.209.178.77\n)\n\n => Array\n(\n => 1.39.212.45\n)\n\n => Array\n(\n => 103.72.7.16\n)\n\n => Array\n(\n => 117.97.185.244\n)\n\n => Array\n(\n => 117.230.59.106\n)\n\n => Array\n(\n => 137.97.121.103\n)\n\n => Array\n(\n => 103.82.123.215\n)\n\n => Array\n(\n => 103.68.217.248\n)\n\n => Array\n(\n => 157.39.27.175\n)\n\n => Array\n(\n => 47.31.100.249\n)\n\n => Array\n(\n => 14.171.232.139\n)\n\n => Array\n(\n => 103.31.93.208\n)\n\n => Array\n(\n => 117.230.56.77\n)\n\n => Array\n(\n => 124.182.25.124\n)\n\n => Array\n(\n => 106.66.191.242\n)\n\n => Array\n(\n => 175.107.237.25\n)\n\n => Array\n(\n => 119.155.1.27\n)\n\n => Array\n(\n => 72.255.6.24\n)\n\n => Array\n(\n => 192.140.152.223\n)\n\n => Array\n(\n => 212.103.48.136\n)\n\n => Array\n(\n => 39.45.134.56\n)\n\n => Array\n(\n => 139.167.173.30\n)\n\n => Array\n(\n => 117.230.63.87\n)\n\n => Array\n(\n => 182.189.95.203\n)\n\n => Array\n(\n => 49.204.183.248\n)\n\n => Array\n(\n => 47.31.125.188\n)\n\n => Array\n(\n => 103.252.171.13\n)\n\n => Array\n(\n => 112.198.74.36\n)\n\n => Array\n(\n => 27.109.113.152\n)\n\n => Array\n(\n => 42.112.233.44\n)\n\n => Array\n(\n => 47.31.68.193\n)\n\n => Array\n(\n => 103.252.171.134\n)\n\n => Array\n(\n => 77.123.32.114\n)\n\n => Array\n(\n => 1.38.189.66\n)\n\n => Array\n(\n => 39.37.181.108\n)\n\n => Array\n(\n => 42.106.44.61\n)\n\n => Array\n(\n => 157.36.8.39\n)\n\n => Array\n(\n => 223.238.41.53\n)\n\n => Array\n(\n => 202.89.77.10\n)\n\n => Array\n(\n => 117.230.150.68\n)\n\n => Array\n(\n => 175.176.87.60\n)\n\n => Array\n(\n => 137.97.117.87\n)\n\n => Array\n(\n => 132.154.123.11\n)\n\n => Array\n(\n => 45.113.124.141\n)\n\n => Array\n(\n => 103.87.56.203\n)\n\n => Array\n(\n => 159.89.171.156\n)\n\n => Array\n(\n => 119.155.53.88\n)\n\n => Array\n(\n => 222.252.107.215\n)\n\n => Array\n(\n => 132.154.75.238\n)\n\n => Array\n(\n => 122.183.41.168\n)\n\n => Array\n(\n => 42.106.254.158\n)\n\n => Array\n(\n => 103.252.171.37\n)\n\n => Array\n(\n => 202.59.13.180\n)\n\n => Array\n(\n => 37.111.139.137\n)\n\n => Array\n(\n => 39.42.93.25\n)\n\n => Array\n(\n => 118.70.177.156\n)\n\n => Array\n(\n => 117.230.148.64\n)\n\n => Array\n(\n => 39.42.15.194\n)\n\n => Array\n(\n => 137.97.176.86\n)\n\n => Array\n(\n => 106.210.102.113\n)\n\n => Array\n(\n => 39.59.84.236\n)\n\n => Array\n(\n => 49.206.187.177\n)\n\n => Array\n(\n => 117.230.133.11\n)\n\n => Array\n(\n => 42.106.253.173\n)\n\n => Array\n(\n => 178.62.102.23\n)\n\n => Array\n(\n => 111.92.76.175\n)\n\n => Array\n(\n => 132.154.86.45\n)\n\n => Array\n(\n => 117.230.128.39\n)\n\n => Array\n(\n => 117.230.53.165\n)\n\n => Array\n(\n => 49.37.200.171\n)\n\n => Array\n(\n => 104.236.213.230\n)\n\n => Array\n(\n => 103.140.30.81\n)\n\n => Array\n(\n => 59.103.104.117\n)\n\n => Array\n(\n => 65.49.126.79\n)\n\n => Array\n(\n => 202.59.12.251\n)\n\n => Array\n(\n => 37.111.136.17\n)\n\n => Array\n(\n => 163.53.85.67\n)\n\n => Array\n(\n => 123.16.240.73\n)\n\n => Array\n(\n => 103.211.14.183\n)\n\n => Array\n(\n => 103.248.93.211\n)\n\n => Array\n(\n => 116.74.59.127\n)\n\n => Array\n(\n => 137.97.169.254\n)\n\n => Array\n(\n => 113.177.79.100\n)\n\n => Array\n(\n => 74.82.60.187\n)\n\n => Array\n(\n => 117.230.157.66\n)\n\n => Array\n(\n => 169.149.194.241\n)\n\n => Array\n(\n => 117.230.156.11\n)\n\n => Array\n(\n => 202.59.12.157\n)\n\n => Array\n(\n => 42.106.181.25\n)\n\n => Array\n(\n => 202.59.13.78\n)\n\n => Array\n(\n => 39.37.153.32\n)\n\n => Array\n(\n => 177.188.216.175\n)\n\n => Array\n(\n => 222.252.53.165\n)\n\n => Array\n(\n => 37.139.23.89\n)\n\n => Array\n(\n => 117.230.139.150\n)\n\n => Array\n(\n => 104.131.176.234\n)\n\n => Array\n(\n => 42.106.181.117\n)\n\n => Array\n(\n => 117.230.180.94\n)\n\n => Array\n(\n => 180.190.171.5\n)\n\n => Array\n(\n => 150.129.165.185\n)\n\n => Array\n(\n => 51.15.0.150\n)\n\n => Array\n(\n => 42.111.4.84\n)\n\n => Array\n(\n => 74.82.60.116\n)\n\n => Array\n(\n => 137.97.121.165\n)\n\n => Array\n(\n => 64.62.187.194\n)\n\n => Array\n(\n => 137.97.106.162\n)\n\n => Array\n(\n => 137.97.92.46\n)\n\n => Array\n(\n => 137.97.170.25\n)\n\n => Array\n(\n => 103.104.192.100\n)\n\n => Array\n(\n => 185.246.211.34\n)\n\n => Array\n(\n => 119.160.96.78\n)\n\n => Array\n(\n => 212.103.48.152\n)\n\n => Array\n(\n => 183.83.153.90\n)\n\n => Array\n(\n => 117.248.150.41\n)\n\n => Array\n(\n => 185.240.246.180\n)\n\n => Array\n(\n => 162.253.131.125\n)\n\n => Array\n(\n => 117.230.153.217\n)\n\n => Array\n(\n => 117.230.169.1\n)\n\n => Array\n(\n => 49.15.138.247\n)\n\n => Array\n(\n => 117.230.37.110\n)\n\n => Array\n(\n => 14.167.188.75\n)\n\n => Array\n(\n => 169.149.239.93\n)\n\n => Array\n(\n => 103.216.176.91\n)\n\n => Array\n(\n => 117.230.12.126\n)\n\n => Array\n(\n => 184.75.209.110\n)\n\n => Array\n(\n => 117.230.6.60\n)\n\n => Array\n(\n => 117.230.135.132\n)\n\n => Array\n(\n => 31.179.29.109\n)\n\n => Array\n(\n => 74.121.188.186\n)\n\n => Array\n(\n => 117.230.35.5\n)\n\n => Array\n(\n => 111.92.74.239\n)\n\n => Array\n(\n => 104.245.144.236\n)\n\n => Array\n(\n => 39.50.22.100\n)\n\n => Array\n(\n => 47.31.190.23\n)\n\n => Array\n(\n => 157.44.73.187\n)\n\n => Array\n(\n => 117.230.8.91\n)\n\n => Array\n(\n => 157.32.18.2\n)\n\n => Array\n(\n => 111.119.187.43\n)\n\n => Array\n(\n => 203.101.185.246\n)\n\n => Array\n(\n => 5.62.34.22\n)\n\n => Array\n(\n => 122.8.143.76\n)\n\n => Array\n(\n => 115.186.2.187\n)\n\n => Array\n(\n => 202.142.110.89\n)\n\n => Array\n(\n => 157.50.61.254\n)\n\n => Array\n(\n => 223.182.211.185\n)\n\n => Array\n(\n => 103.85.125.210\n)\n\n => Array\n(\n => 103.217.133.147\n)\n\n => Array\n(\n => 103.60.196.217\n)\n\n => Array\n(\n => 157.44.238.6\n)\n\n => Array\n(\n => 117.196.225.68\n)\n\n => Array\n(\n => 104.254.92.52\n)\n\n => Array\n(\n => 39.42.46.72\n)\n\n => Array\n(\n => 221.132.119.36\n)\n\n => Array\n(\n => 111.92.77.47\n)\n\n => Array\n(\n => 223.225.19.152\n)\n\n => Array\n(\n => 159.89.121.217\n)\n\n => Array\n(\n => 39.53.221.205\n)\n\n => Array\n(\n => 193.34.217.28\n)\n\n => Array\n(\n => 139.167.206.36\n)\n\n => Array\n(\n => 96.40.10.7\n)\n\n => Array\n(\n => 124.29.198.123\n)\n\n => Array\n(\n => 117.196.226.1\n)\n\n => Array\n(\n => 106.200.85.135\n)\n\n => Array\n(\n => 106.223.180.28\n)\n\n => Array\n(\n => 103.49.232.110\n)\n\n => Array\n(\n => 139.167.208.50\n)\n\n => Array\n(\n => 139.167.201.102\n)\n\n => Array\n(\n => 14.244.224.237\n)\n\n => Array\n(\n => 103.140.31.187\n)\n\n => Array\n(\n => 49.36.134.136\n)\n\n => Array\n(\n => 160.16.61.75\n)\n\n => Array\n(\n => 103.18.22.228\n)\n\n => Array\n(\n => 47.9.74.121\n)\n\n => Array\n(\n => 47.30.216.159\n)\n\n => Array\n(\n => 117.248.150.78\n)\n\n => Array\n(\n => 5.62.34.17\n)\n\n => Array\n(\n => 139.167.247.181\n)\n\n => Array\n(\n => 193.176.84.29\n)\n\n => Array\n(\n => 103.195.201.121\n)\n\n => Array\n(\n => 89.187.175.115\n)\n\n => Array\n(\n => 137.97.81.251\n)\n\n => Array\n(\n => 157.51.147.62\n)\n\n => Array\n(\n => 103.104.192.42\n)\n\n => Array\n(\n => 14.171.235.26\n)\n\n => Array\n(\n => 178.62.89.121\n)\n\n => Array\n(\n => 119.155.4.164\n)\n\n => Array\n(\n => 43.250.241.89\n)\n\n => Array\n(\n => 103.31.100.80\n)\n\n => Array\n(\n => 119.155.7.44\n)\n\n => Array\n(\n => 106.200.73.114\n)\n\n => Array\n(\n => 77.111.246.18\n)\n\n => Array\n(\n => 157.39.99.247\n)\n\n => Array\n(\n => 103.77.42.132\n)\n\n => Array\n(\n => 74.115.214.133\n)\n\n => Array\n(\n => 117.230.49.224\n)\n\n => Array\n(\n => 39.50.108.238\n)\n\n => Array\n(\n => 47.30.221.45\n)\n\n => Array\n(\n => 95.133.164.235\n)\n\n => Array\n(\n => 212.103.48.141\n)\n\n => Array\n(\n => 104.194.218.147\n)\n\n => Array\n(\n => 106.200.88.241\n)\n\n => Array\n(\n => 182.189.212.211\n)\n\n => Array\n(\n => 39.50.142.129\n)\n\n => Array\n(\n => 77.234.43.133\n)\n\n => Array\n(\n => 49.15.192.58\n)\n\n => Array\n(\n => 119.153.37.55\n)\n\n => Array\n(\n => 27.56.156.128\n)\n\n => Array\n(\n => 168.211.4.33\n)\n\n => Array\n(\n => 203.81.236.239\n)\n\n => Array\n(\n => 157.51.149.61\n)\n\n => Array\n(\n => 117.230.45.255\n)\n\n => Array\n(\n => 39.42.106.169\n)\n\n => Array\n(\n => 27.71.89.76\n)\n\n => Array\n(\n => 123.27.109.167\n)\n\n => Array\n(\n => 106.202.21.91\n)\n\n => Array\n(\n => 103.85.125.206\n)\n\n => Array\n(\n => 122.173.250.229\n)\n\n => Array\n(\n => 106.210.102.77\n)\n\n => Array\n(\n => 134.209.47.156\n)\n\n => Array\n(\n => 45.127.232.12\n)\n\n => Array\n(\n => 45.134.224.11\n)\n\n => Array\n(\n => 27.71.89.122\n)\n\n => Array\n(\n => 157.38.105.117\n)\n\n => Array\n(\n => 191.96.73.215\n)\n\n => Array\n(\n => 171.241.92.31\n)\n\n => Array\n(\n => 49.149.104.235\n)\n\n => Array\n(\n => 104.229.247.252\n)\n\n => Array\n(\n => 111.92.78.42\n)\n\n => Array\n(\n => 47.31.88.183\n)\n\n => Array\n(\n => 171.61.203.234\n)\n\n => Array\n(\n => 183.83.226.192\n)\n\n => Array\n(\n => 119.157.107.45\n)\n\n => Array\n(\n => 91.202.163.205\n)\n\n => Array\n(\n => 157.43.62.108\n)\n\n => Array\n(\n => 182.68.248.92\n)\n\n => Array\n(\n => 157.32.251.234\n)\n\n => Array\n(\n => 110.225.196.188\n)\n\n => Array\n(\n => 27.71.89.98\n)\n\n => Array\n(\n => 175.176.87.3\n)\n\n => Array\n(\n => 103.55.90.208\n)\n\n => Array\n(\n => 47.31.41.163\n)\n\n => Array\n(\n => 223.182.195.5\n)\n\n => Array\n(\n => 122.52.101.166\n)\n\n => Array\n(\n => 103.207.82.154\n)\n\n => Array\n(\n => 171.224.178.84\n)\n\n => Array\n(\n => 110.225.235.187\n)\n\n => Array\n(\n => 119.160.97.248\n)\n\n => Array\n(\n => 116.90.101.121\n)\n\n => Array\n(\n => 182.255.48.154\n)\n\n => Array\n(\n => 180.149.221.140\n)\n\n => Array\n(\n => 194.44.79.13\n)\n\n => Array\n(\n => 47.247.18.3\n)\n\n => Array\n(\n => 27.56.242.95\n)\n\n => Array\n(\n => 41.60.236.83\n)\n\n => Array\n(\n => 122.164.162.7\n)\n\n => Array\n(\n => 71.136.154.5\n)\n\n => Array\n(\n => 132.154.119.122\n)\n\n => Array\n(\n => 110.225.80.135\n)\n\n => Array\n(\n => 84.17.61.143\n)\n\n => Array\n(\n => 119.160.102.244\n)\n\n => Array\n(\n => 47.31.27.44\n)\n\n => Array\n(\n => 27.71.89.160\n)\n\n => Array\n(\n => 107.175.38.101\n)\n\n => Array\n(\n => 195.211.150.152\n)\n\n => Array\n(\n => 157.35.250.255\n)\n\n => Array\n(\n => 111.119.187.53\n)\n\n => Array\n(\n => 119.152.97.213\n)\n\n => Array\n(\n => 180.92.143.145\n)\n\n => Array\n(\n => 72.255.61.46\n)\n\n => Array\n(\n => 47.8.183.6\n)\n\n => Array\n(\n => 92.38.148.53\n)\n\n => Array\n(\n => 122.173.194.72\n)\n\n => Array\n(\n => 183.83.226.97\n)\n\n => Array\n(\n => 122.173.73.231\n)\n\n => Array\n(\n => 119.160.101.101\n)\n\n => Array\n(\n => 93.177.75.174\n)\n\n => Array\n(\n => 115.97.196.70\n)\n\n => Array\n(\n => 111.119.187.35\n)\n\n => Array\n(\n => 103.226.226.154\n)\n\n => Array\n(\n => 103.244.172.73\n)\n\n => Array\n(\n => 119.155.61.222\n)\n\n => Array\n(\n => 157.37.184.92\n)\n\n => Array\n(\n => 119.160.103.204\n)\n\n => Array\n(\n => 175.176.87.21\n)\n\n => Array\n(\n => 185.51.228.246\n)\n\n => Array\n(\n => 103.250.164.255\n)\n\n => Array\n(\n => 122.181.194.16\n)\n\n => Array\n(\n => 157.37.230.232\n)\n\n => Array\n(\n => 103.105.236.6\n)\n\n => Array\n(\n => 111.88.128.174\n)\n\n => Array\n(\n => 37.111.139.82\n)\n\n => Array\n(\n => 39.34.133.52\n)\n\n => Array\n(\n => 113.177.79.80\n)\n\n => Array\n(\n => 180.183.71.184\n)\n\n => Array\n(\n => 116.72.218.255\n)\n\n => Array\n(\n => 119.160.117.26\n)\n\n => Array\n(\n => 158.222.0.252\n)\n\n => Array\n(\n => 23.227.142.146\n)\n\n => Array\n(\n => 122.162.152.152\n)\n\n => Array\n(\n => 103.255.149.106\n)\n\n => Array\n(\n => 104.236.53.155\n)\n\n => Array\n(\n => 119.160.119.155\n)\n\n => Array\n(\n => 175.107.214.244\n)\n\n => Array\n(\n => 102.7.116.7\n)\n\n => Array\n(\n => 111.88.91.132\n)\n\n => Array\n(\n => 119.157.248.108\n)\n\n => Array\n(\n => 222.252.36.107\n)\n\n => Array\n(\n => 157.46.209.227\n)\n\n => Array\n(\n => 39.40.54.1\n)\n\n => Array\n(\n => 223.225.19.254\n)\n\n => Array\n(\n => 154.72.150.8\n)\n\n => Array\n(\n => 107.181.177.130\n)\n\n => Array\n(\n => 101.50.75.31\n)\n\n => Array\n(\n => 84.17.58.69\n)\n\n => Array\n(\n => 178.62.5.157\n)\n\n => Array\n(\n => 112.206.175.147\n)\n\n => Array\n(\n => 137.97.113.137\n)\n\n => Array\n(\n => 103.53.44.154\n)\n\n => Array\n(\n => 180.92.143.129\n)\n\n => Array\n(\n => 14.231.223.7\n)\n\n => Array\n(\n => 167.88.63.201\n)\n\n => Array\n(\n => 103.140.204.8\n)\n\n => Array\n(\n => 221.121.135.108\n)\n\n => Array\n(\n => 119.160.97.129\n)\n\n => Array\n(\n => 27.5.168.249\n)\n\n => Array\n(\n => 119.160.102.191\n)\n\n => Array\n(\n => 122.162.219.12\n)\n\n => Array\n(\n => 157.50.141.122\n)\n\n => Array\n(\n => 43.245.8.17\n)\n\n => Array\n(\n => 113.181.198.179\n)\n\n => Array\n(\n => 47.30.221.59\n)\n\n => Array\n(\n => 110.38.29.246\n)\n\n => Array\n(\n => 14.192.140.199\n)\n\n => Array\n(\n => 24.68.10.106\n)\n\n => Array\n(\n => 47.30.209.179\n)\n\n => Array\n(\n => 106.223.123.21\n)\n\n => Array\n(\n => 103.224.48.30\n)\n\n => Array\n(\n => 104.131.19.173\n)\n\n => Array\n(\n => 119.157.100.206\n)\n\n => Array\n(\n => 103.10.226.73\n)\n\n => Array\n(\n => 162.208.51.163\n)\n\n => Array\n(\n => 47.30.221.227\n)\n\n => Array\n(\n => 119.160.116.210\n)\n\n => Array\n(\n => 198.16.78.43\n)\n\n => Array\n(\n => 39.44.201.151\n)\n\n => Array\n(\n => 71.63.181.84\n)\n\n => Array\n(\n => 14.142.192.218\n)\n\n => Array\n(\n => 39.34.147.178\n)\n\n => Array\n(\n => 111.92.75.25\n)\n\n => Array\n(\n => 45.135.239.58\n)\n\n => Array\n(\n => 14.232.235.1\n)\n\n => Array\n(\n => 49.144.100.155\n)\n\n => Array\n(\n => 62.182.99.33\n)\n\n => Array\n(\n => 104.243.212.187\n)\n\n => Array\n(\n => 59.97.132.214\n)\n\n => Array\n(\n => 47.9.15.179\n)\n\n => Array\n(\n => 39.44.103.186\n)\n\n => Array\n(\n => 183.83.241.132\n)\n\n => Array\n(\n => 103.41.24.180\n)\n\n => Array\n(\n => 104.238.46.39\n)\n\n => Array\n(\n => 103.79.170.78\n)\n\n => Array\n(\n => 59.103.138.81\n)\n\n => Array\n(\n => 106.198.191.146\n)\n\n => Array\n(\n => 106.198.255.122\n)\n\n => Array\n(\n => 47.31.46.37\n)\n\n => Array\n(\n => 109.169.23.76\n)\n\n => Array\n(\n => 103.143.7.55\n)\n\n => Array\n(\n => 49.207.114.52\n)\n\n => Array\n(\n => 198.54.106.250\n)\n\n => Array\n(\n => 39.50.64.18\n)\n\n => Array\n(\n => 222.252.48.132\n)\n\n => Array\n(\n => 42.201.186.53\n)\n\n => Array\n(\n => 115.97.198.95\n)\n\n => Array\n(\n => 93.76.134.244\n)\n\n => Array\n(\n => 122.173.15.189\n)\n\n => Array\n(\n => 39.62.38.29\n)\n\n => Array\n(\n => 103.201.145.254\n)\n\n => Array\n(\n => 111.119.187.23\n)\n\n => Array\n(\n => 157.50.66.33\n)\n\n => Array\n(\n => 157.49.68.163\n)\n\n => Array\n(\n => 103.85.125.215\n)\n\n => Array\n(\n => 103.255.4.16\n)\n\n => Array\n(\n => 223.181.246.206\n)\n\n => Array\n(\n => 39.40.109.226\n)\n\n => Array\n(\n => 43.225.70.157\n)\n\n => Array\n(\n => 103.211.18.168\n)\n\n => Array\n(\n => 137.59.221.60\n)\n\n => Array\n(\n => 103.81.214.63\n)\n\n => Array\n(\n => 39.35.163.2\n)\n\n => Array\n(\n => 106.205.124.39\n)\n\n => Array\n(\n => 209.99.165.216\n)\n\n => Array\n(\n => 103.75.247.187\n)\n\n => Array\n(\n => 157.46.217.41\n)\n\n => Array\n(\n => 75.186.73.80\n)\n\n => Array\n(\n => 212.103.48.153\n)\n\n => Array\n(\n => 47.31.61.167\n)\n\n => Array\n(\n => 119.152.145.131\n)\n\n => Array\n(\n => 171.76.177.244\n)\n\n => Array\n(\n => 103.135.78.50\n)\n\n => Array\n(\n => 103.79.170.75\n)\n\n => Array\n(\n => 105.160.22.74\n)\n\n => Array\n(\n => 47.31.20.153\n)\n\n => Array\n(\n => 42.107.204.65\n)\n\n => Array\n(\n => 49.207.131.35\n)\n\n => Array\n(\n => 92.38.148.61\n)\n\n => Array\n(\n => 183.83.255.206\n)\n\n => Array\n(\n => 107.181.177.131\n)\n\n => Array\n(\n => 39.40.220.157\n)\n\n => Array\n(\n => 39.41.133.176\n)\n\n => Array\n(\n => 103.81.214.61\n)\n\n => Array\n(\n => 223.235.108.46\n)\n\n => Array\n(\n => 171.241.52.118\n)\n\n => Array\n(\n => 39.57.138.47\n)\n\n => Array\n(\n => 106.204.196.172\n)\n\n => Array\n(\n => 39.53.228.40\n)\n\n => Array\n(\n => 185.242.5.99\n)\n\n => Array\n(\n => 103.255.5.96\n)\n\n => Array\n(\n => 157.46.212.120\n)\n\n => Array\n(\n => 107.181.177.138\n)\n\n => Array\n(\n => 47.30.193.65\n)\n\n => Array\n(\n => 39.37.178.33\n)\n\n => Array\n(\n => 157.46.173.29\n)\n\n => Array\n(\n => 39.57.238.211\n)\n\n => Array\n(\n => 157.37.245.113\n)\n\n => Array\n(\n => 47.30.201.138\n)\n\n => Array\n(\n => 106.204.193.108\n)\n\n => Array\n(\n => 212.103.50.212\n)\n\n => Array\n(\n => 58.65.221.187\n)\n\n => Array\n(\n => 178.62.92.29\n)\n\n => Array\n(\n => 111.92.77.166\n)\n\n => Array\n(\n => 47.30.223.158\n)\n\n => Array\n(\n => 103.224.54.83\n)\n\n => Array\n(\n => 119.153.43.22\n)\n\n => Array\n(\n => 223.181.126.251\n)\n\n => Array\n(\n => 39.42.175.202\n)\n\n => Array\n(\n => 103.224.54.190\n)\n\n => Array\n(\n => 49.36.141.210\n)\n\n => Array\n(\n => 5.62.63.218\n)\n\n => Array\n(\n => 39.59.9.18\n)\n\n => Array\n(\n => 111.88.86.45\n)\n\n => Array\n(\n => 178.54.139.5\n)\n\n => Array\n(\n => 116.68.105.241\n)\n\n => Array\n(\n => 119.160.96.187\n)\n\n => Array\n(\n => 182.189.192.103\n)\n\n => Array\n(\n => 119.160.96.143\n)\n\n => Array\n(\n => 110.225.89.98\n)\n\n => Array\n(\n => 169.149.195.134\n)\n\n => Array\n(\n => 103.238.104.54\n)\n\n => Array\n(\n => 47.30.208.142\n)\n\n => Array\n(\n => 157.46.179.209\n)\n\n => Array\n(\n => 223.235.38.119\n)\n\n => Array\n(\n => 42.106.180.165\n)\n\n => Array\n(\n => 154.122.240.239\n)\n\n => Array\n(\n => 106.223.104.191\n)\n\n => Array\n(\n => 111.93.110.218\n)\n\n => Array\n(\n => 182.183.161.171\n)\n\n => Array\n(\n => 157.44.184.211\n)\n\n => Array\n(\n => 157.50.185.193\n)\n\n => Array\n(\n => 117.230.19.194\n)\n\n => Array\n(\n => 162.243.246.160\n)\n\n => Array\n(\n => 106.223.143.53\n)\n\n => Array\n(\n => 39.59.41.15\n)\n\n => Array\n(\n => 106.210.65.42\n)\n\n => Array\n(\n => 180.243.144.208\n)\n\n => Array\n(\n => 116.68.105.22\n)\n\n => Array\n(\n => 115.42.70.46\n)\n\n => Array\n(\n => 99.72.192.148\n)\n\n => Array\n(\n => 182.183.182.48\n)\n\n => Array\n(\n => 171.48.58.97\n)\n\n => Array\n(\n => 37.120.131.188\n)\n\n => Array\n(\n => 117.99.167.177\n)\n\n => Array\n(\n => 111.92.76.210\n)\n\n => Array\n(\n => 14.192.144.245\n)\n\n => Array\n(\n => 169.149.242.87\n)\n\n => Array\n(\n => 47.30.198.149\n)\n\n => Array\n(\n => 59.103.57.140\n)\n\n => Array\n(\n => 117.230.161.168\n)\n\n => Array\n(\n => 110.225.88.173\n)\n\n => Array\n(\n => 169.149.246.95\n)\n\n => Array\n(\n => 42.106.180.52\n)\n\n => Array\n(\n => 14.231.160.157\n)\n\n => Array\n(\n => 123.27.109.47\n)\n\n => Array\n(\n => 157.46.130.54\n)\n\n => Array\n(\n => 39.42.73.194\n)\n\n => Array\n(\n => 117.230.18.147\n)\n\n => Array\n(\n => 27.59.231.98\n)\n\n => Array\n(\n => 125.209.78.227\n)\n\n => Array\n(\n => 157.34.80.145\n)\n\n => Array\n(\n => 42.201.251.86\n)\n\n => Array\n(\n => 117.230.129.158\n)\n\n => Array\n(\n => 103.82.80.103\n)\n\n => Array\n(\n => 47.9.171.228\n)\n\n => Array\n(\n => 117.230.24.92\n)\n\n => Array\n(\n => 103.129.143.119\n)\n\n => Array\n(\n => 39.40.213.45\n)\n\n => Array\n(\n => 178.92.188.214\n)\n\n => Array\n(\n => 110.235.232.191\n)\n\n => Array\n(\n => 5.62.34.18\n)\n\n => Array\n(\n => 47.30.212.134\n)\n\n => Array\n(\n => 157.42.34.196\n)\n\n => Array\n(\n => 157.32.169.9\n)\n\n => Array\n(\n => 103.255.4.11\n)\n\n => Array\n(\n => 117.230.13.69\n)\n\n => Array\n(\n => 117.230.58.97\n)\n\n => Array\n(\n => 92.52.138.39\n)\n\n => Array\n(\n => 221.132.119.63\n)\n\n => Array\n(\n => 117.97.167.188\n)\n\n => Array\n(\n => 119.153.56.58\n)\n\n => Array\n(\n => 105.50.22.150\n)\n\n => Array\n(\n => 115.42.68.126\n)\n\n => Array\n(\n => 182.189.223.159\n)\n\n => Array\n(\n => 39.59.36.90\n)\n\n => Array\n(\n => 111.92.76.114\n)\n\n => Array\n(\n => 157.47.226.163\n)\n\n => Array\n(\n => 202.47.44.37\n)\n\n => Array\n(\n => 106.51.234.172\n)\n\n => Array\n(\n => 103.101.88.166\n)\n\n => Array\n(\n => 27.6.246.146\n)\n\n => Array\n(\n => 103.255.5.83\n)\n\n => Array\n(\n => 103.98.210.185\n)\n\n => Array\n(\n => 122.173.114.134\n)\n\n => Array\n(\n => 122.173.77.248\n)\n\n => Array\n(\n => 5.62.41.172\n)\n\n => Array\n(\n => 180.178.181.17\n)\n\n => Array\n(\n => 37.120.133.224\n)\n\n => Array\n(\n => 45.131.5.156\n)\n\n => Array\n(\n => 110.39.100.110\n)\n\n => Array\n(\n => 176.110.38.185\n)\n\n => Array\n(\n => 36.255.41.64\n)\n\n => Array\n(\n => 103.104.192.15\n)\n\n => Array\n(\n => 43.245.131.195\n)\n\n => Array\n(\n => 14.248.111.185\n)\n\n => Array\n(\n => 122.173.217.133\n)\n\n => Array\n(\n => 106.223.90.245\n)\n\n => Array\n(\n => 119.153.56.80\n)\n\n => Array\n(\n => 103.7.60.172\n)\n\n => Array\n(\n => 157.46.184.233\n)\n\n => Array\n(\n => 182.190.31.95\n)\n\n => Array\n(\n => 109.87.189.122\n)\n\n => Array\n(\n => 91.74.25.100\n)\n\n => Array\n(\n => 182.185.224.144\n)\n\n => Array\n(\n => 106.223.91.221\n)\n\n => Array\n(\n => 182.190.223.40\n)\n\n => Array\n(\n => 2.58.194.134\n)\n\n => Array\n(\n => 196.246.225.236\n)\n\n => Array\n(\n => 106.223.90.173\n)\n\n => Array\n(\n => 23.239.16.54\n)\n\n => Array\n(\n => 157.46.65.225\n)\n\n => Array\n(\n => 115.186.130.14\n)\n\n => Array\n(\n => 103.85.125.157\n)\n\n => Array\n(\n => 14.248.103.6\n)\n\n => Array\n(\n => 123.24.169.247\n)\n\n => Array\n(\n => 103.130.108.153\n)\n\n => Array\n(\n => 115.42.67.21\n)\n\n => Array\n(\n => 202.166.171.190\n)\n\n => Array\n(\n => 39.37.169.104\n)\n\n => Array\n(\n => 103.82.80.59\n)\n\n => Array\n(\n => 175.107.208.58\n)\n\n => Array\n(\n => 203.192.238.247\n)\n\n => Array\n(\n => 103.217.178.150\n)\n\n => Array\n(\n => 103.66.214.173\n)\n\n => Array\n(\n => 110.93.236.174\n)\n\n => Array\n(\n => 143.189.242.64\n)\n\n => Array\n(\n => 77.111.245.12\n)\n\n => Array\n(\n => 145.239.2.231\n)\n\n => Array\n(\n => 115.186.190.38\n)\n\n => Array\n(\n => 109.169.23.67\n)\n\n => Array\n(\n => 198.16.70.29\n)\n\n => Array\n(\n => 111.92.76.186\n)\n\n => Array\n(\n => 115.42.69.34\n)\n\n => Array\n(\n => 73.61.100.95\n)\n\n => Array\n(\n => 103.129.142.31\n)\n\n => Array\n(\n => 103.255.5.53\n)\n\n => Array\n(\n => 103.76.55.2\n)\n\n => Array\n(\n => 47.9.141.138\n)\n\n => Array\n(\n => 103.55.89.234\n)\n\n => Array\n(\n => 103.223.13.53\n)\n\n => Array\n(\n => 175.158.50.203\n)\n\n => Array\n(\n => 103.255.5.90\n)\n\n => Array\n(\n => 106.223.100.138\n)\n\n => Array\n(\n => 39.37.143.193\n)\n\n => Array\n(\n => 206.189.133.131\n)\n\n => Array\n(\n => 43.224.0.233\n)\n\n => Array\n(\n => 115.186.132.106\n)\n\n => Array\n(\n => 31.43.21.159\n)\n\n => Array\n(\n => 119.155.56.131\n)\n\n => Array\n(\n => 103.82.80.138\n)\n\n => Array\n(\n => 24.87.128.119\n)\n\n => Array\n(\n => 106.210.103.163\n)\n\n => Array\n(\n => 103.82.80.90\n)\n\n => Array\n(\n => 157.46.186.45\n)\n\n => Array\n(\n => 157.44.155.238\n)\n\n => Array\n(\n => 103.119.199.2\n)\n\n => Array\n(\n => 27.97.169.205\n)\n\n => Array\n(\n => 157.46.174.89\n)\n\n => Array\n(\n => 43.250.58.220\n)\n\n => Array\n(\n => 76.189.186.64\n)\n\n => Array\n(\n => 103.255.5.57\n)\n\n => Array\n(\n => 171.61.196.136\n)\n\n => Array\n(\n => 202.47.40.88\n)\n\n => Array\n(\n => 97.118.94.116\n)\n\n => Array\n(\n => 157.44.124.157\n)\n\n => Array\n(\n => 95.142.120.13\n)\n\n => Array\n(\n => 42.201.229.151\n)\n\n => Array\n(\n => 157.46.178.95\n)\n\n => Array\n(\n => 169.149.215.192\n)\n\n => Array\n(\n => 42.111.19.48\n)\n\n => Array\n(\n => 1.38.52.18\n)\n\n => Array\n(\n => 145.239.91.241\n)\n\n => Array\n(\n => 47.31.78.191\n)\n\n => Array\n(\n => 103.77.42.60\n)\n\n => Array\n(\n => 157.46.107.144\n)\n\n => Array\n(\n => 157.46.125.124\n)\n\n => Array\n(\n => 110.225.218.108\n)\n\n => Array\n(\n => 106.51.77.185\n)\n\n => Array\n(\n => 123.24.161.207\n)\n\n => Array\n(\n => 106.210.108.22\n)\n\n => Array\n(\n => 42.111.10.14\n)\n\n => Array\n(\n => 223.29.231.175\n)\n\n => Array\n(\n => 27.56.152.132\n)\n\n => Array\n(\n => 119.155.31.100\n)\n\n => Array\n(\n => 122.173.172.127\n)\n\n => Array\n(\n => 103.77.42.64\n)\n\n => Array\n(\n => 157.44.164.106\n)\n\n => Array\n(\n => 14.181.53.38\n)\n\n => Array\n(\n => 115.42.67.64\n)\n\n => Array\n(\n => 47.31.33.140\n)\n\n => Array\n(\n => 103.15.60.234\n)\n\n => Array\n(\n => 182.64.219.181\n)\n\n => Array\n(\n => 103.44.51.6\n)\n\n => Array\n(\n => 116.74.25.157\n)\n\n => Array\n(\n => 116.71.2.128\n)\n\n => Array\n(\n => 157.32.185.239\n)\n\n => Array\n(\n => 47.31.25.79\n)\n\n => Array\n(\n => 178.62.85.75\n)\n\n => Array\n(\n => 180.178.190.39\n)\n\n => Array\n(\n => 39.48.52.179\n)\n\n => Array\n(\n => 106.193.11.240\n)\n\n => Array\n(\n => 103.82.80.226\n)\n\n => Array\n(\n => 49.206.126.30\n)\n\n => Array\n(\n => 157.245.191.173\n)\n\n => Array\n(\n => 49.205.84.237\n)\n\n => Array\n(\n => 47.8.181.232\n)\n\n => Array\n(\n => 182.66.2.92\n)\n\n => Array\n(\n => 49.34.137.220\n)\n\n => Array\n(\n => 209.205.217.125\n)\n\n => Array\n(\n => 192.64.5.73\n)\n\n => Array\n(\n => 27.63.166.108\n)\n\n => Array\n(\n => 120.29.96.211\n)\n\n => Array\n(\n => 182.186.112.135\n)\n\n => Array\n(\n => 45.118.165.151\n)\n\n => Array\n(\n => 47.8.228.12\n)\n\n => Array\n(\n => 106.215.3.162\n)\n\n => Array\n(\n => 111.92.72.66\n)\n\n => Array\n(\n => 169.145.2.9\n)\n\n => Array\n(\n => 106.207.205.100\n)\n\n => Array\n(\n => 223.181.8.12\n)\n\n => Array\n(\n => 157.48.149.78\n)\n\n => Array\n(\n => 103.206.138.116\n)\n\n => Array\n(\n => 39.53.119.22\n)\n\n => Array\n(\n => 157.33.232.106\n)\n\n => Array\n(\n => 49.37.205.139\n)\n\n => Array\n(\n => 115.42.68.3\n)\n\n => Array\n(\n => 93.72.182.251\n)\n\n => Array\n(\n => 202.142.166.22\n)\n\n => Array\n(\n => 157.119.81.111\n)\n\n => Array\n(\n => 182.186.116.155\n)\n\n => Array\n(\n => 157.37.171.37\n)\n\n => Array\n(\n => 117.206.164.48\n)\n\n => Array\n(\n => 49.36.52.63\n)\n\n => Array\n(\n => 203.175.72.112\n)\n\n => Array\n(\n => 171.61.132.193\n)\n\n => Array\n(\n => 111.119.187.44\n)\n\n => Array\n(\n => 39.37.165.216\n)\n\n => Array\n(\n => 103.86.109.58\n)\n\n => Array\n(\n => 39.59.2.86\n)\n\n => Array\n(\n => 111.119.187.28\n)\n\n => Array\n(\n => 106.201.9.10\n)\n\n => Array\n(\n => 49.35.25.106\n)\n\n => Array\n(\n => 157.49.239.103\n)\n\n => Array\n(\n => 157.49.237.198\n)\n\n => Array\n(\n => 14.248.64.121\n)\n\n => Array\n(\n => 117.102.7.214\n)\n\n => Array\n(\n => 120.29.91.246\n)\n\n => Array\n(\n => 103.7.79.41\n)\n\n => Array\n(\n => 132.154.99.209\n)\n\n => Array\n(\n => 212.36.27.245\n)\n\n => Array\n(\n => 157.44.154.9\n)\n\n => Array\n(\n => 47.31.56.44\n)\n\n => Array\n(\n => 192.142.199.136\n)\n\n => Array\n(\n => 171.61.159.49\n)\n\n => Array\n(\n => 119.160.116.151\n)\n\n => Array\n(\n => 103.98.63.39\n)\n\n => Array\n(\n => 41.60.233.216\n)\n\n => Array\n(\n => 49.36.75.212\n)\n\n => Array\n(\n => 223.188.60.20\n)\n\n => Array\n(\n => 103.98.63.50\n)\n\n => Array\n(\n => 178.162.198.21\n)\n\n => Array\n(\n => 157.46.209.35\n)\n\n => Array\n(\n => 119.155.32.151\n)\n\n => Array\n(\n => 102.185.58.161\n)\n\n => Array\n(\n => 59.96.89.231\n)\n\n => Array\n(\n => 119.155.255.198\n)\n\n => Array\n(\n => 42.107.204.57\n)\n\n => Array\n(\n => 42.106.181.74\n)\n\n => Array\n(\n => 157.46.219.186\n)\n\n => Array\n(\n => 115.42.71.49\n)\n\n => Array\n(\n => 157.46.209.131\n)\n\n => Array\n(\n => 220.81.15.94\n)\n\n => Array\n(\n => 111.119.187.24\n)\n\n => Array\n(\n => 49.37.195.185\n)\n\n => Array\n(\n => 42.106.181.85\n)\n\n => Array\n(\n => 43.249.225.134\n)\n\n => Array\n(\n => 117.206.165.151\n)\n\n => Array\n(\n => 119.153.48.250\n)\n\n => Array\n(\n => 27.4.172.162\n)\n\n => Array\n(\n => 117.20.29.51\n)\n\n => Array\n(\n => 103.98.63.135\n)\n\n => Array\n(\n => 117.7.218.229\n)\n\n => Array\n(\n => 157.49.233.105\n)\n\n => Array\n(\n => 39.53.151.199\n)\n\n => Array\n(\n => 101.255.118.33\n)\n\n => Array\n(\n => 41.141.246.9\n)\n\n => Array\n(\n => 221.132.113.78\n)\n\n => Array\n(\n => 119.160.116.202\n)\n\n => Array\n(\n => 117.237.193.244\n)\n\n => Array\n(\n => 157.41.110.145\n)\n\n => Array\n(\n => 103.98.63.5\n)\n\n => Array\n(\n => 103.125.129.58\n)\n\n => Array\n(\n => 183.83.254.66\n)\n\n => Array\n(\n => 45.135.236.160\n)\n\n => Array\n(\n => 198.199.87.124\n)\n\n => Array\n(\n => 193.176.86.41\n)\n\n => Array\n(\n => 115.97.142.98\n)\n\n => Array\n(\n => 222.252.38.198\n)\n\n => Array\n(\n => 110.93.237.49\n)\n\n => Array\n(\n => 103.224.48.122\n)\n\n => Array\n(\n => 110.38.28.130\n)\n\n => Array\n(\n => 106.211.238.154\n)\n\n => Array\n(\n => 111.88.41.73\n)\n\n => Array\n(\n => 119.155.13.143\n)\n\n => Array\n(\n => 103.213.111.60\n)\n\n => Array\n(\n => 202.0.103.42\n)\n\n => Array\n(\n => 157.48.144.33\n)\n\n => Array\n(\n => 111.119.187.62\n)\n\n => Array\n(\n => 103.87.212.71\n)\n\n => Array\n(\n => 157.37.177.20\n)\n\n => Array\n(\n => 223.233.71.92\n)\n\n => Array\n(\n => 116.213.32.107\n)\n\n => Array\n(\n => 104.248.173.151\n)\n\n => Array\n(\n => 14.181.102.222\n)\n\n => Array\n(\n => 103.10.224.252\n)\n\n => Array\n(\n => 175.158.50.57\n)\n\n => Array\n(\n => 165.22.122.199\n)\n\n => Array\n(\n => 23.106.56.12\n)\n\n => Array\n(\n => 203.122.10.146\n)\n\n => Array\n(\n => 37.111.136.138\n)\n\n => Array\n(\n => 103.87.193.66\n)\n\n => Array\n(\n => 39.59.122.246\n)\n\n => Array\n(\n => 111.119.183.63\n)\n\n => Array\n(\n => 157.46.72.102\n)\n\n => Array\n(\n => 185.132.133.82\n)\n\n => Array\n(\n => 118.103.230.148\n)\n\n => Array\n(\n => 5.62.39.45\n)\n\n => Array\n(\n => 119.152.144.134\n)\n\n => Array\n(\n => 172.105.117.102\n)\n\n => Array\n(\n => 122.254.70.212\n)\n\n => Array\n(\n => 102.185.128.97\n)\n\n => Array\n(\n => 182.69.249.11\n)\n\n => Array\n(\n => 105.163.134.167\n)\n\n => Array\n(\n => 111.119.187.38\n)\n\n => Array\n(\n => 103.46.195.93\n)\n\n => Array\n(\n => 106.204.161.156\n)\n\n => Array\n(\n => 122.176.2.175\n)\n\n => Array\n(\n => 117.99.162.31\n)\n\n => Array\n(\n => 106.212.241.242\n)\n\n => Array\n(\n => 42.107.196.149\n)\n\n => Array\n(\n => 212.90.60.57\n)\n\n => Array\n(\n => 175.107.237.12\n)\n\n => Array\n(\n => 157.46.119.152\n)\n\n => Array\n(\n => 157.34.81.12\n)\n\n => Array\n(\n => 162.243.1.22\n)\n\n => Array\n(\n => 110.37.222.178\n)\n\n => Array\n(\n => 103.46.195.68\n)\n\n => Array\n(\n => 119.160.116.81\n)\n\n => Array\n(\n => 138.197.131.28\n)\n\n => Array\n(\n => 103.88.218.124\n)\n\n => Array\n(\n => 192.241.172.113\n)\n\n => Array\n(\n => 110.39.174.106\n)\n\n => Array\n(\n => 111.88.48.17\n)\n\n => Array\n(\n => 42.108.160.218\n)\n\n => Array\n(\n => 117.102.0.16\n)\n\n => Array\n(\n => 157.46.125.235\n)\n\n => Array\n(\n => 14.190.242.251\n)\n\n => Array\n(\n => 47.31.184.64\n)\n\n => Array\n(\n => 49.205.84.157\n)\n\n => Array\n(\n => 122.162.115.247\n)\n\n => Array\n(\n => 41.202.219.74\n)\n\n => Array\n(\n => 106.215.9.67\n)\n\n => Array\n(\n => 103.87.56.208\n)\n\n => Array\n(\n => 103.46.194.147\n)\n\n => Array\n(\n => 116.90.98.81\n)\n\n => Array\n(\n => 115.42.71.213\n)\n\n => Array\n(\n => 39.49.35.192\n)\n\n => Array\n(\n => 41.202.219.65\n)\n\n => Array\n(\n => 131.212.249.93\n)\n\n => Array\n(\n => 49.205.16.251\n)\n\n => Array\n(\n => 39.34.147.250\n)\n\n => Array\n(\n => 183.83.210.185\n)\n\n => Array\n(\n => 49.37.194.215\n)\n\n => Array\n(\n => 103.46.194.108\n)\n\n => Array\n(\n => 89.36.219.233\n)\n\n => Array\n(\n => 119.152.105.178\n)\n\n => Array\n(\n => 202.47.45.125\n)\n\n => Array\n(\n => 156.146.59.27\n)\n\n => Array\n(\n => 132.154.21.156\n)\n\n => Array\n(\n => 157.44.35.31\n)\n\n => Array\n(\n => 41.80.118.124\n)\n\n => Array\n(\n => 47.31.159.198\n)\n\n => Array\n(\n => 103.209.223.140\n)\n\n => Array\n(\n => 157.46.130.138\n)\n\n => Array\n(\n => 49.37.199.246\n)\n\n => Array\n(\n => 111.88.242.10\n)\n\n => Array\n(\n => 43.241.145.110\n)\n\n => Array\n(\n => 124.153.16.30\n)\n\n => Array\n(\n => 27.5.22.173\n)\n\n => Array\n(\n => 111.88.191.173\n)\n\n => Array\n(\n => 41.60.236.200\n)\n\n => Array\n(\n => 115.42.67.146\n)\n\n => Array\n(\n => 150.242.173.7\n)\n\n => Array\n(\n => 14.248.71.23\n)\n\n => Array\n(\n => 111.119.187.4\n)\n\n => Array\n(\n => 124.29.212.118\n)\n\n => Array\n(\n => 51.68.205.163\n)\n\n => Array\n(\n => 182.184.107.63\n)\n\n => Array\n(\n => 106.211.253.87\n)\n\n => Array\n(\n => 223.190.89.5\n)\n\n => Array\n(\n => 183.83.212.63\n)\n\n => Array\n(\n => 129.205.113.227\n)\n\n => Array\n(\n => 106.210.40.141\n)\n\n => Array\n(\n => 91.202.163.169\n)\n\n => Array\n(\n => 76.105.191.89\n)\n\n => Array\n(\n => 171.51.244.160\n)\n\n => Array\n(\n => 37.139.188.92\n)\n\n => Array\n(\n => 23.106.56.37\n)\n\n => Array\n(\n => 157.44.175.180\n)\n\n => Array\n(\n => 122.2.122.97\n)\n\n => Array\n(\n => 103.87.192.194\n)\n\n => Array\n(\n => 192.154.253.6\n)\n\n => Array\n(\n => 77.243.191.19\n)\n\n => Array\n(\n => 122.254.70.46\n)\n\n => Array\n(\n => 154.76.233.73\n)\n\n => Array\n(\n => 195.181.167.150\n)\n\n => Array\n(\n => 209.209.228.5\n)\n\n => Array\n(\n => 203.192.212.115\n)\n\n => Array\n(\n => 221.132.118.179\n)\n\n => Array\n(\n => 117.208.210.204\n)\n\n => Array\n(\n => 120.29.90.126\n)\n\n => Array\n(\n => 36.77.239.190\n)\n\n => Array\n(\n => 157.37.137.127\n)\n\n => Array\n(\n => 39.40.243.6\n)\n\n => Array\n(\n => 182.182.41.201\n)\n\n => Array\n(\n => 39.59.32.46\n)\n\n => Array\n(\n => 111.119.183.36\n)\n\n => Array\n(\n => 103.83.147.61\n)\n\n => Array\n(\n => 103.82.80.85\n)\n\n => Array\n(\n => 103.46.194.161\n)\n\n => Array\n(\n => 101.50.105.38\n)\n\n => Array\n(\n => 111.119.183.58\n)\n\n => Array\n(\n => 47.9.234.51\n)\n\n => Array\n(\n => 120.29.86.157\n)\n\n => Array\n(\n => 175.158.50.70\n)\n\n => Array\n(\n => 112.196.163.235\n)\n\n => Array\n(\n => 139.167.161.85\n)\n\n => Array\n(\n => 106.207.39.181\n)\n\n => Array\n(\n => 103.77.42.159\n)\n\n => Array\n(\n => 185.56.138.220\n)\n\n => Array\n(\n => 119.155.33.205\n)\n\n => Array\n(\n => 157.42.117.124\n)\n\n => Array\n(\n => 103.117.202.202\n)\n\n => Array\n(\n => 220.253.101.109\n)\n\n => Array\n(\n => 49.37.7.247\n)\n\n => Array\n(\n => 119.160.65.27\n)\n\n => Array\n(\n => 114.122.21.151\n)\n\n => Array\n(\n => 157.44.141.83\n)\n\n => Array\n(\n => 103.131.9.7\n)\n\n => Array\n(\n => 125.99.222.21\n)\n\n => Array\n(\n => 103.238.104.206\n)\n\n => Array\n(\n => 110.93.227.100\n)\n\n => Array\n(\n => 49.14.119.114\n)\n\n => Array\n(\n => 115.186.189.82\n)\n\n => Array\n(\n => 106.201.194.2\n)\n\n => Array\n(\n => 106.204.227.28\n)\n\n => Array\n(\n => 47.31.206.13\n)\n\n => Array\n(\n => 39.42.144.109\n)\n\n => Array\n(\n => 14.253.254.90\n)\n\n => Array\n(\n => 157.44.142.118\n)\n\n => Array\n(\n => 192.142.176.21\n)\n\n => Array\n(\n => 103.217.178.225\n)\n\n => Array\n(\n => 106.78.78.16\n)\n\n => Array\n(\n => 167.71.63.184\n)\n\n => Array\n(\n => 207.244.71.82\n)\n\n => Array\n(\n => 71.105.25.145\n)\n\n => Array\n(\n => 39.51.250.30\n)\n\n => Array\n(\n => 157.41.120.160\n)\n\n => Array\n(\n => 39.37.137.81\n)\n\n => Array\n(\n => 41.80.237.27\n)\n\n => Array\n(\n => 111.119.187.50\n)\n\n => Array\n(\n => 49.145.224.252\n)\n\n => Array\n(\n => 106.197.28.106\n)\n\n => Array\n(\n => 103.217.178.240\n)\n\n => Array\n(\n => 27.97.182.237\n)\n\n => Array\n(\n => 106.211.253.72\n)\n\n => Array\n(\n => 119.152.154.172\n)\n\n => Array\n(\n => 103.255.151.148\n)\n\n => Array\n(\n => 154.157.80.12\n)\n\n => Array\n(\n => 156.146.59.28\n)\n\n => Array\n(\n => 171.61.211.64\n)\n\n => Array\n(\n => 27.76.59.22\n)\n\n => Array\n(\n => 167.99.92.124\n)\n\n => Array\n(\n => 132.154.94.51\n)\n\n => Array\n(\n => 111.119.183.38\n)\n\n => Array\n(\n => 115.42.70.169\n)\n\n => Array\n(\n => 109.169.23.83\n)\n\n => Array\n(\n => 157.46.213.64\n)\n\n => Array\n(\n => 39.37.179.171\n)\n\n => Array\n(\n => 14.232.233.32\n)\n\n => Array\n(\n => 157.49.226.13\n)\n\n => Array\n(\n => 185.209.178.78\n)\n\n => Array\n(\n => 222.252.46.230\n)\n\n => Array\n(\n => 139.5.255.168\n)\n\n => Array\n(\n => 202.8.118.12\n)\n\n => Array\n(\n => 39.53.205.63\n)\n\n => Array\n(\n => 157.37.167.227\n)\n\n => Array\n(\n => 157.49.237.121\n)\n\n => Array\n(\n => 208.89.99.6\n)\n\n => Array\n(\n => 111.119.187.33\n)\n\n => Array\n(\n => 39.37.132.101\n)\n\n => Array\n(\n => 72.255.61.15\n)\n\n => Array\n(\n => 157.41.69.126\n)\n\n => Array\n(\n => 27.6.193.15\n)\n\n => Array\n(\n => 157.41.104.8\n)\n\n => Array\n(\n => 157.41.97.162\n)\n\n => Array\n(\n => 95.136.91.67\n)\n\n => Array\n(\n => 110.93.209.138\n)\n\n => Array\n(\n => 119.152.154.82\n)\n\n => Array\n(\n => 111.88.239.223\n)\n\n => Array\n(\n => 157.230.62.100\n)\n\n => Array\n(\n => 37.111.136.167\n)\n\n => Array\n(\n => 139.167.162.65\n)\n\n => Array\n(\n => 120.29.72.72\n)\n\n => Array\n(\n => 39.42.169.69\n)\n\n => Array\n(\n => 157.49.247.12\n)\n\n => Array\n(\n => 43.231.58.221\n)\n\n => Array\n(\n => 111.88.229.18\n)\n\n => Array\n(\n => 171.79.185.198\n)\n\n => Array\n(\n => 169.149.193.102\n)\n\n => Array\n(\n => 207.244.89.162\n)\n\n => Array\n(\n => 27.4.217.129\n)\n\n => Array\n(\n => 91.236.184.12\n)\n\n => Array\n(\n => 14.192.154.150\n)\n\n => Array\n(\n => 167.172.55.253\n)\n\n => Array\n(\n => 103.77.42.192\n)\n\n => Array\n(\n => 39.59.122.140\n)\n\n => Array\n(\n => 41.80.84.46\n)\n\n => Array\n(\n => 202.47.52.115\n)\n\n => Array\n(\n => 222.252.43.47\n)\n\n => Array\n(\n => 119.155.37.250\n)\n\n => Array\n(\n => 157.41.18.88\n)\n\n => Array\n(\n => 39.42.8.59\n)\n\n => Array\n(\n => 39.45.162.110\n)\n\n => Array\n(\n => 111.88.237.25\n)\n\n => Array\n(\n => 103.76.211.168\n)\n\n => Array\n(\n => 178.137.114.165\n)\n\n => Array\n(\n => 43.225.74.146\n)\n\n => Array\n(\n => 157.42.25.26\n)\n\n => Array\n(\n => 137.59.146.63\n)\n\n => Array\n(\n => 119.160.117.190\n)\n\n => Array\n(\n => 1.186.181.133\n)\n\n => Array\n(\n => 39.42.145.94\n)\n\n => Array\n(\n => 203.175.73.96\n)\n\n => Array\n(\n => 39.37.160.14\n)\n\n => Array\n(\n => 157.39.123.250\n)\n\n => Array\n(\n => 95.135.57.82\n)\n\n => Array\n(\n => 162.210.194.35\n)\n\n => Array\n(\n => 39.42.153.135\n)\n\n => Array\n(\n => 118.103.230.106\n)\n\n => Array\n(\n => 108.61.39.115\n)\n\n => Array\n(\n => 102.7.108.45\n)\n\n => Array\n(\n => 183.83.138.134\n)\n\n => Array\n(\n => 115.186.70.223\n)\n\n => Array\n(\n => 157.34.17.139\n)\n\n => Array\n(\n => 122.166.158.231\n)\n\n => Array\n(\n => 43.227.135.90\n)\n\n => Array\n(\n => 182.68.46.180\n)\n\n => Array\n(\n => 223.225.28.138\n)\n\n => Array\n(\n => 103.77.42.220\n)\n\n => Array\n(\n => 192.241.219.13\n)\n\n => Array\n(\n => 103.82.80.113\n)\n\n => Array\n(\n => 42.111.243.151\n)\n\n => Array\n(\n => 171.79.189.247\n)\n\n => Array\n(\n => 157.32.132.102\n)\n\n => Array\n(\n => 103.130.105.243\n)\n\n => Array\n(\n => 117.223.98.120\n)\n\n => Array\n(\n => 106.215.197.187\n)\n\n => Array\n(\n => 182.190.194.179\n)\n\n => Array\n(\n => 223.225.29.42\n)\n\n => Array\n(\n => 117.222.94.151\n)\n\n => Array\n(\n => 182.185.199.104\n)\n\n => Array\n(\n => 49.36.145.77\n)\n\n => Array\n(\n => 103.82.80.73\n)\n\n => Array\n(\n => 103.77.16.13\n)\n\n => Array\n(\n => 221.132.118.86\n)\n\n => Array\n(\n => 202.47.45.77\n)\n\n => Array\n(\n => 202.8.118.116\n)\n\n => Array\n(\n => 42.106.180.185\n)\n\n => Array\n(\n => 203.122.8.234\n)\n\n => Array\n(\n => 88.230.104.245\n)\n\n => Array\n(\n => 103.131.9.33\n)\n\n => Array\n(\n => 117.207.209.60\n)\n\n => Array\n(\n => 42.111.253.227\n)\n\n => Array\n(\n => 23.106.56.54\n)\n\n => Array\n(\n => 122.178.143.181\n)\n\n => Array\n(\n => 111.88.180.5\n)\n\n => Array\n(\n => 174.55.224.161\n)\n\n => Array\n(\n => 49.205.87.100\n)\n\n => Array\n(\n => 49.34.183.118\n)\n\n => Array\n(\n => 124.155.255.154\n)\n\n => Array\n(\n => 106.212.135.200\n)\n\n => Array\n(\n => 139.99.159.11\n)\n\n => Array\n(\n => 45.135.229.8\n)\n\n => Array\n(\n => 88.230.106.85\n)\n\n => Array\n(\n => 91.153.145.221\n)\n\n => Array\n(\n => 103.95.83.33\n)\n\n => Array\n(\n => 122.178.116.76\n)\n\n => Array\n(\n => 103.135.78.14\n)\n\n => Array\n(\n => 111.88.233.206\n)\n\n => Array\n(\n => 192.140.153.210\n)\n\n => Array\n(\n => 202.8.118.69\n)\n\n => Array\n(\n => 103.83.130.81\n)\n\n => Array\n(\n => 182.190.213.143\n)\n\n => Array\n(\n => 198.16.74.204\n)\n\n => Array\n(\n => 101.128.117.248\n)\n\n => Array\n(\n => 103.108.5.147\n)\n\n => Array\n(\n => 157.32.130.158\n)\n\n => Array\n(\n => 103.244.172.93\n)\n\n => Array\n(\n => 47.30.140.126\n)\n\n => Array\n(\n => 223.188.40.124\n)\n\n => Array\n(\n => 157.44.191.102\n)\n\n => Array\n(\n => 41.60.237.62\n)\n\n => Array\n(\n => 47.31.228.161\n)\n\n => Array\n(\n => 137.59.217.188\n)\n\n => Array\n(\n => 39.53.220.237\n)\n\n => Array\n(\n => 45.127.45.199\n)\n\n => Array\n(\n => 14.190.71.19\n)\n\n => Array\n(\n => 47.18.205.54\n)\n\n => Array\n(\n => 110.93.240.11\n)\n\n => Array\n(\n => 134.209.29.111\n)\n\n => Array\n(\n => 49.36.175.104\n)\n\n => Array\n(\n => 203.192.230.61\n)\n\n => Array\n(\n => 176.10.125.115\n)\n\n => Array\n(\n => 182.18.206.17\n)\n\n => Array\n(\n => 103.87.194.102\n)\n\n => Array\n(\n => 171.79.123.106\n)\n\n => Array\n(\n => 45.116.233.35\n)\n\n => Array\n(\n => 223.190.57.225\n)\n\n => Array\n(\n => 114.125.6.158\n)\n\n => Array\n(\n => 223.179.138.176\n)\n\n => Array\n(\n => 111.119.183.61\n)\n\n => Array\n(\n => 202.8.118.43\n)\n\n => Array\n(\n => 157.51.175.216\n)\n\n => Array\n(\n => 41.60.238.100\n)\n\n => Array\n(\n => 117.207.210.199\n)\n\n => Array\n(\n => 111.119.183.26\n)\n\n => Array\n(\n => 103.252.226.12\n)\n\n => Array\n(\n => 103.221.208.82\n)\n\n => Array\n(\n => 103.82.80.228\n)\n\n => Array\n(\n => 111.119.187.39\n)\n\n => Array\n(\n => 157.51.161.199\n)\n\n => Array\n(\n => 59.96.88.246\n)\n\n => Array\n(\n => 27.4.181.183\n)\n\n => Array\n(\n => 43.225.98.124\n)\n\n => Array\n(\n => 157.51.113.74\n)\n\n => Array\n(\n => 207.244.89.161\n)\n\n => Array\n(\n => 49.37.184.82\n)\n\n => Array\n(\n => 111.119.183.4\n)\n\n => Array\n(\n => 39.42.130.147\n)\n\n => Array\n(\n => 103.152.101.2\n)\n\n => Array\n(\n => 111.119.183.2\n)\n\n => Array\n(\n => 157.51.171.149\n)\n\n => Array\n(\n => 103.82.80.245\n)\n\n => Array\n(\n => 175.107.207.133\n)\n\n => Array\n(\n => 103.204.169.158\n)\n\n => Array\n(\n => 157.51.181.12\n)\n\n => Array\n(\n => 195.158.193.212\n)\n\n => Array\n(\n => 204.14.73.85\n)\n\n => Array\n(\n => 39.59.59.31\n)\n\n => Array\n(\n => 45.148.11.82\n)\n\n => Array\n(\n => 157.46.117.250\n)\n\n => Array\n(\n => 157.46.127.170\n)\n\n => Array\n(\n => 77.247.181.165\n)\n\n => Array\n(\n => 111.119.183.54\n)\n\n => Array\n(\n => 41.60.232.183\n)\n\n => Array\n(\n => 157.42.206.174\n)\n\n => Array\n(\n => 196.53.10.246\n)\n\n => Array\n(\n => 27.97.186.131\n)\n\n => Array\n(\n => 103.73.101.134\n)\n\n => Array\n(\n => 111.119.183.35\n)\n\n => Array\n(\n => 202.8.118.111\n)\n\n => Array\n(\n => 103.75.246.207\n)\n\n => Array\n(\n => 47.8.94.225\n)\n\n => Array\n(\n => 106.202.40.83\n)\n\n => Array\n(\n => 117.102.2.0\n)\n\n => Array\n(\n => 156.146.59.11\n)\n\n => Array\n(\n => 223.190.115.125\n)\n\n => Array\n(\n => 169.149.212.232\n)\n\n => Array\n(\n => 39.45.150.127\n)\n\n => Array\n(\n => 45.63.10.204\n)\n\n => Array\n(\n => 27.57.86.46\n)\n\n => Array\n(\n => 103.127.20.138\n)\n\n => Array\n(\n => 223.190.27.26\n)\n\n => Array\n(\n => 49.15.248.78\n)\n\n => Array\n(\n => 130.105.135.103\n)\n\n => Array\n(\n => 47.31.3.239\n)\n\n => Array\n(\n => 185.66.71.8\n)\n\n => Array\n(\n => 103.226.226.198\n)\n\n => Array\n(\n => 39.34.134.16\n)\n\n => Array\n(\n => 95.158.53.120\n)\n\n => Array\n(\n => 45.9.249.246\n)\n\n => Array\n(\n => 223.235.162.157\n)\n\n => Array\n(\n => 37.111.139.23\n)\n\n => Array\n(\n => 49.37.153.47\n)\n\n => Array\n(\n => 103.242.60.205\n)\n\n => Array\n(\n => 185.66.68.18\n)\n\n => Array\n(\n => 162.221.202.138\n)\n\n => Array\n(\n => 202.63.195.29\n)\n\n => Array\n(\n => 112.198.75.226\n)\n\n => Array\n(\n => 46.200.69.233\n)\n\n => Array\n(\n => 103.135.78.30\n)\n\n => Array\n(\n => 119.152.226.9\n)\n\n => Array\n(\n => 167.172.242.50\n)\n\n => Array\n(\n => 49.36.151.31\n)\n\n => Array\n(\n => 111.88.237.156\n)\n\n => Array\n(\n => 103.215.168.1\n)\n\n => Array\n(\n => 107.181.177.137\n)\n\n => Array\n(\n => 157.119.186.202\n)\n\n => Array\n(\n => 37.111.139.106\n)\n\n => Array\n(\n => 182.180.152.198\n)\n\n => Array\n(\n => 43.248.153.72\n)\n\n => Array\n(\n => 64.188.20.84\n)\n\n => Array\n(\n => 103.92.214.11\n)\n\n => Array\n(\n => 182.182.14.148\n)\n\n => Array\n(\n => 116.75.154.119\n)\n\n => Array\n(\n => 37.228.235.94\n)\n\n => Array\n(\n => 197.210.55.43\n)\n\n => Array\n(\n => 45.118.165.153\n)\n\n => Array\n(\n => 122.176.32.27\n)\n\n => Array\n(\n => 106.215.161.20\n)\n\n => Array\n(\n => 152.32.113.58\n)\n\n => Array\n(\n => 111.125.106.132\n)\n\n => Array\n(\n => 212.102.40.72\n)\n\n => Array\n(\n => 2.58.194.140\n)\n\n => Array\n(\n => 122.174.68.115\n)\n\n => Array\n(\n => 117.241.66.56\n)\n\n => Array\n(\n => 71.94.172.140\n)\n\n => Array\n(\n => 103.209.228.139\n)\n\n => Array\n(\n => 43.242.177.140\n)\n\n => Array\n(\n => 38.91.101.66\n)\n\n => Array\n(\n => 103.82.80.67\n)\n\n => Array\n(\n => 117.248.62.138\n)\n\n => Array\n(\n => 103.81.215.51\n)\n\n => Array\n(\n => 103.253.174.4\n)\n\n => Array\n(\n => 202.142.110.111\n)\n\n => Array\n(\n => 162.216.142.1\n)\n\n => Array\n(\n => 58.186.7.252\n)\n\n => Array\n(\n => 113.203.247.66\n)\n\n => Array\n(\n => 111.88.50.63\n)\n\n => Array\n(\n => 182.182.94.227\n)\n\n => Array\n(\n => 49.15.232.50\n)\n\n => Array\n(\n => 182.189.76.225\n)\n\n => Array\n(\n => 139.99.159.14\n)\n\n => Array\n(\n => 163.172.159.235\n)\n\n => Array\n(\n => 157.36.235.241\n)\n\n => Array\n(\n => 111.119.187.3\n)\n\n => Array\n(\n => 103.100.4.61\n)\n\n => Array\n(\n => 192.142.130.88\n)\n\n => Array\n(\n => 43.242.176.114\n)\n\n => Array\n(\n => 180.178.156.165\n)\n\n => Array\n(\n => 182.189.236.77\n)\n\n => Array\n(\n => 49.34.197.239\n)\n\n => Array\n(\n => 157.36.107.107\n)\n\n => Array\n(\n => 103.209.85.175\n)\n\n => Array\n(\n => 203.139.63.83\n)\n\n => Array\n(\n => 43.242.177.161\n)\n\n => Array\n(\n => 182.182.77.138\n)\n\n => Array\n(\n => 114.124.168.117\n)\n\n => Array\n(\n => 124.253.79.191\n)\n\n => Array\n(\n => 192.142.168.235\n)\n\n => Array\n(\n => 14.232.235.111\n)\n\n => Array\n(\n => 152.57.124.214\n)\n\n => Array\n(\n => 123.24.172.48\n)\n\n => Array\n(\n => 43.242.176.87\n)\n\n => Array\n(\n => 43.242.176.101\n)\n\n => Array\n(\n => 49.156.84.110\n)\n\n => Array\n(\n => 58.65.222.6\n)\n\n => Array\n(\n => 157.32.189.112\n)\n\n => Array\n(\n => 47.31.155.87\n)\n\n => Array\n(\n => 39.53.244.182\n)\n\n => Array\n(\n => 39.33.221.76\n)\n\n => Array\n(\n => 161.35.130.245\n)\n\n => Array\n(\n => 152.32.113.137\n)\n\n => Array\n(\n => 192.142.187.220\n)\n\n => Array\n(\n => 185.54.228.123\n)\n\n => Array\n(\n => 103.233.87.221\n)\n\n => Array\n(\n => 223.236.200.224\n)\n\n => Array\n(\n => 27.97.189.170\n)\n\n => Array\n(\n => 103.82.80.212\n)\n\n => Array\n(\n => 43.242.176.37\n)\n\n => Array\n(\n => 49.36.144.94\n)\n\n => Array\n(\n => 180.251.62.185\n)\n\n => Array\n(\n => 39.50.243.227\n)\n\n => Array\n(\n => 124.253.20.21\n)\n\n => Array\n(\n => 41.60.233.31\n)\n\n => Array\n(\n => 103.81.215.57\n)\n\n => Array\n(\n => 185.91.120.16\n)\n\n => Array\n(\n => 182.190.107.163\n)\n\n => Array\n(\n => 222.252.61.68\n)\n\n => Array\n(\n => 109.169.23.78\n)\n\n => Array\n(\n => 39.50.151.222\n)\n\n => Array\n(\n => 43.242.176.86\n)\n\n => Array\n(\n => 178.162.222.161\n)\n\n => Array\n(\n => 37.111.139.158\n)\n\n => Array\n(\n => 39.57.224.97\n)\n\n => Array\n(\n => 39.57.157.194\n)\n\n => Array\n(\n => 111.119.183.48\n)\n\n => Array\n(\n => 180.190.171.129\n)\n\n => Array\n(\n => 39.52.174.177\n)\n\n => Array\n(\n => 43.242.176.103\n)\n\n => Array\n(\n => 124.253.83.14\n)\n\n => Array\n(\n => 182.189.116.245\n)\n\n => Array\n(\n => 157.36.178.213\n)\n\n => Array\n(\n => 45.250.65.119\n)\n\n => Array\n(\n => 103.209.86.6\n)\n\n => Array\n(\n => 43.242.176.80\n)\n\n => Array\n(\n => 137.59.147.2\n)\n\n => Array\n(\n => 117.222.95.23\n)\n\n => Array\n(\n => 124.253.81.10\n)\n\n => Array\n(\n => 43.242.177.21\n)\n\n => Array\n(\n => 182.189.224.186\n)\n\n => Array\n(\n => 39.52.178.142\n)\n\n => Array\n(\n => 106.214.29.176\n)\n\n => Array\n(\n => 111.88.145.107\n)\n\n => Array\n(\n => 49.36.142.67\n)\n\n => Array\n(\n => 202.142.65.50\n)\n\n => Array\n(\n => 1.22.186.76\n)\n\n => Array\n(\n => 103.131.8.225\n)\n\n => Array\n(\n => 39.53.212.111\n)\n\n => Array\n(\n => 103.82.80.149\n)\n\n => Array\n(\n => 43.242.176.12\n)\n\n => Array\n(\n => 103.109.13.189\n)\n\n => Array\n(\n => 124.253.206.202\n)\n\n => Array\n(\n => 117.195.115.85\n)\n\n => Array\n(\n => 49.36.245.229\n)\n\n => Array\n(\n => 42.118.8.100\n)\n\n => Array\n(\n => 1.22.73.17\n)\n\n => Array\n(\n => 157.36.166.131\n)\n\n => Array\n(\n => 182.182.38.223\n)\n\n => Array\n(\n => 49.14.150.21\n)\n\n => Array\n(\n => 43.242.176.89\n)\n\n => Array\n(\n => 157.46.185.69\n)\n\n => Array\n(\n => 103.31.92.150\n)\n\n => Array\n(\n => 59.96.90.94\n)\n\n => Array\n(\n => 49.156.111.64\n)\n\n => Array\n(\n => 103.75.244.16\n)\n\n => Array\n(\n => 54.37.18.139\n)\n\n => Array\n(\n => 27.255.173.50\n)\n\n => Array\n(\n => 84.202.161.120\n)\n\n => Array\n(\n => 27.3.224.180\n)\n\n => Array\n(\n => 39.44.14.192\n)\n\n => Array\n(\n => 37.120.133.201\n)\n\n => Array\n(\n => 109.251.143.236\n)\n\n => Array\n(\n => 23.80.97.111\n)\n\n => Array\n(\n => 43.242.176.9\n)\n\n => Array\n(\n => 14.248.107.50\n)\n\n => Array\n(\n => 182.189.221.114\n)\n\n => Array\n(\n => 103.253.173.74\n)\n\n => Array\n(\n => 27.97.177.45\n)\n\n => Array\n(\n => 49.14.98.9\n)\n\n => Array\n(\n => 163.53.85.169\n)\n\n => Array\n(\n => 39.59.90.168\n)\n\n => Array\n(\n => 111.88.202.253\n)\n\n => Array\n(\n => 111.119.178.155\n)\n\n => Array\n(\n => 171.76.163.75\n)\n\n => Array\n(\n => 202.5.154.23\n)\n\n => Array\n(\n => 119.160.65.164\n)\n\n => Array\n(\n => 14.253.253.190\n)\n\n => Array\n(\n => 117.206.167.25\n)\n\n => Array\n(\n => 61.2.183.186\n)\n\n => Array\n(\n => 103.100.4.83\n)\n\n => Array\n(\n => 124.253.71.126\n)\n\n => Array\n(\n => 182.189.49.217\n)\n\n => Array\n(\n => 103.196.160.41\n)\n\n => Array\n(\n => 23.106.56.35\n)\n\n => Array\n(\n => 110.38.12.70\n)\n\n => Array\n(\n => 154.157.199.239\n)\n\n => Array\n(\n => 14.231.163.113\n)\n\n => Array\n(\n => 103.69.27.232\n)\n\n => Array\n(\n => 175.107.220.192\n)\n\n => Array\n(\n => 43.231.58.173\n)\n\n => Array\n(\n => 138.128.91.215\n)\n\n => Array\n(\n => 103.233.86.1\n)\n\n => Array\n(\n => 182.187.67.111\n)\n\n => Array\n(\n => 49.156.71.31\n)\n\n => Array\n(\n => 27.255.174.125\n)\n\n => Array\n(\n => 195.24.220.35\n)\n\n => Array\n(\n => 120.29.98.28\n)\n\n => Array\n(\n => 41.202.219.255\n)\n\n => Array\n(\n => 103.88.3.243\n)\n\n => Array\n(\n => 111.125.106.75\n)\n\n => Array\n(\n => 106.76.71.74\n)\n\n => Array\n(\n => 112.201.138.85\n)\n\n => Array\n(\n => 110.137.101.229\n)\n\n => Array\n(\n => 43.242.177.96\n)\n\n => Array\n(\n => 39.36.198.196\n)\n\n => Array\n(\n => 27.255.181.140\n)\n\n => Array\n(\n => 194.99.104.58\n)\n\n => Array\n(\n => 78.129.139.109\n)\n\n => Array\n(\n => 47.247.185.67\n)\n\n => Array\n(\n => 27.63.37.90\n)\n\n => Array\n(\n => 103.211.54.1\n)\n\n => Array\n(\n => 94.202.167.139\n)\n\n => Array\n(\n => 111.119.183.3\n)\n\n => Array\n(\n => 124.253.194.1\n)\n\n => Array\n(\n => 192.142.188.115\n)\n\n => Array\n(\n => 39.44.137.107\n)\n\n => Array\n(\n => 43.251.191.25\n)\n\n => Array\n(\n => 103.140.30.114\n)\n\n => Array\n(\n => 117.5.194.159\n)\n\n => Array\n(\n => 109.169.23.79\n)\n\n => Array\n(\n => 122.178.127.170\n)\n\n => Array\n(\n => 45.118.165.156\n)\n\n => Array\n(\n => 39.48.199.148\n)\n\n => Array\n(\n => 182.64.138.32\n)\n\n => Array\n(\n => 37.73.129.186\n)\n\n => Array\n(\n => 182.186.110.35\n)\n\n => Array\n(\n => 43.242.177.24\n)\n\n => Array\n(\n => 119.155.23.112\n)\n\n => Array\n(\n => 84.16.238.119\n)\n\n => Array\n(\n => 41.202.219.252\n)\n\n => Array\n(\n => 43.242.176.119\n)\n\n => Array\n(\n => 111.119.187.6\n)\n\n => Array\n(\n => 95.12.200.188\n)\n\n => Array\n(\n => 139.28.219.138\n)\n\n => Array\n(\n => 89.163.247.130\n)\n\n => Array\n(\n => 122.173.103.88\n)\n\n => Array\n(\n => 103.248.87.10\n)\n\n => Array\n(\n => 23.106.249.36\n)\n\n => Array\n(\n => 124.253.94.125\n)\n\n => Array\n(\n => 39.53.244.147\n)\n\n => Array\n(\n => 193.109.85.11\n)\n\n => Array\n(\n => 43.242.176.71\n)\n\n => Array\n(\n => 43.242.177.58\n)\n\n => Array\n(\n => 47.31.6.139\n)\n\n => Array\n(\n => 39.59.34.67\n)\n\n => Array\n(\n => 43.242.176.58\n)\n\n => Array\n(\n => 103.107.198.198\n)\n\n => Array\n(\n => 147.135.11.113\n)\n\n => Array\n(\n => 27.7.212.112\n)\n\n => Array\n(\n => 43.242.177.1\n)\n\n => Array\n(\n => 175.107.227.27\n)\n\n => Array\n(\n => 103.103.43.254\n)\n\n => Array\n(\n => 49.15.221.10\n)\n\n => Array\n(\n => 43.242.177.43\n)\n\n => Array\n(\n => 36.85.59.11\n)\n\n => Array\n(\n => 124.253.204.50\n)\n\n => Array\n(\n => 5.181.233.54\n)\n\n => Array\n(\n => 43.242.177.154\n)\n\n => Array\n(\n => 103.84.37.169\n)\n\n => Array\n(\n => 222.252.54.108\n)\n\n => Array\n(\n => 14.162.160.254\n)\n\n => Array\n(\n => 178.151.218.45\n)\n\n => Array\n(\n => 110.137.101.93\n)\n\n => Array\n(\n => 122.162.212.59\n)\n\n => Array\n(\n => 81.12.118.162\n)\n\n => Array\n(\n => 171.76.186.148\n)\n\n => Array\n(\n => 182.69.253.77\n)\n\n => Array\n(\n => 111.119.183.43\n)\n\n => Array\n(\n => 49.149.74.226\n)\n\n => Array\n(\n => 43.242.177.63\n)\n\n => Array\n(\n => 14.99.243.54\n)\n\n => Array\n(\n => 110.137.100.25\n)\n\n => Array\n(\n => 116.107.25.163\n)\n\n => Array\n(\n => 49.36.71.141\n)\n\n => Array\n(\n => 182.180.117.219\n)\n\n => Array\n(\n => 150.242.172.194\n)\n\n => Array\n(\n => 49.156.111.40\n)\n\n => Array\n(\n => 49.15.208.115\n)\n\n => Array\n(\n => 103.209.87.219\n)\n\n => Array\n(\n => 43.242.176.56\n)\n\n => Array\n(\n => 103.132.187.100\n)\n\n => Array\n(\n => 49.156.96.120\n)\n\n => Array\n(\n => 192.142.176.171\n)\n\n => Array\n(\n => 51.91.18.131\n)\n\n => Array\n(\n => 103.83.144.121\n)\n\n => Array\n(\n => 1.39.75.72\n)\n\n => Array\n(\n => 14.231.172.177\n)\n\n => Array\n(\n => 94.232.213.159\n)\n\n => Array\n(\n => 103.228.158.38\n)\n\n => Array\n(\n => 43.242.177.100\n)\n\n => Array\n(\n => 171.76.149.130\n)\n\n => Array\n(\n => 113.183.26.59\n)\n\n => Array\n(\n => 182.74.232.166\n)\n\n => Array\n(\n => 47.31.205.211\n)\n\n => Array\n(\n => 106.211.253.70\n)\n\n => Array\n(\n => 39.51.233.214\n)\n\n => Array\n(\n => 182.70.249.161\n)\n\n => Array\n(\n => 222.252.40.196\n)\n\n => Array\n(\n => 49.37.6.29\n)\n\n => Array\n(\n => 119.155.33.170\n)\n\n => Array\n(\n => 43.242.177.79\n)\n\n => Array\n(\n => 111.119.183.62\n)\n\n => Array\n(\n => 137.59.226.97\n)\n\n => Array\n(\n => 42.111.18.121\n)\n\n => Array\n(\n => 223.190.46.91\n)\n\n => Array\n(\n => 45.118.165.159\n)\n\n => Array\n(\n => 110.136.60.44\n)\n\n => Array\n(\n => 43.242.176.57\n)\n\n => Array\n(\n => 117.212.58.0\n)\n\n => Array\n(\n => 49.37.7.66\n)\n\n => Array\n(\n => 39.52.174.33\n)\n\n => Array\n(\n => 150.242.172.55\n)\n\n => Array\n(\n => 103.94.111.236\n)\n\n => Array\n(\n => 106.215.239.184\n)\n\n => Array\n(\n => 101.128.117.75\n)\n\n => Array\n(\n => 162.210.194.10\n)\n\n => Array\n(\n => 136.158.31.132\n)\n\n => Array\n(\n => 39.51.245.69\n)\n\n => Array\n(\n => 39.42.149.159\n)\n\n => Array\n(\n => 51.77.108.159\n)\n\n => Array\n(\n => 45.127.247.250\n)\n\n => Array\n(\n => 122.172.78.22\n)\n\n => Array\n(\n => 117.220.208.38\n)\n\n => Array\n(\n => 112.201.138.95\n)\n\n => Array\n(\n => 49.145.105.113\n)\n\n => Array\n(\n => 110.93.247.12\n)\n\n => Array\n(\n => 39.52.150.32\n)\n\n => Array\n(\n => 122.161.89.41\n)\n\n => Array\n(\n => 39.52.176.49\n)\n\n => Array\n(\n => 157.33.12.154\n)\n\n => Array\n(\n => 73.111.248.162\n)\n\n => Array\n(\n => 112.204.167.67\n)\n\n => Array\n(\n => 107.150.30.182\n)\n\n => Array\n(\n => 115.99.222.229\n)\n\n => Array\n(\n => 180.190.195.96\n)\n\n => Array\n(\n => 157.44.57.255\n)\n\n => Array\n(\n => 39.37.9.167\n)\n\n => Array\n(\n => 39.49.48.33\n)\n\n => Array\n(\n => 157.44.218.118\n)\n\n => Array\n(\n => 103.211.54.253\n)\n\n => Array\n(\n => 43.242.177.81\n)\n\n => Array\n(\n => 103.111.224.227\n)\n\n => Array\n(\n => 223.176.48.237\n)\n\n => Array\n(\n => 124.253.87.117\n)\n\n => Array\n(\n => 124.29.247.14\n)\n\n => Array\n(\n => 182.189.232.32\n)\n\n => Array\n(\n => 111.68.97.206\n)\n\n => Array\n(\n => 103.117.15.70\n)\n\n => Array\n(\n => 182.18.236.101\n)\n\n => Array\n(\n => 43.242.177.60\n)\n\n => Array\n(\n => 180.190.7.178\n)\n\n => Array\n(\n => 112.201.142.95\n)\n\n => Array\n(\n => 122.178.255.123\n)\n\n => Array\n(\n => 49.36.240.103\n)\n\n => Array\n(\n => 210.56.16.13\n)\n\n => Array\n(\n => 103.91.123.219\n)\n\n => Array\n(\n => 39.52.155.252\n)\n\n => Array\n(\n => 192.142.207.230\n)\n\n => Array\n(\n => 188.163.82.179\n)\n\n => Array\n(\n => 182.189.9.196\n)\n\n => Array\n(\n => 175.107.221.51\n)\n\n => Array\n(\n => 39.53.221.200\n)\n\n => Array\n(\n => 27.255.190.59\n)\n\n => Array\n(\n => 183.83.212.118\n)\n\n => Array\n(\n => 45.118.165.143\n)\n\n => Array\n(\n => 182.189.124.35\n)\n\n => Array\n(\n => 203.101.186.1\n)\n\n => Array\n(\n => 49.36.246.25\n)\n\n => Array\n(\n => 39.42.186.234\n)\n\n => Array\n(\n => 103.82.80.14\n)\n\n => Array\n(\n => 210.18.182.42\n)\n\n => Array\n(\n => 42.111.13.81\n)\n\n => Array\n(\n => 46.200.69.240\n)\n\n => Array\n(\n => 103.209.87.213\n)\n\n => Array\n(\n => 103.31.95.95\n)\n\n => Array\n(\n => 180.190.174.25\n)\n\n => Array\n(\n => 103.77.0.128\n)\n\n => Array\n(\n => 49.34.103.82\n)\n\n => Array\n(\n => 39.48.196.22\n)\n\n => Array\n(\n => 192.142.166.20\n)\n\n => Array\n(\n => 202.142.110.186\n)\n\n => Array\n(\n => 122.163.135.95\n)\n\n => Array\n(\n => 183.83.255.225\n)\n\n => Array\n(\n => 157.45.46.10\n)\n\n => Array\n(\n => 182.189.4.77\n)\n\n => Array\n(\n => 49.145.104.71\n)\n\n => Array\n(\n => 103.143.7.34\n)\n\n => Array\n(\n => 61.2.180.15\n)\n\n => Array\n(\n => 103.81.215.61\n)\n\n => Array\n(\n => 115.42.71.122\n)\n\n => Array\n(\n => 124.253.73.20\n)\n\n => Array\n(\n => 49.33.210.169\n)\n\n => Array\n(\n => 78.159.101.115\n)\n\n => Array\n(\n => 42.111.17.221\n)\n\n => Array\n(\n => 43.242.178.67\n)\n\n => Array\n(\n => 36.68.138.36\n)\n\n => Array\n(\n => 103.195.201.51\n)\n\n => Array\n(\n => 79.141.162.81\n)\n\n => Array\n(\n => 202.8.118.239\n)\n\n => Array\n(\n => 103.139.128.161\n)\n\n => Array\n(\n => 207.244.71.84\n)\n\n => Array\n(\n => 124.253.184.45\n)\n\n => Array\n(\n => 111.125.106.124\n)\n\n => Array\n(\n => 111.125.105.139\n)\n\n => Array\n(\n => 39.59.94.233\n)\n\n => Array\n(\n => 112.211.60.168\n)\n\n => Array\n(\n => 103.117.14.72\n)\n\n => Array\n(\n => 111.119.183.56\n)\n\n => Array\n(\n => 47.31.53.228\n)\n\n => Array\n(\n => 124.253.186.8\n)\n\n => Array\n(\n => 183.83.213.214\n)\n\n => Array\n(\n => 103.106.239.70\n)\n\n => Array\n(\n => 182.182.92.81\n)\n\n => Array\n(\n => 14.162.167.98\n)\n\n => Array\n(\n => 112.211.11.107\n)\n\n => Array\n(\n => 77.111.246.20\n)\n\n => Array\n(\n => 49.156.86.182\n)\n\n => Array\n(\n => 47.29.122.112\n)\n\n => Array\n(\n => 125.99.74.42\n)\n\n => Array\n(\n => 124.123.169.24\n)\n\n => Array\n(\n => 106.202.105.128\n)\n\n => Array\n(\n => 103.244.173.14\n)\n\n => Array\n(\n => 103.98.63.104\n)\n\n => Array\n(\n => 180.245.6.60\n)\n\n => Array\n(\n => 49.149.96.14\n)\n\n => Array\n(\n => 14.177.120.169\n)\n\n => Array\n(\n => 192.135.90.145\n)\n\n => Array\n(\n => 223.190.18.218\n)\n\n => Array\n(\n => 171.61.190.2\n)\n\n => Array\n(\n => 58.65.220.219\n)\n\n => Array\n(\n => 122.177.29.87\n)\n\n => Array\n(\n => 223.236.175.203\n)\n\n => Array\n(\n => 39.53.237.106\n)\n\n => Array\n(\n => 1.186.114.83\n)\n\n => Array\n(\n => 43.230.66.153\n)\n\n => Array\n(\n => 27.96.94.247\n)\n\n => Array\n(\n => 39.52.176.185\n)\n\n => Array\n(\n => 59.94.147.62\n)\n\n => Array\n(\n => 119.160.117.10\n)\n\n => Array\n(\n => 43.241.146.105\n)\n\n => Array\n(\n => 39.59.87.75\n)\n\n => Array\n(\n => 119.160.118.203\n)\n\n => Array\n(\n => 39.52.161.76\n)\n\n => Array\n(\n => 202.168.84.189\n)\n\n => Array\n(\n => 103.215.168.2\n)\n\n => Array\n(\n => 39.42.146.160\n)\n\n => Array\n(\n => 182.182.30.246\n)\n\n => Array\n(\n => 122.173.212.133\n)\n\n => Array\n(\n => 39.51.238.44\n)\n\n => Array\n(\n => 183.83.252.51\n)\n\n => Array\n(\n => 202.142.168.86\n)\n\n => Array\n(\n => 39.40.198.209\n)\n\n => Array\n(\n => 192.135.90.151\n)\n\n => Array\n(\n => 72.255.41.174\n)\n\n => Array\n(\n => 137.97.92.124\n)\n\n => Array\n(\n => 182.185.159.155\n)\n\n => Array\n(\n => 157.44.133.131\n)\n\n => Array\n(\n => 39.51.230.253\n)\n\n => Array\n(\n => 103.70.87.200\n)\n\n => Array\n(\n => 103.117.15.82\n)\n\n => Array\n(\n => 103.217.244.69\n)\n\n => Array\n(\n => 157.34.76.185\n)\n\n => Array\n(\n => 39.52.130.163\n)\n\n => Array\n(\n => 182.181.41.39\n)\n\n => Array\n(\n => 49.37.212.226\n)\n\n => Array\n(\n => 119.160.117.100\n)\n\n => Array\n(\n => 103.209.87.43\n)\n\n => Array\n(\n => 180.190.195.45\n)\n\n => Array\n(\n => 122.160.57.230\n)\n\n => Array\n(\n => 203.192.213.81\n)\n\n => Array\n(\n => 182.181.63.91\n)\n\n => Array\n(\n => 157.44.184.5\n)\n\n => Array\n(\n => 27.97.213.128\n)\n\n => Array\n(\n => 122.55.252.145\n)\n\n => Array\n(\n => 103.117.15.92\n)\n\n => Array\n(\n => 42.201.251.179\n)\n\n => Array\n(\n => 122.186.84.53\n)\n\n => Array\n(\n => 119.157.75.242\n)\n\n => Array\n(\n => 39.42.163.6\n)\n\n => Array\n(\n => 14.99.246.78\n)\n\n => Array\n(\n => 103.209.87.227\n)\n\n => Array\n(\n => 182.68.215.31\n)\n\n => Array\n(\n => 45.118.165.140\n)\n\n => Array\n(\n => 207.244.71.81\n)\n\n => Array\n(\n => 27.97.162.57\n)\n\n => Array\n(\n => 103.113.106.98\n)\n\n => Array\n(\n => 95.135.44.103\n)\n\n => Array\n(\n => 125.209.114.238\n)\n\n => Array\n(\n => 77.123.14.176\n)\n\n => Array\n(\n => 110.36.202.169\n)\n\n => Array\n(\n => 124.253.205.230\n)\n\n => Array\n(\n => 106.215.72.117\n)\n\n => Array\n(\n => 116.72.226.35\n)\n\n => Array\n(\n => 137.97.103.141\n)\n\n => Array\n(\n => 112.79.212.161\n)\n\n => Array\n(\n => 103.209.85.150\n)\n\n => Array\n(\n => 103.159.127.6\n)\n\n => Array\n(\n => 43.239.205.66\n)\n\n => Array\n(\n => 143.244.51.152\n)\n\n => Array\n(\n => 182.64.15.3\n)\n\n => Array\n(\n => 182.185.207.146\n)\n\n => Array\n(\n => 45.118.165.155\n)\n\n => Array\n(\n => 115.160.241.214\n)\n\n => Array\n(\n => 47.31.230.68\n)\n\n => Array\n(\n => 49.15.84.145\n)\n\n => Array\n(\n => 39.51.239.206\n)\n\n => Array\n(\n => 103.149.154.212\n)\n\n => Array\n(\n => 43.239.207.155\n)\n\n => Array\n(\n => 182.182.30.181\n)\n\n => Array\n(\n => 157.37.198.16\n)\n\n => Array\n(\n => 162.239.24.60\n)\n\n => Array\n(\n => 106.212.101.97\n)\n\n => Array\n(\n => 124.253.97.44\n)\n\n => Array\n(\n => 106.214.95.176\n)\n\n => Array\n(\n => 102.69.228.114\n)\n\n => Array\n(\n => 116.74.58.221\n)\n\n => Array\n(\n => 162.210.194.38\n)\n\n => Array\n(\n => 39.52.162.121\n)\n\n => Array\n(\n => 103.216.143.255\n)\n\n => Array\n(\n => 103.49.155.134\n)\n\n => Array\n(\n => 182.191.119.236\n)\n\n => Array\n(\n => 111.88.213.172\n)\n\n => Array\n(\n => 43.239.207.207\n)\n\n => Array\n(\n => 140.213.35.143\n)\n\n => Array\n(\n => 154.72.153.215\n)\n\n => Array\n(\n => 122.170.47.36\n)\n\n => Array\n(\n => 51.158.111.163\n)\n\n => Array\n(\n => 203.122.10.150\n)\n\n => Array\n(\n => 47.31.176.111\n)\n\n => Array\n(\n => 103.75.246.34\n)\n\n => Array\n(\n => 103.244.178.45\n)\n\n => Array\n(\n => 182.185.138.0\n)\n\n => Array\n(\n => 183.83.254.224\n)\n\n => Array\n(\n => 49.36.246.145\n)\n\n => Array\n(\n => 202.47.60.85\n)\n\n => Array\n(\n => 180.190.163.160\n)\n\n => Array\n(\n => 27.255.187.221\n)\n\n => Array\n(\n => 14.248.94.2\n)\n\n => Array\n(\n => 185.233.17.187\n)\n\n => Array\n(\n => 139.5.254.227\n)\n\n => Array\n(\n => 103.149.160.66\n)\n\n => Array\n(\n => 122.168.235.47\n)\n\n => Array\n(\n => 45.113.248.224\n)\n\n => Array\n(\n => 110.54.170.142\n)\n\n => Array\n(\n => 223.235.226.55\n)\n\n => Array\n(\n => 157.32.19.235\n)\n\n => Array\n(\n => 49.15.221.114\n)\n\n => Array\n(\n => 27.97.166.163\n)\n\n => Array\n(\n => 223.233.99.5\n)\n\n => Array\n(\n => 49.33.203.53\n)\n\n => Array\n(\n => 27.56.214.41\n)\n\n => Array\n(\n => 103.138.51.3\n)\n\n => Array\n(\n => 111.119.183.21\n)\n\n => Array\n(\n => 47.15.138.233\n)\n\n => Array\n(\n => 202.63.213.184\n)\n\n => Array\n(\n => 49.36.158.94\n)\n\n => Array\n(\n => 27.97.186.179\n)\n\n => Array\n(\n => 27.97.214.69\n)\n\n => Array\n(\n => 203.128.18.163\n)\n\n => Array\n(\n => 106.207.235.63\n)\n\n => Array\n(\n => 116.107.220.231\n)\n\n => Array\n(\n => 223.226.169.249\n)\n\n => Array\n(\n => 106.201.24.6\n)\n\n => Array\n(\n => 49.15.89.7\n)\n\n => Array\n(\n => 49.15.142.20\n)\n\n => Array\n(\n => 223.177.24.85\n)\n\n => Array\n(\n => 37.156.17.37\n)\n\n => Array\n(\n => 102.129.224.2\n)\n\n => Array\n(\n => 49.15.85.221\n)\n\n => Array\n(\n => 106.76.208.153\n)\n\n => Array\n(\n => 61.2.47.71\n)\n\n => Array\n(\n => 27.97.178.79\n)\n\n => Array\n(\n => 39.34.143.196\n)\n\n => Array\n(\n => 103.10.227.158\n)\n\n => Array\n(\n => 117.220.210.159\n)\n\n => Array\n(\n => 182.189.28.11\n)\n\n => Array\n(\n => 122.185.38.170\n)\n\n => Array\n(\n => 112.196.132.115\n)\n\n => Array\n(\n => 187.156.137.83\n)\n\n => Array\n(\n => 203.122.3.88\n)\n\n => Array\n(\n => 51.68.142.45\n)\n\n => Array\n(\n => 124.253.217.55\n)\n\n => Array\n(\n => 103.152.41.2\n)\n\n => Array\n(\n => 157.37.154.219\n)\n\n => Array\n(\n => 39.45.32.77\n)\n\n => Array\n(\n => 182.182.22.221\n)\n\n => Array\n(\n => 157.43.205.117\n)\n\n => Array\n(\n => 202.142.123.58\n)\n\n => Array\n(\n => 43.239.207.121\n)\n\n => Array\n(\n => 49.206.122.113\n)\n\n => Array\n(\n => 106.193.199.203\n)\n\n => Array\n(\n => 103.67.157.251\n)\n\n => Array\n(\n => 49.34.97.81\n)\n\n => Array\n(\n => 49.156.92.130\n)\n\n => Array\n(\n => 203.160.179.210\n)\n\n => Array\n(\n => 106.215.33.244\n)\n\n => Array\n(\n => 191.101.148.41\n)\n\n => Array\n(\n => 203.90.94.94\n)\n\n => Array\n(\n => 105.129.205.134\n)\n\n => Array\n(\n => 106.215.45.165\n)\n\n => Array\n(\n => 112.196.132.15\n)\n\n => Array\n(\n => 39.59.64.174\n)\n\n => Array\n(\n => 124.253.155.116\n)\n\n => Array\n(\n => 94.179.192.204\n)\n\n => Array\n(\n => 110.38.29.245\n)\n\n => Array\n(\n => 124.29.209.78\n)\n\n => Array\n(\n => 103.75.245.240\n)\n\n => Array\n(\n => 49.36.159.170\n)\n\n => Array\n(\n => 223.190.18.160\n)\n\n => Array\n(\n => 124.253.113.226\n)\n\n => Array\n(\n => 14.180.77.240\n)\n\n => Array\n(\n => 106.215.76.24\n)\n\n => Array\n(\n => 106.210.155.153\n)\n\n => Array\n(\n => 111.119.187.42\n)\n\n => Array\n(\n => 146.196.32.106\n)\n\n => Array\n(\n => 122.162.22.27\n)\n\n => Array\n(\n => 49.145.59.252\n)\n\n => Array\n(\n => 95.47.247.92\n)\n\n => Array\n(\n => 103.99.218.50\n)\n\n => Array\n(\n => 157.37.192.88\n)\n\n => Array\n(\n => 82.102.31.242\n)\n\n => Array\n(\n => 157.46.220.64\n)\n\n => Array\n(\n => 180.151.107.52\n)\n\n => Array\n(\n => 203.81.240.75\n)\n\n => Array\n(\n => 122.167.213.130\n)\n\n => Array\n(\n => 103.227.70.164\n)\n\n => Array\n(\n => 106.215.81.169\n)\n\n => Array\n(\n => 157.46.214.170\n)\n\n => Array\n(\n => 103.69.27.163\n)\n\n => Array\n(\n => 124.253.23.213\n)\n\n => Array\n(\n => 157.37.167.174\n)\n\n => Array\n(\n => 1.39.204.67\n)\n\n => Array\n(\n => 112.196.132.51\n)\n\n => Array\n(\n => 119.152.61.222\n)\n\n => Array\n(\n => 47.31.36.174\n)\n\n => Array\n(\n => 47.31.152.174\n)\n\n => Array\n(\n => 49.34.18.105\n)\n\n => Array\n(\n => 157.37.170.101\n)\n\n => Array\n(\n => 118.209.241.234\n)\n\n => Array\n(\n => 103.67.19.9\n)\n\n => Array\n(\n => 182.189.14.154\n)\n\n => Array\n(\n => 45.127.233.232\n)\n\n => Array\n(\n => 27.96.94.91\n)\n\n => Array\n(\n => 183.83.214.250\n)\n\n => Array\n(\n => 47.31.27.140\n)\n\n => Array\n(\n => 47.31.129.199\n)\n\n => Array\n(\n => 157.44.156.111\n)\n\n => Array\n(\n => 42.110.163.2\n)\n\n => Array\n(\n => 124.253.64.210\n)\n\n => Array\n(\n => 49.36.167.54\n)\n\n => Array\n(\n => 27.63.135.145\n)\n\n => Array\n(\n => 157.35.254.63\n)\n\n => Array\n(\n => 39.45.18.182\n)\n\n => Array\n(\n => 197.210.85.102\n)\n\n => Array\n(\n => 112.196.132.90\n)\n\n => Array\n(\n => 59.152.97.84\n)\n\n => Array\n(\n => 43.242.178.7\n)\n\n => Array\n(\n => 47.31.40.70\n)\n\n => Array\n(\n => 202.134.10.136\n)\n\n => Array\n(\n => 132.154.241.43\n)\n\n => Array\n(\n => 185.209.179.240\n)\n\n => Array\n(\n => 202.47.50.28\n)\n\n => Array\n(\n => 182.186.1.29\n)\n\n => Array\n(\n => 124.253.114.229\n)\n\n => Array\n(\n => 49.32.210.126\n)\n\n => Array\n(\n => 43.242.178.122\n)\n\n => Array\n(\n => 42.111.28.52\n)\n\n => Array\n(\n => 23.227.141.44\n)\n\n => Array\n(\n => 23.227.141.156\n)\n\n => Array\n(\n => 103.253.173.79\n)\n\n => Array\n(\n => 116.75.231.74\n)\n\n => Array\n(\n => 106.76.78.196\n)\n\n => Array\n(\n => 116.75.197.68\n)\n\n => Array\n(\n => 42.108.172.131\n)\n\n => Array\n(\n => 157.38.27.199\n)\n\n => Array\n(\n => 103.70.86.205\n)\n\n => Array\n(\n => 119.152.63.239\n)\n\n => Array\n(\n => 103.233.116.94\n)\n\n => Array\n(\n => 111.119.188.17\n)\n\n => Array\n(\n => 103.196.160.156\n)\n\n => Array\n(\n => 27.97.208.40\n)\n\n => Array\n(\n => 188.163.7.136\n)\n\n => Array\n(\n => 49.15.202.205\n)\n\n => Array\n(\n => 124.253.201.111\n)\n\n => Array\n(\n => 182.190.213.246\n)\n\n => Array\n(\n => 5.154.174.10\n)\n\n => Array\n(\n => 103.21.185.16\n)\n\n => Array\n(\n => 112.196.132.67\n)\n\n => Array\n(\n => 49.15.194.230\n)\n\n => Array\n(\n => 103.118.34.103\n)\n\n => Array\n(\n => 49.15.201.92\n)\n\n => Array\n(\n => 42.111.13.238\n)\n\n => Array\n(\n => 203.192.213.137\n)\n\n => Array\n(\n => 45.115.190.82\n)\n\n => Array\n(\n => 78.26.130.102\n)\n\n => Array\n(\n => 49.15.85.202\n)\n\n => Array\n(\n => 106.76.193.33\n)\n\n => Array\n(\n => 103.70.41.30\n)\n\n => Array\n(\n => 103.82.78.254\n)\n\n => Array\n(\n => 110.38.35.90\n)\n\n => Array\n(\n => 181.214.107.27\n)\n\n => Array\n(\n => 27.110.183.162\n)\n\n => Array\n(\n => 94.225.230.215\n)\n\n => Array\n(\n => 27.97.185.58\n)\n\n => Array\n(\n => 49.146.196.124\n)\n\n => Array\n(\n => 119.157.76.144\n)\n\n => Array\n(\n => 103.99.218.34\n)\n\n => Array\n(\n => 185.32.221.247\n)\n\n => Array\n(\n => 27.97.161.12\n)\n\n => Array\n(\n => 27.62.144.214\n)\n\n => Array\n(\n => 124.253.90.151\n)\n\n => Array\n(\n => 49.36.135.69\n)\n\n => Array\n(\n => 39.40.217.106\n)\n\n => Array\n(\n => 119.152.235.136\n)\n\n => Array\n(\n => 103.91.103.226\n)\n\n => Array\n(\n => 117.222.226.93\n)\n\n => Array\n(\n => 182.190.24.126\n)\n\n => Array\n(\n => 27.97.223.179\n)\n\n => Array\n(\n => 202.137.115.11\n)\n\n => Array\n(\n => 43.242.178.130\n)\n\n => Array\n(\n => 182.189.125.232\n)\n\n => Array\n(\n => 182.190.202.87\n)\n\n => Array\n(\n => 124.253.102.193\n)\n\n => Array\n(\n => 103.75.247.73\n)\n\n => Array\n(\n => 122.177.100.97\n)\n\n => Array\n(\n => 47.31.192.254\n)\n\n => Array\n(\n => 49.149.73.185\n)\n\n => Array\n(\n => 39.57.147.197\n)\n\n => Array\n(\n => 103.110.147.52\n)\n\n => Array\n(\n => 124.253.106.255\n)\n\n => Array\n(\n => 152.57.116.136\n)\n\n => Array\n(\n => 110.38.35.102\n)\n\n => Array\n(\n => 182.18.206.127\n)\n\n => Array\n(\n => 103.133.59.246\n)\n\n => Array\n(\n => 27.97.189.139\n)\n\n => Array\n(\n => 179.61.245.54\n)\n\n => Array\n(\n => 103.240.233.176\n)\n\n => Array\n(\n => 111.88.124.196\n)\n\n => Array\n(\n => 49.146.215.3\n)\n\n => Array\n(\n => 110.39.10.246\n)\n\n => Array\n(\n => 27.5.42.135\n)\n\n => Array\n(\n => 27.97.177.251\n)\n\n => Array\n(\n => 93.177.75.254\n)\n\n => Array\n(\n => 43.242.177.3\n)\n\n => Array\n(\n => 112.196.132.97\n)\n\n => Array\n(\n => 116.75.242.188\n)\n\n => Array\n(\n => 202.8.118.101\n)\n\n => Array\n(\n => 49.36.65.43\n)\n\n => Array\n(\n => 157.37.146.220\n)\n\n => Array\n(\n => 157.37.143.235\n)\n\n => Array\n(\n => 157.38.94.34\n)\n\n => Array\n(\n => 49.36.131.1\n)\n\n => Array\n(\n => 132.154.92.97\n)\n\n => Array\n(\n => 132.154.123.115\n)\n\n => Array\n(\n => 49.15.197.222\n)\n\n => Array\n(\n => 124.253.198.72\n)\n\n => Array\n(\n => 27.97.217.95\n)\n\n => Array\n(\n => 47.31.194.65\n)\n\n => Array\n(\n => 197.156.190.156\n)\n\n => Array\n(\n => 197.156.190.230\n)\n\n => Array\n(\n => 103.62.152.250\n)\n\n => Array\n(\n => 103.152.212.126\n)\n\n => Array\n(\n => 185.233.18.177\n)\n\n => Array\n(\n => 116.75.63.83\n)\n\n => Array\n(\n => 157.38.56.125\n)\n\n => Array\n(\n => 119.157.107.195\n)\n\n => Array\n(\n => 103.87.50.73\n)\n\n => Array\n(\n => 95.142.120.141\n)\n\n => Array\n(\n => 154.13.1.221\n)\n\n => Array\n(\n => 103.147.87.79\n)\n\n => Array\n(\n => 39.53.173.186\n)\n\n => Array\n(\n => 195.114.145.107\n)\n\n => Array\n(\n => 157.33.201.185\n)\n\n => Array\n(\n => 195.85.219.36\n)\n\n => Array\n(\n => 105.161.67.127\n)\n\n => Array\n(\n => 110.225.87.77\n)\n\n => Array\n(\n => 103.95.167.236\n)\n\n => Array\n(\n => 89.187.162.213\n)\n\n => Array\n(\n => 27.255.189.50\n)\n\n => Array\n(\n => 115.96.77.54\n)\n\n => Array\n(\n => 223.182.220.223\n)\n\n => Array\n(\n => 157.47.206.192\n)\n\n => Array\n(\n => 182.186.110.226\n)\n\n => Array\n(\n => 39.53.243.237\n)\n\n => Array\n(\n => 39.40.228.58\n)\n\n => Array\n(\n => 157.38.60.9\n)\n\n => Array\n(\n => 106.198.244.189\n)\n\n => Array\n(\n => 124.253.51.164\n)\n\n => Array\n(\n => 49.147.113.58\n)\n\n => Array\n(\n => 14.231.196.229\n)\n\n => Array\n(\n => 103.81.214.152\n)\n\n => Array\n(\n => 117.222.220.60\n)\n\n => Array\n(\n => 83.142.111.213\n)\n\n => Array\n(\n => 14.224.77.147\n)\n\n => Array\n(\n => 110.235.236.95\n)\n\n => Array\n(\n => 103.26.83.30\n)\n\n => Array\n(\n => 106.206.191.82\n)\n\n => Array\n(\n => 103.49.117.135\n)\n\n => Array\n(\n => 202.47.39.9\n)\n\n => Array\n(\n => 180.178.145.205\n)\n\n => Array\n(\n => 43.251.93.119\n)\n\n => Array\n(\n => 27.6.212.182\n)\n\n => Array\n(\n => 39.42.156.20\n)\n\n => Array\n(\n => 47.31.141.195\n)\n\n => Array\n(\n => 157.37.146.73\n)\n\n => Array\n(\n => 49.15.93.155\n)\n\n => Array\n(\n => 162.210.194.37\n)\n\n => Array\n(\n => 223.188.160.236\n)\n\n => Array\n(\n => 47.9.90.158\n)\n\n => Array\n(\n => 49.15.85.224\n)\n\n => Array\n(\n => 49.15.93.134\n)\n\n => Array\n(\n => 107.179.244.94\n)\n\n => Array\n(\n => 182.190.203.90\n)\n\n => Array\n(\n => 185.192.69.203\n)\n\n => Array\n(\n => 185.17.27.99\n)\n\n => Array\n(\n => 119.160.116.182\n)\n\n => Array\n(\n => 203.99.177.25\n)\n\n => Array\n(\n => 162.228.207.248\n)\n\n => Array\n(\n => 47.31.245.69\n)\n\n => Array\n(\n => 49.15.210.159\n)\n\n => Array\n(\n => 42.111.2.112\n)\n\n => Array\n(\n => 223.186.116.79\n)\n\n => Array\n(\n => 103.225.176.143\n)\n\n => Array\n(\n => 45.115.190.49\n)\n\n => Array\n(\n => 115.42.71.105\n)\n\n => Array\n(\n => 157.51.11.157\n)\n\n => Array\n(\n => 14.175.56.186\n)\n\n => Array\n(\n => 59.153.16.7\n)\n\n => Array\n(\n => 106.202.84.144\n)\n\n => Array\n(\n => 27.6.242.91\n)\n\n => Array\n(\n => 47.11.112.107\n)\n\n => Array\n(\n => 106.207.54.187\n)\n\n => Array\n(\n => 124.253.196.121\n)\n\n => Array\n(\n => 51.79.161.244\n)\n\n => Array\n(\n => 103.41.24.100\n)\n\n => Array\n(\n => 195.66.79.32\n)\n\n => Array\n(\n => 117.196.127.42\n)\n\n => Array\n(\n => 103.75.247.197\n)\n\n => Array\n(\n => 89.187.162.107\n)\n\n => Array\n(\n => 223.238.154.49\n)\n\n => Array\n(\n => 117.223.99.139\n)\n\n => Array\n(\n => 103.87.59.134\n)\n\n => Array\n(\n => 124.253.212.30\n)\n\n => Array\n(\n => 202.47.62.55\n)\n\n => Array\n(\n => 47.31.219.128\n)\n\n => Array\n(\n => 49.14.121.72\n)\n\n => Array\n(\n => 124.253.212.189\n)\n\n => Array\n(\n => 103.244.179.24\n)\n\n => Array\n(\n => 182.190.213.92\n)\n\n => Array\n(\n => 43.242.178.51\n)\n\n => Array\n(\n => 180.92.138.54\n)\n\n => Array\n(\n => 111.119.187.26\n)\n\n => Array\n(\n => 49.156.111.31\n)\n\n => Array\n(\n => 27.63.108.183\n)\n\n => Array\n(\n => 27.58.184.79\n)\n\n => Array\n(\n => 39.40.225.130\n)\n\n => Array\n(\n => 157.38.5.178\n)\n\n => Array\n(\n => 103.112.55.44\n)\n\n => Array\n(\n => 119.160.100.247\n)\n\n => Array\n(\n => 39.53.101.15\n)\n\n => Array\n(\n => 47.31.207.117\n)\n\n => Array\n(\n => 112.196.158.155\n)\n\n => Array\n(\n => 94.204.247.123\n)\n\n => Array\n(\n => 103.118.76.38\n)\n\n => Array\n(\n => 124.29.212.208\n)\n\n => Array\n(\n => 124.253.196.250\n)\n\n => Array\n(\n => 118.70.182.242\n)\n\n => Array\n(\n => 157.38.78.67\n)\n\n => Array\n(\n => 103.99.218.33\n)\n\n => Array\n(\n => 137.59.220.191\n)\n\n => Array\n(\n => 47.31.139.182\n)\n\n => Array\n(\n => 182.179.136.36\n)\n\n => Array\n(\n => 106.203.73.130\n)\n\n => Array\n(\n => 193.29.107.188\n)\n\n => Array\n(\n => 81.96.92.111\n)\n\n => Array\n(\n => 110.93.203.185\n)\n\n => Array\n(\n => 103.163.248.128\n)\n\n => Array\n(\n => 43.229.166.135\n)\n\n => Array\n(\n => 43.230.106.175\n)\n\n => Array\n(\n => 202.47.62.54\n)\n\n => Array\n(\n => 39.37.181.46\n)\n\n => Array\n(\n => 49.15.204.204\n)\n\n => Array\n(\n => 122.163.237.110\n)\n\n => Array\n(\n => 45.249.8.92\n)\n\n => Array\n(\n => 27.34.50.159\n)\n\n => Array\n(\n => 39.42.171.27\n)\n\n => Array\n(\n => 124.253.101.195\n)\n\n => Array\n(\n => 188.166.145.20\n)\n\n => Array\n(\n => 103.83.145.220\n)\n\n => Array\n(\n => 39.40.96.137\n)\n\n => Array\n(\n => 157.37.185.196\n)\n\n => Array\n(\n => 103.115.124.32\n)\n\n => Array\n(\n => 72.255.48.85\n)\n\n => Array\n(\n => 124.253.74.46\n)\n\n => Array\n(\n => 60.243.225.5\n)\n\n => Array\n(\n => 103.58.152.194\n)\n\n => Array\n(\n => 14.248.71.63\n)\n\n => Array\n(\n => 152.57.214.137\n)\n\n => Array\n(\n => 103.166.58.14\n)\n\n => Array\n(\n => 14.248.71.103\n)\n\n => Array\n(\n => 49.156.103.124\n)\n\n => Array\n(\n => 103.99.218.56\n)\n\n => Array\n(\n => 27.97.177.246\n)\n\n => Array\n(\n => 152.57.94.84\n)\n\n => Array\n(\n => 111.119.187.60\n)\n\n => Array\n(\n => 119.160.99.11\n)\n\n => Array\n(\n => 117.203.11.220\n)\n\n => Array\n(\n => 114.31.131.67\n)\n\n => Array\n(\n => 47.31.253.95\n)\n\n => Array\n(\n => 83.139.184.178\n)\n\n => Array\n(\n => 125.57.9.72\n)\n\n => Array\n(\n => 185.233.16.53\n)\n\n => Array\n(\n => 49.36.180.197\n)\n\n => Array\n(\n => 95.142.119.27\n)\n\n => Array\n(\n => 223.225.70.77\n)\n\n => Array\n(\n => 47.15.222.200\n)\n\n => Array\n(\n => 47.15.218.231\n)\n\n => Array\n(\n => 111.119.187.34\n)\n\n => Array\n(\n => 157.37.198.81\n)\n\n => Array\n(\n => 43.242.177.92\n)\n\n => Array\n(\n => 122.161.68.214\n)\n\n => Array\n(\n => 47.31.145.92\n)\n\n => Array\n(\n => 27.7.196.201\n)\n\n => Array\n(\n => 39.42.172.183\n)\n\n => Array\n(\n => 49.15.129.162\n)\n\n => Array\n(\n => 49.15.206.110\n)\n\n => Array\n(\n => 39.57.141.45\n)\n\n => Array\n(\n => 171.229.175.90\n)\n\n => Array\n(\n => 119.160.68.200\n)\n\n => Array\n(\n => 193.176.84.214\n)\n\n => Array\n(\n => 43.242.177.77\n)\n\n => Array\n(\n => 137.59.220.95\n)\n\n => Array\n(\n => 122.177.118.209\n)\n\n => Array\n(\n => 103.92.214.27\n)\n\n => Array\n(\n => 178.62.10.228\n)\n\n => Array\n(\n => 103.81.214.91\n)\n\n => Array\n(\n => 156.146.33.68\n)\n\n => Array\n(\n => 42.118.116.60\n)\n\n => Array\n(\n => 183.87.122.190\n)\n\n => Array\n(\n => 157.37.159.162\n)\n\n => Array\n(\n => 59.153.16.9\n)\n\n => Array\n(\n => 223.185.43.241\n)\n\n => Array\n(\n => 103.81.214.153\n)\n\n => Array\n(\n => 47.31.143.169\n)\n\n => Array\n(\n => 112.196.158.250\n)\n\n => Array\n(\n => 156.146.36.110\n)\n\n => Array\n(\n => 27.255.34.80\n)\n\n => Array\n(\n => 49.205.77.19\n)\n\n => Array\n(\n => 95.142.120.20\n)\n\n => Array\n(\n => 171.49.195.53\n)\n\n => Array\n(\n => 39.37.152.132\n)\n\n => Array\n(\n => 103.121.204.237\n)\n\n => Array\n(\n => 43.242.176.153\n)\n\n => Array\n(\n => 43.242.176.120\n)\n\n => Array\n(\n => 122.161.66.120\n)\n\n => Array\n(\n => 182.70.140.223\n)\n\n => Array\n(\n => 103.201.135.226\n)\n\n => Array\n(\n => 202.47.44.135\n)\n\n => Array\n(\n => 182.179.172.27\n)\n\n => Array\n(\n => 185.22.173.86\n)\n\n => Array\n(\n => 67.205.148.219\n)\n\n => Array\n(\n => 27.58.183.140\n)\n\n => Array\n(\n => 39.42.118.163\n)\n\n => Array\n(\n => 117.5.204.59\n)\n\n => Array\n(\n => 223.182.193.163\n)\n\n => Array\n(\n => 157.37.184.33\n)\n\n => Array\n(\n => 110.37.218.92\n)\n\n => Array\n(\n => 106.215.8.67\n)\n\n => Array\n(\n => 39.42.94.179\n)\n\n => Array\n(\n => 106.51.25.124\n)\n\n => Array\n(\n => 157.42.25.212\n)\n\n => Array\n(\n => 43.247.40.170\n)\n\n => Array\n(\n => 101.50.108.111\n)\n\n => Array\n(\n => 117.102.48.152\n)\n\n => Array\n(\n => 95.142.120.48\n)\n\n => Array\n(\n => 183.81.121.160\n)\n\n => Array\n(\n => 42.111.21.195\n)\n\n => Array\n(\n => 50.7.142.180\n)\n\n => Array\n(\n => 223.130.28.33\n)\n\n => Array\n(\n => 107.161.86.141\n)\n\n => Array\n(\n => 117.203.249.159\n)\n\n => Array\n(\n => 110.225.192.64\n)\n\n => Array\n(\n => 157.37.152.168\n)\n\n => Array\n(\n => 110.39.2.202\n)\n\n => Array\n(\n => 23.106.56.52\n)\n\n => Array\n(\n => 59.150.87.85\n)\n\n => Array\n(\n => 122.162.175.128\n)\n\n => Array\n(\n => 39.40.63.182\n)\n\n => Array\n(\n => 182.190.108.76\n)\n\n => Array\n(\n => 49.36.44.216\n)\n\n => Array\n(\n => 73.105.5.185\n)\n\n => Array\n(\n => 157.33.67.204\n)\n\n => Array\n(\n => 157.37.164.171\n)\n\n => Array\n(\n => 192.119.160.21\n)\n\n => Array\n(\n => 156.146.59.29\n)\n\n => Array\n(\n => 182.190.97.213\n)\n\n => Array\n(\n => 39.53.196.168\n)\n\n => Array\n(\n => 112.196.132.93\n)\n\n => Array\n(\n => 182.189.7.18\n)\n\n => Array\n(\n => 101.53.232.117\n)\n\n => Array\n(\n => 43.242.178.105\n)\n\n => Array\n(\n => 49.145.233.44\n)\n\n => Array\n(\n => 5.107.214.18\n)\n\n => Array\n(\n => 139.5.242.124\n)\n\n => Array\n(\n => 47.29.244.80\n)\n\n => Array\n(\n => 43.242.178.180\n)\n\n => Array\n(\n => 194.110.84.171\n)\n\n => Array\n(\n => 103.68.217.99\n)\n\n => Array\n(\n => 182.182.27.59\n)\n\n => Array\n(\n => 119.152.139.146\n)\n\n => Array\n(\n => 39.37.131.1\n)\n\n => Array\n(\n => 106.210.99.47\n)\n\n => Array\n(\n => 103.225.176.68\n)\n\n => Array\n(\n => 42.111.23.67\n)\n\n => Array\n(\n => 223.225.37.57\n)\n\n => Array\n(\n => 114.79.1.247\n)\n\n => Array\n(\n => 157.42.28.39\n)\n\n => Array\n(\n => 47.15.13.68\n)\n\n => Array\n(\n => 223.230.151.59\n)\n\n => Array\n(\n => 115.186.7.112\n)\n\n => Array\n(\n => 111.92.78.33\n)\n\n => Array\n(\n => 119.160.117.249\n)\n\n => Array\n(\n => 103.150.209.45\n)\n\n => Array\n(\n => 182.189.22.170\n)\n\n => Array\n(\n => 49.144.108.82\n)\n\n => Array\n(\n => 39.49.75.65\n)\n\n => Array\n(\n => 39.52.205.223\n)\n\n => Array\n(\n => 49.48.247.53\n)\n\n => Array\n(\n => 5.149.250.222\n)\n\n => Array\n(\n => 47.15.187.153\n)\n\n => Array\n(\n => 103.70.86.101\n)\n\n => Array\n(\n => 112.196.158.138\n)\n\n => Array\n(\n => 156.241.242.139\n)\n\n => Array\n(\n => 157.33.205.213\n)\n\n => Array\n(\n => 39.53.206.247\n)\n\n => Array\n(\n => 157.45.83.132\n)\n\n => Array\n(\n => 49.36.220.138\n)\n\n => Array\n(\n => 202.47.47.118\n)\n\n => Array\n(\n => 182.185.233.224\n)\n\n => Array\n(\n => 182.189.30.99\n)\n\n => Array\n(\n => 223.233.68.178\n)\n\n => Array\n(\n => 161.35.139.87\n)\n\n => Array\n(\n => 121.46.65.124\n)\n\n => Array\n(\n => 5.195.154.87\n)\n\n => Array\n(\n => 103.46.236.71\n)\n\n => Array\n(\n => 195.114.147.119\n)\n\n => Array\n(\n => 195.85.219.35\n)\n\n => Array\n(\n => 111.119.183.34\n)\n\n => Array\n(\n => 39.34.158.41\n)\n\n => Array\n(\n => 180.178.148.13\n)\n\n => Array\n(\n => 122.161.66.166\n)\n\n => Array\n(\n => 185.233.18.1\n)\n\n => Array\n(\n => 146.196.34.119\n)\n\n => Array\n(\n => 27.6.253.159\n)\n\n => Array\n(\n => 198.8.92.156\n)\n\n => Array\n(\n => 106.206.179.160\n)\n\n => Array\n(\n => 202.164.133.53\n)\n\n => Array\n(\n => 112.196.141.214\n)\n\n => Array\n(\n => 95.135.15.148\n)\n\n => Array\n(\n => 111.92.119.165\n)\n\n => Array\n(\n => 84.17.34.18\n)\n\n => Array\n(\n => 49.36.232.117\n)\n\n => Array\n(\n => 122.180.235.92\n)\n\n => Array\n(\n => 89.187.163.177\n)\n\n => Array\n(\n => 103.217.238.38\n)\n\n => Array\n(\n => 103.163.248.115\n)\n\n => Array\n(\n => 156.146.59.10\n)\n\n => Array\n(\n => 223.233.68.183\n)\n\n => Array\n(\n => 103.12.198.92\n)\n\n => Array\n(\n => 42.111.9.221\n)\n\n => Array\n(\n => 111.92.77.242\n)\n\n => Array\n(\n => 192.142.128.26\n)\n\n => Array\n(\n => 182.69.195.139\n)\n\n => Array\n(\n => 103.209.83.110\n)\n\n => Array\n(\n => 207.244.71.80\n)\n\n => Array\n(\n => 41.140.106.29\n)\n\n => Array\n(\n => 45.118.167.65\n)\n\n => Array\n(\n => 45.118.167.70\n)\n\n => Array\n(\n => 157.37.159.180\n)\n\n => Array\n(\n => 103.217.178.194\n)\n\n => Array\n(\n => 27.255.165.94\n)\n\n => Array\n(\n => 45.133.7.42\n)\n\n => Array\n(\n => 43.230.65.168\n)\n\n => Array\n(\n => 39.53.196.221\n)\n\n => Array\n(\n => 42.111.17.83\n)\n\n => Array\n(\n => 110.39.12.34\n)\n\n => Array\n(\n => 45.118.158.169\n)\n\n => Array\n(\n => 202.142.110.165\n)\n\n => Array\n(\n => 106.201.13.212\n)\n\n => Array\n(\n => 103.211.14.94\n)\n\n => Array\n(\n => 160.202.37.105\n)\n\n => Array\n(\n => 103.99.199.34\n)\n\n => Array\n(\n => 183.83.45.104\n)\n\n => Array\n(\n => 49.36.233.107\n)\n\n => Array\n(\n => 182.68.21.51\n)\n\n => Array\n(\n => 110.227.93.182\n)\n\n => Array\n(\n => 180.178.144.251\n)\n\n => Array\n(\n => 129.0.102.0\n)\n\n => Array\n(\n => 124.253.105.176\n)\n\n => Array\n(\n => 105.156.139.225\n)\n\n => Array\n(\n => 208.117.87.154\n)\n\n => Array\n(\n => 138.68.185.17\n)\n\n => Array\n(\n => 43.247.41.207\n)\n\n => Array\n(\n => 49.156.106.105\n)\n\n => Array\n(\n => 223.238.197.124\n)\n\n => Array\n(\n => 202.47.39.96\n)\n\n => Array\n(\n => 223.226.131.80\n)\n\n => Array\n(\n => 122.161.48.139\n)\n\n => Array\n(\n => 106.201.144.12\n)\n\n => Array\n(\n => 122.178.223.244\n)\n\n => Array\n(\n => 195.181.164.65\n)\n\n => Array\n(\n => 106.195.12.187\n)\n\n => Array\n(\n => 124.253.48.48\n)\n\n => Array\n(\n => 103.140.30.214\n)\n\n => Array\n(\n => 180.178.147.132\n)\n\n => Array\n(\n => 138.197.139.130\n)\n\n => Array\n(\n => 5.254.2.138\n)\n\n => Array\n(\n => 183.81.93.25\n)\n\n => Array\n(\n => 182.70.39.254\n)\n\n => Array\n(\n => 106.223.87.131\n)\n\n => Array\n(\n => 106.203.91.114\n)\n\n => Array\n(\n => 196.70.137.128\n)\n\n => Array\n(\n => 150.242.62.167\n)\n\n => Array\n(\n => 184.170.243.198\n)\n\n => Array\n(\n => 59.89.30.66\n)\n\n => Array\n(\n => 49.156.112.201\n)\n\n => Array\n(\n => 124.29.212.168\n)\n\n => Array\n(\n => 103.204.170.238\n)\n\n => Array\n(\n => 124.253.116.81\n)\n\n => Array\n(\n => 41.248.102.107\n)\n\n => Array\n(\n => 119.160.100.51\n)\n\n => Array\n(\n => 5.254.40.91\n)\n\n => Array\n(\n => 103.149.154.25\n)\n\n => Array\n(\n => 103.70.41.28\n)\n\n => Array\n(\n => 103.151.234.42\n)\n\n => Array\n(\n => 39.37.142.107\n)\n\n => Array\n(\n => 27.255.186.115\n)\n\n => Array\n(\n => 49.15.193.151\n)\n\n => Array\n(\n => 103.201.146.115\n)\n\n => Array\n(\n => 223.228.177.70\n)\n\n => Array\n(\n => 182.179.141.37\n)\n\n => Array\n(\n => 110.172.131.126\n)\n\n => Array\n(\n => 45.116.232.0\n)\n\n => Array\n(\n => 193.37.32.206\n)\n\n => Array\n(\n => 119.152.62.246\n)\n\n => Array\n(\n => 180.178.148.228\n)\n\n => Array\n(\n => 195.114.145.120\n)\n\n => Array\n(\n => 122.160.49.194\n)\n\n => Array\n(\n => 103.240.237.17\n)\n\n => Array\n(\n => 103.75.245.238\n)\n\n => Array\n(\n => 124.253.215.148\n)\n\n => Array\n(\n => 45.118.165.146\n)\n\n => Array\n(\n => 103.75.244.111\n)\n\n => Array\n(\n => 223.185.7.42\n)\n\n => Array\n(\n => 139.5.240.165\n)\n\n => Array\n(\n => 45.251.117.204\n)\n\n => Array\n(\n => 132.154.71.227\n)\n\n => Array\n(\n => 178.92.100.97\n)\n\n => Array\n(\n => 49.48.248.42\n)\n\n => Array\n(\n => 182.190.109.252\n)\n\n => Array\n(\n => 43.231.57.209\n)\n\n => Array\n(\n => 39.37.185.133\n)\n\n => Array\n(\n => 123.17.79.174\n)\n\n => Array\n(\n => 180.178.146.215\n)\n\n => Array\n(\n => 41.248.83.40\n)\n\n => Array\n(\n => 103.255.4.79\n)\n\n => Array\n(\n => 103.39.119.233\n)\n\n => Array\n(\n => 85.203.44.24\n)\n\n => Array\n(\n => 93.74.18.246\n)\n\n => Array\n(\n => 95.142.120.51\n)\n\n => Array\n(\n => 202.47.42.57\n)\n\n => Array\n(\n => 41.202.219.253\n)\n\n => Array\n(\n => 154.28.188.182\n)\n\n => Array\n(\n => 14.163.178.106\n)\n\n => Array\n(\n => 118.185.57.226\n)\n\n => Array\n(\n => 49.15.141.102\n)\n\n => Array\n(\n => 182.189.86.47\n)\n\n => Array\n(\n => 111.88.68.79\n)\n\n => Array\n(\n => 156.146.59.8\n)\n\n => Array\n(\n => 119.152.62.82\n)\n\n => Array\n(\n => 49.207.128.103\n)\n\n => Array\n(\n => 203.212.30.234\n)\n\n => Array\n(\n => 41.202.219.254\n)\n\n => Array\n(\n => 103.46.203.10\n)\n\n => Array\n(\n => 112.79.141.15\n)\n\n => Array\n(\n => 103.68.218.75\n)\n\n => Array\n(\n => 49.35.130.14\n)\n\n => Array\n(\n => 172.247.129.90\n)\n\n => Array\n(\n => 116.90.74.214\n)\n\n => Array\n(\n => 180.178.142.242\n)\n\n => Array\n(\n => 111.119.183.59\n)\n\n => Array\n(\n => 117.5.103.189\n)\n\n => Array\n(\n => 203.110.93.146\n)\n\n => Array\n(\n => 188.163.97.86\n)\n\n => Array\n(\n => 124.253.90.47\n)\n\n => Array\n(\n => 139.167.249.160\n)\n\n => Array\n(\n => 103.226.206.55\n)\n\n => Array\n(\n => 154.28.188.191\n)\n\n => Array\n(\n => 182.190.197.205\n)\n\n => Array\n(\n => 111.119.183.33\n)\n\n => Array\n(\n => 14.253.254.64\n)\n\n => Array\n(\n => 117.237.197.246\n)\n\n => Array\n(\n => 172.105.53.82\n)\n\n => Array\n(\n => 124.253.207.164\n)\n\n => Array\n(\n => 103.255.4.33\n)\n\n => Array\n(\n => 27.63.131.206\n)\n\n => Array\n(\n => 103.118.170.99\n)\n\n => Array\n(\n => 111.119.183.55\n)\n\n => Array\n(\n => 14.182.101.109\n)\n\n => Array\n(\n => 175.107.223.199\n)\n\n => Array\n(\n => 39.57.168.94\n)\n\n => Array\n(\n => 122.182.213.139\n)\n\n => Array\n(\n => 112.79.214.237\n)\n\n => Array\n(\n => 27.6.252.22\n)\n\n => Array\n(\n => 89.163.212.83\n)\n\n => Array\n(\n => 182.189.23.1\n)\n\n => Array\n(\n => 49.15.222.253\n)\n\n => Array\n(\n => 125.63.97.110\n)\n\n => Array\n(\n => 223.233.65.159\n)\n\n => Array\n(\n => 139.99.159.18\n)\n\n => Array\n(\n => 45.118.165.137\n)\n\n => Array\n(\n => 39.52.2.167\n)\n\n => Array\n(\n => 39.57.141.24\n)\n\n => Array\n(\n => 27.5.32.145\n)\n\n => Array\n(\n => 49.36.212.33\n)\n\n => Array\n(\n => 157.33.218.32\n)\n\n => Array\n(\n => 116.71.4.122\n)\n\n => Array\n(\n => 110.93.244.176\n)\n\n => Array\n(\n => 154.73.203.156\n)\n\n => Array\n(\n => 136.158.30.235\n)\n\n => Array\n(\n => 122.161.53.72\n)\n\n => Array\n(\n => 106.203.203.156\n)\n\n => Array\n(\n => 45.133.7.22\n)\n\n => Array\n(\n => 27.255.180.69\n)\n\n => Array\n(\n => 94.46.244.3\n)\n\n => Array\n(\n => 43.242.178.157\n)\n\n => Array\n(\n => 171.79.189.215\n)\n\n => Array\n(\n => 37.117.141.89\n)\n\n => Array\n(\n => 196.92.32.64\n)\n\n => Array\n(\n => 154.73.203.157\n)\n\n => Array\n(\n => 183.83.176.14\n)\n\n => Array\n(\n => 106.215.84.145\n)\n\n => Array\n(\n => 95.142.120.12\n)\n\n => Array\n(\n => 190.232.110.94\n)\n\n => Array\n(\n => 179.6.194.47\n)\n\n => Array\n(\n => 103.62.155.172\n)\n\n => Array\n(\n => 39.34.156.177\n)\n\n => Array\n(\n => 122.161.49.120\n)\n\n => Array\n(\n => 103.58.155.253\n)\n\n => Array\n(\n => 175.107.226.20\n)\n\n => Array\n(\n => 206.81.28.165\n)\n\n => Array\n(\n => 49.36.216.36\n)\n\n => Array\n(\n => 104.223.95.178\n)\n\n => Array\n(\n => 122.177.69.35\n)\n\n => Array\n(\n => 39.57.163.107\n)\n\n => Array\n(\n => 122.161.53.35\n)\n\n => Array\n(\n => 182.190.102.13\n)\n\n => Array\n(\n => 122.161.68.95\n)\n\n => Array\n(\n => 154.73.203.147\n)\n\n => Array\n(\n => 122.173.125.2\n)\n\n => Array\n(\n => 117.96.140.189\n)\n\n => Array\n(\n => 106.200.244.10\n)\n\n => Array\n(\n => 110.36.202.5\n)\n\n => Array\n(\n => 124.253.51.144\n)\n\n => Array\n(\n => 176.100.1.145\n)\n\n => Array\n(\n => 156.146.59.20\n)\n\n => Array\n(\n => 122.176.100.151\n)\n\n => Array\n(\n => 185.217.117.237\n)\n\n => Array\n(\n => 49.37.223.97\n)\n\n => Array\n(\n => 101.50.108.80\n)\n\n => Array\n(\n => 124.253.155.88\n)\n\n => Array\n(\n => 39.40.208.96\n)\n\n => Array\n(\n => 122.167.151.154\n)\n\n => Array\n(\n => 172.98.89.13\n)\n\n => Array\n(\n => 103.91.52.6\n)\n\n => Array\n(\n => 106.203.84.5\n)\n\n => Array\n(\n => 117.216.221.34\n)\n\n => Array\n(\n => 154.73.203.131\n)\n\n => Array\n(\n => 223.182.210.117\n)\n\n => Array\n(\n => 49.36.185.208\n)\n\n => Array\n(\n => 111.119.183.30\n)\n\n => Array\n(\n => 39.42.107.13\n)\n\n => Array\n(\n => 39.40.15.174\n)\n\n => Array\n(\n => 1.38.244.65\n)\n\n => Array\n(\n => 49.156.75.252\n)\n\n => Array\n(\n => 122.161.51.99\n)\n\n => Array\n(\n => 27.73.78.57\n)\n\n => Array\n(\n => 49.48.228.70\n)\n\n => Array\n(\n => 111.119.183.18\n)\n\n => Array\n(\n => 116.204.252.218\n)\n\n => Array\n(\n => 73.173.40.248\n)\n\n => Array\n(\n => 223.130.28.81\n)\n\n => Array\n(\n => 202.83.58.81\n)\n\n => Array\n(\n => 45.116.233.31\n)\n\n => Array\n(\n => 111.119.183.1\n)\n\n => Array\n(\n => 45.133.7.66\n)\n\n => Array\n(\n => 39.48.204.174\n)\n\n => Array\n(\n => 37.19.213.30\n)\n\n => Array\n(\n => 111.119.183.22\n)\n\n => Array\n(\n => 122.177.74.19\n)\n\n => Array\n(\n => 124.253.80.59\n)\n\n => Array\n(\n => 111.119.183.60\n)\n\n => Array\n(\n => 157.39.106.191\n)\n\n => Array\n(\n => 157.47.86.121\n)\n\n => Array\n(\n => 47.31.159.100\n)\n\n => Array\n(\n => 106.214.85.144\n)\n\n => Array\n(\n => 182.189.22.197\n)\n\n => Array\n(\n => 111.119.183.51\n)\n\n => Array\n(\n => 202.47.35.57\n)\n\n => Array\n(\n => 42.108.33.220\n)\n\n => Array\n(\n => 180.178.146.158\n)\n\n => Array\n(\n => 124.253.184.239\n)\n\n => Array\n(\n => 103.165.20.8\n)\n\n => Array\n(\n => 94.178.239.156\n)\n\n => Array\n(\n => 72.255.41.142\n)\n\n => Array\n(\n => 116.90.107.102\n)\n\n => Array\n(\n => 39.36.164.250\n)\n\n => Array\n(\n => 124.253.195.172\n)\n\n => Array\n(\n => 203.142.218.149\n)\n\n => Array\n(\n => 157.43.165.180\n)\n\n => Array\n(\n => 39.40.242.57\n)\n\n => Array\n(\n => 103.92.43.150\n)\n\n => Array\n(\n => 39.42.133.202\n)\n\n => Array\n(\n => 119.160.66.11\n)\n\n => Array\n(\n => 138.68.3.7\n)\n\n => Array\n(\n => 210.56.125.226\n)\n\n => Array\n(\n => 157.50.4.249\n)\n\n => Array\n(\n => 124.253.81.162\n)\n\n => Array\n(\n => 103.240.235.141\n)\n\n => Array\n(\n => 132.154.128.20\n)\n\n => Array\n(\n => 49.156.115.37\n)\n\n => Array\n(\n => 45.133.7.48\n)\n\n => Array\n(\n => 122.161.49.137\n)\n\n => Array\n(\n => 202.47.46.31\n)\n\n => Array\n(\n => 192.140.145.148\n)\n\n => Array\n(\n => 202.14.123.10\n)\n\n => Array\n(\n => 122.161.53.98\n)\n\n => Array\n(\n => 124.253.114.113\n)\n\n => Array\n(\n => 103.227.70.34\n)\n\n => Array\n(\n => 223.228.175.227\n)\n\n => Array\n(\n => 157.39.119.110\n)\n\n => Array\n(\n => 180.188.224.231\n)\n\n => Array\n(\n => 132.154.188.85\n)\n\n => Array\n(\n => 197.210.227.207\n)\n\n => Array\n(\n => 103.217.123.177\n)\n\n => Array\n(\n => 124.253.85.31\n)\n\n => Array\n(\n => 123.201.105.97\n)\n\n => Array\n(\n => 39.57.190.37\n)\n\n => Array\n(\n => 202.63.205.248\n)\n\n => Array\n(\n => 122.161.51.100\n)\n\n => Array\n(\n => 39.37.163.97\n)\n\n => Array\n(\n => 43.231.57.173\n)\n\n => Array\n(\n => 223.225.135.169\n)\n\n => Array\n(\n => 119.160.71.136\n)\n\n => Array\n(\n => 122.165.114.93\n)\n\n => Array\n(\n => 47.11.77.102\n)\n\n => Array\n(\n => 49.149.107.198\n)\n\n => Array\n(\n => 192.111.134.206\n)\n\n => Array\n(\n => 182.64.102.43\n)\n\n => Array\n(\n => 124.253.184.111\n)\n\n => Array\n(\n => 171.237.97.228\n)\n\n => Array\n(\n => 117.237.237.101\n)\n\n => Array\n(\n => 49.36.33.19\n)\n\n => Array\n(\n => 103.31.101.241\n)\n\n => Array\n(\n => 129.0.207.203\n)\n\n => Array\n(\n => 157.39.122.155\n)\n\n => Array\n(\n => 197.210.85.120\n)\n\n => Array\n(\n => 124.253.219.201\n)\n\n => Array\n(\n => 152.57.75.92\n)\n\n => Array\n(\n => 169.149.195.121\n)\n\n => Array\n(\n => 198.16.76.27\n)\n\n => Array\n(\n => 157.43.192.188\n)\n\n => Array\n(\n => 119.155.244.221\n)\n\n => Array\n(\n => 39.51.242.216\n)\n\n => Array\n(\n => 39.57.180.158\n)\n\n => Array\n(\n => 134.202.32.5\n)\n\n => Array\n(\n => 122.176.139.205\n)\n\n => Array\n(\n => 151.243.50.9\n)\n\n => Array\n(\n => 39.52.99.161\n)\n\n => Array\n(\n => 136.144.33.95\n)\n\n => Array\n(\n => 157.37.205.216\n)\n\n => Array\n(\n => 217.138.220.134\n)\n\n => Array\n(\n => 41.140.106.65\n)\n\n => Array\n(\n => 39.37.253.126\n)\n\n => Array\n(\n => 103.243.44.240\n)\n\n => Array\n(\n => 157.46.169.29\n)\n\n => Array\n(\n => 92.119.177.122\n)\n\n => Array\n(\n => 196.240.60.21\n)\n\n => Array\n(\n => 122.161.6.246\n)\n\n => Array\n(\n => 117.202.162.46\n)\n\n => Array\n(\n => 205.164.137.120\n)\n\n => Array\n(\n => 171.237.79.241\n)\n\n => Array\n(\n => 198.16.76.28\n)\n\n => Array\n(\n => 103.100.4.151\n)\n\n => Array\n(\n => 178.239.162.236\n)\n\n => Array\n(\n => 106.197.31.240\n)\n\n => Array\n(\n => 122.168.179.251\n)\n\n => Array\n(\n => 39.37.167.126\n)\n\n => Array\n(\n => 171.48.8.115\n)\n\n => Array\n(\n => 157.44.152.14\n)\n\n => Array\n(\n => 103.77.43.219\n)\n\n => Array\n(\n => 122.161.49.38\n)\n\n => Array\n(\n => 122.161.52.83\n)\n\n => Array\n(\n => 122.173.108.210\n)\n\n => Array\n(\n => 60.254.109.92\n)\n\n => Array\n(\n => 103.57.85.75\n)\n\n => Array\n(\n => 106.0.58.36\n)\n\n => Array\n(\n => 122.161.49.212\n)\n\n => Array\n(\n => 27.255.182.159\n)\n\n => Array\n(\n => 116.75.230.159\n)\n\n => Array\n(\n => 122.173.152.133\n)\n\n => Array\n(\n => 129.0.79.247\n)\n\n => Array\n(\n => 223.228.163.44\n)\n\n => Array\n(\n => 103.168.78.82\n)\n\n => Array\n(\n => 39.59.67.124\n)\n\n => Array\n(\n => 182.69.19.120\n)\n\n => Array\n(\n => 196.202.236.195\n)\n\n => Array\n(\n => 137.59.225.206\n)\n\n => Array\n(\n => 143.110.209.194\n)\n\n => Array\n(\n => 117.201.233.91\n)\n\n => Array\n(\n => 37.120.150.107\n)\n\n => Array\n(\n => 58.65.222.10\n)\n\n => Array\n(\n => 202.47.43.86\n)\n\n => Array\n(\n => 106.206.223.234\n)\n\n => Array\n(\n => 5.195.153.158\n)\n\n => Array\n(\n => 223.227.127.243\n)\n\n => Array\n(\n => 103.165.12.222\n)\n\n => Array\n(\n => 49.36.185.189\n)\n\n => Array\n(\n => 59.96.92.57\n)\n\n => Array\n(\n => 203.194.104.235\n)\n\n => Array\n(\n => 122.177.72.33\n)\n\n => Array\n(\n => 106.213.126.40\n)\n\n => Array\n(\n => 45.127.232.69\n)\n\n => Array\n(\n => 156.146.59.39\n)\n\n => Array\n(\n => 103.21.184.11\n)\n\n => Array\n(\n => 106.212.47.59\n)\n\n => Array\n(\n => 182.179.137.235\n)\n\n => Array\n(\n => 49.36.178.154\n)\n\n => Array\n(\n => 171.48.7.128\n)\n\n => Array\n(\n => 119.160.57.96\n)\n\n => Array\n(\n => 197.210.79.92\n)\n\n => Array\n(\n => 36.255.45.87\n)\n\n => Array\n(\n => 47.31.219.47\n)\n\n => Array\n(\n => 122.161.51.160\n)\n\n => Array\n(\n => 103.217.123.129\n)\n\n => Array\n(\n => 59.153.16.12\n)\n\n => Array\n(\n => 103.92.43.226\n)\n\n => Array\n(\n => 47.31.139.139\n)\n\n => Array\n(\n => 210.2.140.18\n)\n\n => Array\n(\n => 106.210.33.219\n)\n\n => Array\n(\n => 175.107.203.34\n)\n\n => Array\n(\n => 146.196.32.144\n)\n\n => Array\n(\n => 103.12.133.121\n)\n\n => Array\n(\n => 103.59.208.182\n)\n\n => Array\n(\n => 157.37.190.232\n)\n\n => Array\n(\n => 106.195.35.201\n)\n\n => Array\n(\n => 27.122.14.83\n)\n\n => Array\n(\n => 194.193.44.5\n)\n\n => Array\n(\n => 5.62.43.245\n)\n\n => Array\n(\n => 103.53.80.50\n)\n\n => Array\n(\n => 47.29.142.233\n)\n\n => Array\n(\n => 154.6.20.63\n)\n\n => Array\n(\n => 173.245.203.128\n)\n\n => Array\n(\n => 103.77.43.231\n)\n\n => Array\n(\n => 5.107.166.235\n)\n\n => Array\n(\n => 106.212.44.123\n)\n\n => Array\n(\n => 157.41.60.93\n)\n\n => Array\n(\n => 27.58.179.79\n)\n\n => Array\n(\n => 157.37.167.144\n)\n\n => Array\n(\n => 119.160.57.115\n)\n\n => Array\n(\n => 122.161.53.224\n)\n\n => Array\n(\n => 49.36.233.51\n)\n\n => Array\n(\n => 101.0.32.8\n)\n\n => Array\n(\n => 119.160.103.158\n)\n\n => Array\n(\n => 122.177.79.115\n)\n\n => Array\n(\n => 107.181.166.27\n)\n\n => Array\n(\n => 183.6.0.125\n)\n\n => Array\n(\n => 49.36.186.0\n)\n\n => Array\n(\n => 202.181.5.4\n)\n\n => Array\n(\n => 45.118.165.144\n)\n\n => Array\n(\n => 171.96.157.133\n)\n\n => Array\n(\n => 222.252.51.163\n)\n\n => Array\n(\n => 103.81.215.162\n)\n\n => Array\n(\n => 110.225.93.208\n)\n\n => Array\n(\n => 122.161.48.200\n)\n\n => Array\n(\n => 119.63.138.173\n)\n\n => Array\n(\n => 202.83.58.208\n)\n\n => Array\n(\n => 122.161.53.101\n)\n\n => Array\n(\n => 137.97.95.21\n)\n\n => Array\n(\n => 112.204.167.123\n)\n\n => Array\n(\n => 122.180.21.151\n)\n\n => Array\n(\n => 103.120.44.108\n)\n\n => Array\n(\n => 49.37.220.174\n)\n\n => Array\n(\n => 1.55.255.124\n)\n\n => Array\n(\n => 23.227.140.173\n)\n\n => Array\n(\n => 43.248.153.110\n)\n\n => Array\n(\n => 106.214.93.101\n)\n\n => Array\n(\n => 103.83.149.36\n)\n\n => Array\n(\n => 103.217.123.57\n)\n\n => Array\n(\n => 193.9.113.119\n)\n\n => Array\n(\n => 14.182.57.204\n)\n\n => Array\n(\n => 117.201.231.0\n)\n\n => Array\n(\n => 14.99.198.186\n)\n\n => Array\n(\n => 36.255.44.204\n)\n\n => Array\n(\n => 103.160.236.42\n)\n\n => Array\n(\n => 31.202.16.116\n)\n\n => Array\n(\n => 223.239.49.201\n)\n\n => Array\n(\n => 122.161.102.149\n)\n\n => Array\n(\n => 117.196.123.184\n)\n\n => Array\n(\n => 49.205.112.105\n)\n\n => Array\n(\n => 103.244.176.201\n)\n\n => Array\n(\n => 95.216.15.219\n)\n\n => Array\n(\n => 103.107.196.174\n)\n\n => Array\n(\n => 203.190.34.65\n)\n\n => Array\n(\n => 23.227.140.182\n)\n\n => Array\n(\n => 171.79.74.74\n)\n\n => Array\n(\n => 106.206.223.244\n)\n\n => Array\n(\n => 180.151.28.140\n)\n\n => Array\n(\n => 165.225.124.114\n)\n\n => Array\n(\n => 106.206.223.252\n)\n\n => Array\n(\n => 39.62.23.38\n)\n\n => Array\n(\n => 112.211.252.33\n)\n\n => Array\n(\n => 146.70.66.242\n)\n\n => Array\n(\n => 222.252.51.38\n)\n\n => Array\n(\n => 122.162.151.223\n)\n\n => Array\n(\n => 180.178.154.100\n)\n\n => Array\n(\n => 180.94.33.94\n)\n\n => Array\n(\n => 205.164.130.82\n)\n\n => Array\n(\n => 117.196.114.167\n)\n\n => Array\n(\n => 43.224.0.189\n)\n\n => Array\n(\n => 154.6.20.59\n)\n\n => Array\n(\n => 122.161.131.67\n)\n\n => Array\n(\n => 70.68.68.159\n)\n\n => Array\n(\n => 103.125.130.200\n)\n\n => Array\n(\n => 43.242.176.147\n)\n\n => Array\n(\n => 129.0.102.29\n)\n\n => Array\n(\n => 182.64.180.32\n)\n\n => Array\n(\n => 110.93.250.196\n)\n\n => Array\n(\n => 139.135.57.197\n)\n\n => Array\n(\n => 157.33.219.2\n)\n\n => Array\n(\n => 205.253.123.239\n)\n\n => Array\n(\n => 122.177.66.119\n)\n\n => Array\n(\n => 182.64.105.252\n)\n\n => Array\n(\n => 14.97.111.154\n)\n\n => Array\n(\n => 146.196.35.35\n)\n\n => Array\n(\n => 103.167.162.205\n)\n\n => Array\n(\n => 37.111.130.245\n)\n\n => Array\n(\n => 49.228.51.196\n)\n\n => Array\n(\n => 157.39.148.205\n)\n\n => Array\n(\n => 129.0.102.28\n)\n\n => Array\n(\n => 103.82.191.229\n)\n\n => Array\n(\n => 194.104.23.140\n)\n\n => Array\n(\n => 49.205.193.252\n)\n\n => Array\n(\n => 222.252.33.119\n)\n\n => Array\n(\n => 173.255.132.114\n)\n\n => Array\n(\n => 182.64.148.162\n)\n\n => Array\n(\n => 175.176.87.8\n)\n\n => Array\n(\n => 5.62.57.6\n)\n\n => Array\n(\n => 119.160.96.229\n)\n\n => Array\n(\n => 49.205.180.226\n)\n\n => Array\n(\n => 95.142.120.59\n)\n\n => Array\n(\n => 183.82.116.204\n)\n\n => Array\n(\n => 202.89.69.186\n)\n\n => Array\n(\n => 39.48.165.36\n)\n\n => Array\n(\n => 192.140.149.81\n)\n\n => Array\n(\n => 198.16.70.28\n)\n\n => Array\n(\n => 103.25.250.236\n)\n\n => Array\n(\n => 106.76.202.244\n)\n\n => Array\n(\n => 47.8.8.165\n)\n\n => Array\n(\n => 202.5.145.213\n)\n\n => Array\n(\n => 106.212.188.243\n)\n\n => Array\n(\n => 106.215.89.2\n)\n\n => Array\n(\n => 119.82.83.148\n)\n\n => Array\n(\n => 123.24.164.245\n)\n\n => Array\n(\n => 187.67.51.106\n)\n\n => Array\n(\n => 117.196.119.95\n)\n\n => Array\n(\n => 95.142.120.66\n)\n\n => Array\n(\n => 156.146.59.35\n)\n\n => Array\n(\n => 49.205.213.148\n)\n\n => Array\n(\n => 111.223.27.206\n)\n\n => Array\n(\n => 49.205.212.86\n)\n\n => Array\n(\n => 103.77.42.103\n)\n\n => Array\n(\n => 110.227.62.25\n)\n\n => Array\n(\n => 122.179.54.140\n)\n\n => Array\n(\n => 157.39.239.81\n)\n\n => Array\n(\n => 138.128.27.234\n)\n\n => Array\n(\n => 103.244.176.194\n)\n\n => Array\n(\n => 130.105.10.127\n)\n\n => Array\n(\n => 103.116.250.191\n)\n\n => Array\n(\n => 122.180.186.6\n)\n\n => Array\n(\n => 101.53.228.52\n)\n\n => Array\n(\n => 39.57.138.90\n)\n\n => Array\n(\n => 197.156.137.165\n)\n\n => Array\n(\n => 49.37.155.78\n)\n\n => Array\n(\n => 39.59.81.32\n)\n\n => Array\n(\n => 45.127.44.78\n)\n\n => Array\n(\n => 103.58.155.83\n)\n\n => Array\n(\n => 175.107.220.20\n)\n\n => Array\n(\n => 14.255.9.197\n)\n\n => Array\n(\n => 103.55.63.146\n)\n\n => Array\n(\n => 49.205.138.81\n)\n\n => Array\n(\n => 45.35.222.243\n)\n\n => Array\n(\n => 203.190.34.57\n)\n\n => Array\n(\n => 205.253.121.11\n)\n\n => Array\n(\n => 154.72.171.177\n)\n\n => Array\n(\n => 39.52.203.37\n)\n\n => Array\n(\n => 122.161.52.2\n)\n\n => Array\n(\n => 82.145.41.170\n)\n\n => Array\n(\n => 103.217.123.33\n)\n\n => Array\n(\n => 103.150.238.100\n)\n\n => Array\n(\n => 125.99.11.182\n)\n\n => Array\n(\n => 103.217.178.70\n)\n\n => Array\n(\n => 197.210.227.95\n)\n\n => Array\n(\n => 116.75.212.153\n)\n\n => Array\n(\n => 212.102.42.202\n)\n\n => Array\n(\n => 49.34.177.147\n)\n\n => Array\n(\n => 173.242.123.110\n)\n\n => Array\n(\n => 49.36.35.254\n)\n\n => Array\n(\n => 202.47.59.82\n)\n\n => Array\n(\n => 157.42.197.119\n)\n\n => Array\n(\n => 103.99.196.250\n)\n\n => Array\n(\n => 119.155.228.244\n)\n\n => Array\n(\n => 130.105.160.170\n)\n\n => Array\n(\n => 78.132.235.189\n)\n\n => Array\n(\n => 202.142.186.114\n)\n\n => Array\n(\n => 115.99.156.136\n)\n\n => Array\n(\n => 14.162.166.254\n)\n\n => Array\n(\n => 157.39.133.205\n)\n\n => Array\n(\n => 103.196.139.157\n)\n\n => Array\n(\n => 139.99.159.20\n)\n\n => Array\n(\n => 175.176.87.42\n)\n\n => Array\n(\n => 103.46.202.244\n)\n\n => Array\n(\n => 175.176.87.16\n)\n\n => Array\n(\n => 49.156.85.55\n)\n\n => Array\n(\n => 157.39.101.65\n)\n\n => Array\n(\n => 124.253.195.93\n)\n\n => Array\n(\n => 110.227.59.8\n)\n\n => Array\n(\n => 157.50.50.6\n)\n\n => Array\n(\n => 95.142.120.25\n)\n\n => Array\n(\n => 49.36.186.141\n)\n\n => Array\n(\n => 110.227.54.161\n)\n\n => Array\n(\n => 88.117.62.180\n)\n\n => Array\n(\n => 110.227.57.8\n)\n\n => Array\n(\n => 106.200.36.21\n)\n\n => Array\n(\n => 202.131.143.247\n)\n\n => Array\n(\n => 103.46.202.4\n)\n\n => Array\n(\n => 122.177.78.217\n)\n\n => Array\n(\n => 124.253.195.201\n)\n\n => Array\n(\n => 27.58.17.91\n)\n\n => Array\n(\n => 223.228.143.162\n)\n\n => Array\n(\n => 119.160.96.233\n)\n\n => Array\n(\n => 49.156.69.213\n)\n\n => Array\n(\n => 41.80.97.54\n)\n\n => Array\n(\n => 122.176.207.193\n)\n\n => Array\n(\n => 45.118.156.6\n)\n\n => Array\n(\n => 157.39.154.210\n)\n\n => Array\n(\n => 103.48.197.173\n)\n\n => Array\n(\n => 103.46.202.98\n)\n\n => Array\n(\n => 157.43.214.102\n)\n\n => Array\n(\n => 180.191.125.73\n)\n\n => Array\n(\n => 157.39.57.227\n)\n\n => Array\n(\n => 119.152.107.157\n)\n\n => Array\n(\n => 103.166.58.254\n)\n\n => Array\n(\n => 139.135.54.30\n)\n\n => Array\n(\n => 185.199.102.101\n)\n\n => Array\n(\n => 59.103.204.4\n)\n\n => Array\n(\n => 202.14.123.34\n)\n\n => Array\n(\n => 103.48.197.243\n)\n\n => Array\n(\n => 39.34.158.129\n)\n\n => Array\n(\n => 156.146.59.38\n)\n\n => Array\n(\n => 110.227.51.220\n)\n\n => Array\n(\n => 157.45.123.212\n)\n\n => Array\n(\n => 110.227.52.20\n)\n\n => Array\n(\n => 43.242.176.136\n)\n\n => Array\n(\n => 223.233.71.146\n)\n\n => Array\n(\n => 216.73.160.38\n)\n\n => Array\n(\n => 103.217.178.136\n)\n\n => Array\n(\n => 116.71.2.6\n)\n\n => Array\n(\n => 182.180.126.109\n)\n\n => Array\n(\n => 39.53.148.157\n)\n\n => Array\n(\n => 42.108.5.233\n)\n\n => Array\n(\n => 106.66.3.13\n)\n\n => Array\n(\n => 122.177.70.225\n)\n\n => Array\n(\n => 124.253.153.145\n)\n\n => Array\n(\n => 27.58.82.70\n)\n\n => Array\n(\n => 180.149.241.195\n)\n\n => Array\n(\n => 106.201.27.247\n)\n\n => Array\n(\n => 110.227.55.161\n)\n\n => Array\n(\n => 157.39.27.241\n)\n\n => Array\n(\n => 119.157.73.172\n)\n\n => Array\n(\n => 139.167.175.124\n)\n\n => Array\n(\n => 103.224.35.251\n)\n\n => Array\n(\n => 103.16.30.236\n)\n\n => Array\n(\n => 110.227.62.54\n)\n\n => Array\n(\n => 39.34.159.83\n)\n\n => Array\n(\n => 223.233.72.228\n)\n\n => Array\n(\n => 110.227.61.118\n)\n\n => Array\n(\n => 202.142.146.254\n)\n\n => Array\n(\n => 39.57.211.201\n)\n\n => Array\n(\n => 103.150.238.78\n)\n\n => Array\n(\n => 157.38.90.66\n)\n\n => Array\n(\n => 205.253.127.236\n)\n\n => Array\n(\n => 157.47.11.111\n)\n\n => Array\n(\n => 122.161.49.87\n)\n\n => Array\n(\n => 110.227.53.55\n)\n\n => Array\n(\n => 125.209.112.14\n)\n\n => Array\n(\n => 146.196.34.86\n)\n\n => Array\n(\n => 212.102.60.173\n)\n\n => Array\n(\n => 103.48.197.213\n)\n\n => Array\n(\n => 37.111.248.140\n)\n\n => Array\n(\n => 125.99.220.195\n)\n\n => Array\n(\n => 202.47.40.5\n)\n\n => Array\n(\n => 49.206.117.79\n)\n\n => Array\n(\n => 103.16.30.237\n)\n\n => Array\n(\n => 122.161.237.115\n)\n\n => Array\n(\n => 110.227.55.14\n)\n\n => Array\n(\n => 157.39.61.222\n)\n\n => Array\n(\n => 49.15.201.99\n)\n\n => Array\n(\n => 103.48.197.125\n)\n\n => Array\n(\n => 49.36.209.138\n)\n\n => Array\n(\n => 184.75.211.148\n)\n\n => Array\n(\n => 122.176.203.217\n)\n\n => Array\n(\n => 183.83.217.201\n)\n\n => Array\n(\n => 110.227.55.131\n)\n\n => Array\n(\n => 103.39.116.83\n)\n\n => Array\n(\n => 72.255.36.239\n)\n\n => Array\n(\n => 103.18.170.97\n)\n\n => Array\n(\n => 113.191.28.233\n)\n\n => Array\n(\n => 157.45.60.175\n)\n\n => Array\n(\n => 49.37.215.143\n)\n\n => Array\n(\n => 103.48.197.184\n)\n\n => Array\n(\n => 103.48.67.155\n)\n\n => Array\n(\n => 103.244.178.248\n)\n\n => Array\n(\n => 81.92.203.92\n)\n\n => Array\n(\n => 194.71.227.72\n)\n\n => Array\n(\n => 39.57.225.212\n)\n\n => Array\n(\n => 223.233.78.41\n)\n\n => Array\n(\n => 210.89.58.87\n)\n\n => Array\n(\n => 39.57.253.146\n)\n\n => Array\n(\n => 132.154.171.12\n)\n\n => Array\n(\n => 39.59.5.11\n)\n\n => Array\n(\n => 49.156.111.206\n)\n\n => Array\n(\n => 223.233.70.184\n)\n\n => Array\n(\n => 103.99.12.161\n)\n\n => Array\n(\n => 122.161.75.127\n)\n\n => Array\n(\n => 154.6.17.167\n)\n\n => Array\n(\n => 122.180.182.155\n)\n\n => Array\n(\n => 103.150.27.242\n)\n\n => Array\n(\n => 111.88.100.37\n)\n\n => Array\n(\n => 103.46.202.226\n)\n\n => Array\n(\n => 49.37.153.19\n)\n\n => Array\n(\n => 59.103.106.175\n)\n\n => Array\n(\n => 223.233.69.225\n)\n\n => Array\n(\n => 47.15.16.32\n)\n\n => Array\n(\n => 68.235.33.144\n)\n\n => Array\n(\n => 175.107.235.13\n)\n\n => Array\n(\n => 103.102.123.3\n)\n\n => Array\n(\n => 124.253.42.245\n)\n\n => Array\n(\n => 122.176.206.47\n)\n\n => Array\n(\n => 103.99.12.174\n)\n\n => Array\n(\n => 157.47.87.185\n)\n\n => Array\n(\n => 185.212.168.140\n)\n\n => Array\n(\n => 128.199.22.216\n)\n\n => Array\n(\n => 89.232.35.12\n)\n\n => Array\n(\n => 27.147.205.190\n)\n\n => Array\n(\n => 14.177.165.23\n)\n\n => Array\n(\n => 103.99.12.171\n)\n\n => Array\n(\n => 103.212.158.118\n)\n\n => Array\n(\n => 157.39.57.48\n)\n\n => Array\n(\n => 27.58.8.185\n)\n\n => Array\n(\n => 27.255.165.154\n)\n\n => Array\n(\n => 49.207.195.198\n)\n\n => Array\n(\n => 202.143.116.253\n)\n\n => Array\n(\n => 157.39.43.206\n)\n\n => Array\n(\n => 124.253.226.92\n)\n\n => Array\n(\n => 157.39.31.58\n)\n\n => Array\n(\n => 122.161.50.210\n)\n\n => Array\n(\n => 195.206.169.201\n)\n\n => Array\n(\n => 223.228.182.16\n)\n\n => Array\n(\n => 45.115.104.215\n)\n\n => Array\n(\n => 72.255.43.59\n)\n\n => Array\n(\n => 103.31.100.248\n)\n\n => Array\n(\n => 124.253.203.239\n)\n\n => Array\n(\n => 47.9.89.148\n)\n\n => Array\n(\n => 112.196.174.206\n)\n\n => Array\n(\n => 183.82.0.22\n)\n\n => Array\n(\n => 103.198.97.150\n)\n\n => Array\n(\n => 103.166.150.48\n)\n\n => Array\n(\n => 43.242.178.203\n)\n\n => Array\n(\n => 103.244.179.176\n)\n\n => Array\n(\n => 122.177.76.132\n)\n\n => Array\n(\n => 223.178.211.71\n)\n\n => Array\n(\n => 39.57.147.246\n)\n\n => Array\n(\n => 117.99.196.22\n)\n\n => Array\n(\n => 203.212.30.241\n)\n\n => Array\n(\n => 180.195.208.38\n)\n\n => Array\n(\n => 122.176.196.31\n)\n\n => Array\n(\n => 157.34.63.20\n)\n\n => Array\n(\n => 157.37.181.194\n)\n\n => Array\n(\n => 1.37.81.200\n)\n\n => Array\n(\n => 115.97.194.237\n)\n\n => Array\n(\n => 146.70.46.30\n)\n\n => Array\n(\n => 42.113.204.159\n)\n\n => Array\n(\n => 59.88.116.16\n)\n\n => Array\n(\n => 103.31.94.20\n)\n\n => Array\n(\n => 42.113.157.49\n)\n\n => Array\n(\n => 115.97.141.167\n)\n\n => Array\n(\n => 154.72.169.33\n)\n\n => Array\n(\n => 103.99.12.164\n)\n\n => Array\n(\n => 120.29.98.198\n)\n\n => Array\n(\n => 37.120.197.37\n)\n\n => Array\n(\n => 198.16.66.157\n)\n\n => Array\n(\n => 27.6.200.177\n)\n\n => Array\n(\n => 182.190.206.136\n)\n\n => Array\n(\n => 120.29.98.174\n)\n\n => Array\n(\n => 193.34.232.24\n)\n\n => Array\n(\n => 27.6.201.83\n)\n\n => Array\n(\n => 202.47.45.186\n)\n\n => Array\n(\n => 39.42.36.181\n)\n\n => Array\n(\n => 103.49.200.43\n)\n\n => Array\n(\n => 37.19.218.8\n)\n\n => Array\n(\n => 49.37.191.10\n)\n\n => Array\n(\n => 212.102.46.68\n)\n\n => Array\n(\n => 39.59.62.91\n)\n\n => Array\n(\n => 43.239.205.65\n)\n\n => Array\n(\n => 122.2.72.187\n)\n\n => Array\n(\n => 193.19.109.23\n)\n\n => Array\n(\n => 136.185.37.86\n)\n\n => Array\n(\n => 103.246.41.8\n)\n\n => Array\n(\n => 103.174.242.77\n)\n\n => Array\n(\n => 39.59.4.29\n)\n\n => Array\n(\n => 49.36.222.31\n)\n\n => Array\n(\n => 49.36.178.90\n)\n\n => Array\n(\n => 180.190.65.169\n)\n\n => Array\n(\n => 27.6.205.158\n)\n\n => Array\n(\n => 122.161.48.3\n)\n\n => Array\n(\n => 183.83.212.172\n)\n\n => Array\n(\n => 157.36.118.177\n)\n\n => Array\n(\n => 106.213.54.136\n)\n\n => Array\n(\n => 27.6.206.142\n)\n\n => Array\n(\n => 116.107.29.76\n)\n\n => Array\n(\n => 59.103.191.90\n)\n\n => Array\n(\n => 59.94.175.89\n)\n\n => Array\n(\n => 103.59.75.148\n)\n\n => Array\n(\n => 103.46.202.183\n)\n\n => Array\n(\n => 112.196.174.165\n)\n\n => Array\n(\n => 198.16.66.197\n)\n\n => Array\n(\n => 161.35.139.97\n)\n\n => Array\n(\n => 171.79.95.100\n)\n\n => Array\n(\n => 117.96.212.111\n)\n\n => Array\n(\n => 103.172.104.34\n)\n\n => Array\n(\n => 106.51.241.222\n)\n\n => Array\n(\n => 154.192.111.60\n)\n\n => Array\n(\n => 37.57.81.26\n)\n\n => Array\n(\n => 185.204.1.237\n)\n\n => Array\n(\n => 73.71.18.199\n)\n\n => Array\n(\n => 184.170.245.5\n)\n\n => Array\n(\n => 180.241.46.14\n)\n\n => Array\n(\n => 47.31.236.198\n)\n\n => Array\n(\n => 157.47.38.99\n)\n\n => Array\n(\n => 103.99.12.168\n)\n\n => Array\n(\n => 23.106.56.14\n)\n\n => Array\n(\n => 103.99.12.160\n)\n\n => Array\n(\n => 79.153.17.250\n)\n\n => Array\n(\n => 103.203.255.8\n)\n\n => Array\n(\n => 115.186.159.145\n)\n\n)\n\\$55.97 closer to a tiki bar!: Thrift-o-rama\n Layout: Blue and Brown (Default) Author's Creation\n Home > \\$55.97 closer to a tiki bar!\n\n\\$55.97 closer to a tiki bar!\n\nJanuary 26th, 2008 at 10:31 pm\n\nThanks to some craft sales and another Amazon book sale, I'm adding another \\$55.97 to the Tiki Bar fund. It isn't a lot, but it sure feels good to make some progress! I've also decided to raise the Tiki Bar Fund savings goal to \\$1,500, since I'm almost half way to my original goal of \\$1,000.\n\n2 Responses to “\\$55.97 closer to a tiki bar!”\n\n1. koppur Says:\n1201456178\n\nvery nice! what do you craft?\n\n2. thriftorama Says:\n1201548329\n\nAll kinds of things. Right now, I'm mostly making \"monster\" theme tote bags and reusable grocery bags. In the past, I've made a lot of buttons, pins and jewelry. I'm likely going to be taking those up again.\n\n(Note: If you were logged in, we could automatically fill in these fields for you.)\n Name: * Email: Will not be published. Subscribe: Notify me of additional comments to this entry. URL: Verification: * Please spell out the number 4. [ Why? ]\n\nvB Code: You can use these tags: [b] [i] [u] [url] [email]"
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9697236,"math_prob":0.99945694,"size":436,"snap":"2022-05-2022-21","text_gpt3_token_len":142,"char_repetition_ratio":0.12037037,"word_repetition_ratio":0.0,"special_character_ratio":0.39449543,"punctuation_ratio":0.16037735,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9997626,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-01-24T16:59:17Z\",\"WARC-Record-ID\":\"<urn:uuid:c1323ec8-84fd-4925-987f-cce51b74f4df>\",\"Content-Length\":\"346423\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:3be413a4-a6a4-4270-b78c-1a90dc00df68>\",\"WARC-Concurrent-To\":\"<urn:uuid:14c5523f-6199-4d08-bd47-46d207d74378>\",\"WARC-IP-Address\":\"173.231.200.26\",\"WARC-Target-URI\":\"https://thriftorama.savingadvice.com/2008/01/26/5597-closer-to-a-tiki-bar_34733/\",\"WARC-Payload-Digest\":\"sha1:BP5VSO7QGYRZJ74TCCES7KAOL4I2SY7M\",\"WARC-Block-Digest\":\"sha1:KYBGNS4IDFNCGNYM33QPKYJM4GRNSZ4M\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-05/CC-MAIN-2022-05_segments_1642320304572.73_warc_CC-MAIN-20220124155118-20220124185118-00518.warc.gz\"}"} |
https://math.libretexts.org/Bookshelves/Calculus/Map%3A_Calculus_-_Early_Transcendentals_(Stewart)/05%3A_Integrals/5.01%3A_Areas_and_Distances | [
"$$\\newcommand{\\id}{\\mathrm{id}}$$ $$\\newcommand{\\Span}{\\mathrm{span}}$$ $$\\newcommand{\\kernel}{\\mathrm{null}\\,}$$ $$\\newcommand{\\range}{\\mathrm{range}\\,}$$ $$\\newcommand{\\RealPart}{\\mathrm{Re}}$$ $$\\newcommand{\\ImaginaryPart}{\\mathrm{Im}}$$ $$\\newcommand{\\Argument}{\\mathrm{Arg}}$$ $$\\newcommand{\\norm}{\\| #1 \\|}$$ $$\\newcommand{\\inner}{\\langle #1, #2 \\rangle}$$ $$\\newcommand{\\Span}{\\mathrm{span}}$$\n\n# 5.1: Areas and Distances\n\n$$\\newcommand{\\vecs}{\\overset { \\rightharpoonup} {\\mathbf{#1}} }$$ $$\\newcommand{\\vecd}{\\overset{-\\!-\\!\\rightharpoonup}{\\vphantom{a}\\smash {#1}}}$$$$\\newcommand{\\id}{\\mathrm{id}}$$ $$\\newcommand{\\Span}{\\mathrm{span}}$$ $$\\newcommand{\\kernel}{\\mathrm{null}\\,}$$ $$\\newcommand{\\range}{\\mathrm{range}\\,}$$ $$\\newcommand{\\RealPart}{\\mathrm{Re}}$$ $$\\newcommand{\\ImaginaryPart}{\\mathrm{Im}}$$ $$\\newcommand{\\Argument}{\\mathrm{Arg}}$$ $$\\newcommand{\\norm}{\\| #1 \\|}$$ $$\\newcommand{\\inner}{\\langle #1, #2 \\rangle}$$ $$\\newcommand{\\Span}{\\mathrm{span}}$$ $$\\newcommand{\\id}{\\mathrm{id}}$$ $$\\newcommand{\\Span}{\\mathrm{span}}$$ $$\\newcommand{\\kernel}{\\mathrm{null}\\,}$$ $$\\newcommand{\\range}{\\mathrm{range}\\,}$$ $$\\newcommand{\\RealPart}{\\mathrm{Re}}$$ $$\\newcommand{\\ImaginaryPart}{\\mathrm{Im}}$$ $$\\newcommand{\\Argument}{\\mathrm{Arg}}$$ $$\\newcommand{\\norm}{\\| #1 \\|}$$ $$\\newcommand{\\inner}{\\langle #1, #2 \\rangle}$$ $$\\newcommand{\\Span}{\\mathrm{span}}$$\n\nLearning Objectives\n\n• Use sigma (summation) notation to calculate sums and powers of integers.\n• Use the sum of rectangular areas to approximate the area under a curve.\n• Use Riemann sums to approximate area.\n\nArchimedes was fascinated with calculating the areas of various shapes—in other words, the amount of space enclosed by the shape. He used a process that has come to be known as the method of exhaustion, which used smaller and smaller shapes, the areas of which could be calculated exactly, to fill an irregular region and thereby obtain closer and closer approximations to the total area. In this process, an area bounded by curves is filled with rectangles, triangles, and shapes with exact area formulas. These areas are then summed to approximate the area of the curved region.\n\nIn this section, we develop techniques to approximate the area between a curve, defined by a function $$f(x),$$ and the x-axis on a closed interval $$[a,b].$$ Like Archimedes, we first approximate the area under the curve using shapes of known area (namely, rectangles). By using smaller and smaller rectangles, we get closer and closer approximations to the area. Taking a limit allows us to calculate the exact area under the curve.\n\nLet’s start by introducing some notation to make the calculations easier. We then consider the case when $$f(x)$$ is continuous and nonnegative. Later in the chapter, we relax some of these restrictions and develop techniques that apply in more general cases.\n\n## Sigma (Summation) Notation\n\nAs mentioned, we will use shapes of known area to approximate the area of an irregular region bounded by curves. This process often requires adding up long strings of numbers. To make it easier to write down these lengthy sums, we look at some new notation here, called sigma notation (also known as summation notation). The Greek capital letter $$Σ$$, sigma, is used to express long sums of values in a compact form. For example, if we want to add all the integers from 1 to 20 without sigma notation, we have to write\n\n$1+2+3+4+5+6+7+8+9+10+11+12+13+14+15+16+17+18+19+20.$\n\nWe could probably skip writing a couple of terms and write\n\n$1+2+3+4+⋯+19+20,$\n\nwhich is better, but still cumbersome. With sigma notation, we write this sum as\n\n$\\sum_{i=1}^{20}i$\n\nwhich is much more compact. Typically, sigma notation is presented in the form\n\n$\\sum_{i=1}^{n}a_i$\n\nwhere $$a_i$$ describes the terms to be added, and the $$i$$ is called the $$index$$. Each term is evaluated, then we sum all the values, beginning with the value when $$i=1$$ and ending with the value when $$i=n.$$ For example, an expression like $$\\displaystyle \\sum_{i=2}^{7}s_i$$ is interpreted as $$s_2+s_3+s_4+s_5+s_6+s_7$$. Note that the index is used only to keep track of the terms to be added; it does not factor into the calculation of the sum itself. The index is therefore called a dummy variable. We can use any letter we like for the index. Typically, mathematicians use $$i, \\,j, \\,k, \\,m$$, and $$n$$ for indices.\n\nLet’s try a couple of examples of using sigma notation.\n\nExample $$\\PageIndex{1}$$: Using Sigma Notation\n\n1. Write in sigma notation and evaluate the sum of terms $$3^i$$ for $$i=1,2,3,4,5.$$\n2. Write the sum in sigma notation:\n\n$1+\\dfrac{1}{4}+\\dfrac{1}{9}+\\dfrac{1}{16}+\\dfrac{1}{25}. \\nonumber$\n\nSolution\n\n1. Write $\\sum_{i=1}^{5}3^i=3+3^2+3^3+3^4+3^5=363. \\nonumber$\n2. The denominator of each term is a perfect square. Using sigma notation, this sum can be written as $$\\displaystyle \\sum_{i=1}^5\\dfrac{1}{i^2}$$.\n\nExercise $$\\PageIndex{1}$$\n\nWrite in sigma notation and evaluate the sum of terms $$2^i$$ for $$i=3,4,5,6.$$\n\nHint\n\nUse the solving steps in Example $$\\PageIndex{1}$$ as a guide.\n\n$$\\displaystyle \\sum_{i=3}^{6}2^i=2^3+2^4+2^5+2^6=120$$\n\nThe properties associated with the summation process are given in the following rule.\n\nRule: Properties of Sigma Notation\n\nLet $$a_1,a_2,…,a_n$$ and $$b_1,b_2,…,b_n$$ represent two sequences of terms and let $$c$$ be a constant. The following properties hold for all positive integers $$n$$ and for integers $$m$$, with $$1≤m≤n.$$\n\n1. $$\\displaystyle \\sum_{i=1}^n c=nc$$\n2. $$\\displaystyle \\sum_{i=1}^n ca_i=c\\sum_{i=1}^na_i$$\n3. $$\\displaystyle \\sum_{i=1}^n(a_i+b_i)=\\sum_{i=1}^na_i+\\sum_{i=1}^nb_i$$\n4. $$\\displaystyle \\sum_{i=1}^n(a_i−b_i)=\\sum_{i=1}^na_i−\\sum_{i=1}^nb_i$$\n5. $$\\displaystyle \\sum_{i=1}^na_i=\\sum_{i=1}^ma_i+\\sum_{i=m+1}^na_i$$\n\nProof\n\nWe prove properties 2. and 3. here, and leave proof of the other properties to the Exercises.\n\n2. We have\n\n$\\sum_{i=1}^nca_i=ca_1+ca_2+ca_3+⋯+ca_n=c(a_1+a_2+a_3+⋯+a_n)=c\\sum_{i=1}^na_i.$\n\n3. We have\n\n\\begin{align} \\sum_{i=1}^{n}(a_i+b_i) =(a_1+b_1)+(a_2+b_2)+(a_3+b_3)+⋯+(a_n+b_n) \\\\ =(a_1+a_2+a_3+⋯+a_n)+(b_1+b_2+b_3+⋯+b_n) \\\\ =\\sum_{i=1}^na_i+\\sum_{i=1}^nb_i. \\end {align}\n\nA few more formulas for frequently found functions simplify the summation process further. These are shown in the next rule, for sums and powers of integers, and we use them in the next set of examples.\n\nRule: Sums and Powers of Integers\n\n1. The sum of $$n$$ integers is given by\n\n$\\sum_{i=1}^n i=1+2+⋯+n=\\dfrac{n(n+1)}{2}. \\label{sum1}$\n\n2. The sum of consecutive integers squared is given by\n\n$\\sum_{i=1}^n i^2=1^2+2^2+⋯+n^2=\\dfrac{n(n+1)(2n+1)}{6}. \\label{sum2}$\n\n3. The sum of consecutive integers cubed is given by\n\n$\\sum_{i=1}^n i^3=1^3+2^3+⋯+n^3=\\dfrac{n^2(n+1)^2}{4}. \\label{sum3}$\n\nExample $$\\PageIndex{2}$$: Evaluation Using Sigma Notation\n\nWrite using sigma notation and evaluate:\n\n1. The sum of the terms $$(i−3)^2$$ for $$i=1,2,…,200.$$\n2. The sum of the terms $$(i^3−i^2)$$ for $$i=1,2,3,4,5,6$$\n\nSolution\n\na. Multiplying out $$(i−3)^2$$, we can break the expression into three terms.\n\n\\begin{align*} \\sum_{i=1}^{200}(i−3)^2 =\\sum_{i=1}^{200}(i^2−6i+9) \\\\[4pt] =\\sum_{i=1}^{200}i^2−\\sum_{i=1}^{200}6i+\\sum_{i=1}^{200}9 \\\\[4pt] =\\sum_{i=1}^{200}i^2−6\\sum_{i=1}^{200}i+\\sum_{i=1}^{200}9 \\\\[4pt] =\\dfrac{200(200+1)(400+1)}{6}−6 \\left[\\dfrac{200(200+1)}{2}\\right]+9(200) \\\\[4pt] =2,686,700−120,600+1800 \\\\[4pt] =2,567,900 \\end{align*}\n\nb. Use sigma notation property iv. and the rules for the sum of squared terms and the sum of cubed terms.\n\n\\begin{align*} \\sum_{i=1}^{6}(i^3−i^2) =\\sum_{i=1}^6 i^3−\\sum_{i=1}^6 i^2 \\\\[4pt] =\\dfrac{6^2(6+1)^2}{4}−\\dfrac{6(6+1)(2(6)+1)}{6} \\\\[4pt] =\\dfrac{1764}{4}−\\dfrac{546}{6} \\\\[4pt] =350 \\end{align*}\n\nExercise $$\\PageIndex{2}$$\n\nFind the sum of the values of $$4+3i$$ for $$i=1,2,…,100.$$\n\nHint\n\nUse the properties of sigma notation to solve the problem.\n\n15,550\n\nExample $$\\PageIndex{3}$$: Finding the Sum of the Function Values\n\nFind the sum of the values of $$f(x)=x^3$$ over the integers $$1,2,3,…,10.$$\n\nSolution\n\nUsing Equation \\ref{sum3}, we have\n\n$\\sum_{i=0}^{10}i^3=\\dfrac{(10)^2(10+1)^2}{4}=\\dfrac{100(121)}{4}=3025 \\nonumber$\n\nExercise $$\\PageIndex{3}$$\n\nEvaluate the sum indicated by the notation $$\\displaystyle \\sum_{k=1}^{20}(2k+1)$$.\n\nHint\n\nUse the rule on sum and powers of integers (Equations \\ref{sum1}-\\ref{sum3}).\n\n440\n\n## Approximating Area\n\nNow that we have the necessary notation, we return to the problem at hand: approximating the area under a curve. Let $$f(x)$$ be a continuous, nonnegative function defined on the closed interval $$[a,b]$$. We want to approximate the area A bounded by $$f(x)$$ above, the x-axis below, the line $$x=a$$ on the left, and the line $$x=b$$ on the right (Figure $$\\PageIndex{1}$$).",
null,
"Figure $$\\PageIndex{1}$$: An area (shaded region) bounded by the curve $$f(x)$$ at top, the x-axis at bottom, the line $$x=a$$ to the left, and the line $$x=b$$ at right.\n\nHow do we approximate the area under this curve? The approach is a geometric one. By dividing a region into many small shapes that have known area formulas, we can sum these areas and obtain a reasonable estimate of the true area. We begin by dividing the interval $$[a,b]$$ into n subintervals of equal width, $$\\dfrac{b−a}{n}$$. We do this by selecting equally spaced points $$x_0,x_1,x_2,…,x_n$$ with $$x_0=a,x_n=b,$$ and\n\n$x_i−x_{i−1}=\\dfrac{b−a}{n}$\n\nfor $$i=1,2,3,…,n.$$\n\nWe denote the width of each subinterval with the notation Δx, so $$Δx=\\frac{b−a}{n}$$ and\n\n$x_i=x_0+iΔx$\n\nfor $$i=1,2,3,…,n.$$ This notion of dividing an interval $$[a,b]$$ into subintervals by selecting points from within the interval is used quite often in approximating the area under a curve, so let’s define some relevant terminology.\n\nDefinition: Partitions\n\nA set of points $$P={x_i}$$ for $$i=0,1,2,…,n$$ with $$a=x_0<x_1<x_2<⋯<x_n=b$$, which divides the interval $$[a,b]$$ into subintervals of the form [x_0,x_1],[x_1,x_2],…,[x_{n−1},x_n] is called a partition of $$[a,b]$$. If the subintervals all have the same width, the set of points forms a regular partition of the interval [a,b].\n\nWe can use this regular partition as the basis of a method for estimating the area under the curve. We next examine two methods: the left-endpoint approximation and the right-endpoint approximation.\n\nRule: Left-Endpoint Approximation\n\nOn each subinterval $$[x_{i−1},x_i]$$ (for $$i=1,2,3,…,n$$), construct a rectangle with width $$Δx$$ and height equal to $$f(x_{i−1})$$, which is the function value at the left endpoint of the subinterval. Then the area of this rectangle is $$f(x_{i−1})Δx$$. Adding the areas of all these rectangles, we get an approximate value for $$A$$ (Figure $$\\PageIndex{2}$$). We use the notation $$L_n$$ to denote that this is a left-endpoint approximation of $$A$$ using $$n$$ subintervals.\n\n$A≈L_n=f(x_0)Δx+f(x_1)Δx+⋯+f(xn−1)Δx=\\sum_{i=1}^nf(x_{i−1})Δx$",
null,
"Figure $$\\PageIndex{2}$$: In the left-endpoint approximation of area under a curve, the height of each rectangle is determined by the function value at the left of each subinterval.\n\nThe second method for approximating area under a curve is the right-endpoint approximation. It is almost the same as the left-endpoint approximation, but now the heights of the rectangles are determined by the function values at the right of each subinterval.\n\nRule: Right-Endpoint Approximation\n\nConstruct a rectangle on each subinterval $$[x_{i−1},x_i]$$, only this time the height of the rectangle is determined by the function value $$f(x_i)$$ at the right endpoint of the subinterval. Then, the area of each rectangle is $$f(x_i)\\,Δx$$ and the approximation for $$A$$ is given by\n\n$A≈R_n=f(x_1)Δx+f(x_2)Δx+⋯+f(x_n)Δx=\\sum_{i=1}^nf(x_i)Δx.$\n\nThe notation $$R_n$$ indicates this is a right-endpoint approximation for $$A$$ (Figure $$\\PageIndex{3}$$).",
null,
"Figure $$\\PageIndex{3}$$:In the right-endpoint approximation of area under a curve, the height of each rectangle is determined by the function value at the right of each subinterval. Note that the right-endpoint approximation differs from the left-endpoint approximation in Figure $$\\PageIndex{2}$$.\n\nThe graphs in Figure $$\\PageIndex{4}$$ represent the curve $$f(x)=\\dfrac{x^2}{2}$$. In Figure $$\\PageIndex{4b}$$ we divide the region represented by the interval $$[0,3]$$ into six subintervals, each of width $$0.5$$. Thus, $$Δx=0.5$$. We then form six rectangles by drawing vertical lines perpendicular to $$x_{i−1}$$, the left endpoint of each subinterval. We determine the height of each rectangle by calculating $$f(x_{i−1})$$ for $$i=1,2,3,4,5,6.$$ The intervals are $$[0,0.5],[0.5,1],[1,1.5],[1.5,2],[2,2.5],[2.5,3]$$. We find the area of each rectangle by multiplying the height by the width. Then, the sum of the rectangular areas approximates the area between $$f(x)$$ and the $$x$$-axis. When the left endpoints are used to calculate height, we have a left-endpoint approximation. Thus,\n\n\\begin{align*} A≈L_6 =\\sum_{i=1}^6f(x_{i−1})Δx =f(x_0)Δx+f(x_1)Δx+f(x_2)Δx+f(x_3)Δx+f(x_4)Δx+f(x_5)Δx \\\\[4pt] =f(0)0.5+f(0.5)0.5+f(1)0.5+f(1.5)0.5+f(2)0.5+f(2.5)0.5 \\\\[4pt] =(0)0.5+(0.125)0.5+(0.5)0.5+(1.125)0.5+(2)0.5+(3.125)0.5 \\\\[4pt] =0+0.0625+0.25+0.5625+1+1.5625 \\\\[4pt] =3.4375 \\,\\text{units}^2\\end{align*}",
null,
"Figure $$\\PageIndex{4}$$: Methods of approximating the area under a curve by using (a) the left endpoints and (b) the right endpoints.\n\nIn Figure $$\\PageIndex{4b}$$, we draw vertical lines perpendicular to $$x_i$$ such that $$x_i$$ is the right endpoint of each subinterval, and calculate $$f(x_i)$$ for $$i=1,2,3,4,5,6$$. We multiply each $$f(x_i)$$ by $$Δx$$ to find the rectangular areas, and then add them. This is a right-endpoint approximation of the area under $$f(x)$$. Thus,\n\n\\begin{align*} A≈R_6 =\\sum_{i=1}^6f(x_i)Δx=f(x_1)Δx+f(x_2)Δx+f(x_3)Δx+f(x_4)Δx+f(x_5)Δx+f(x_6)Δx\\\\[4pt] =f(0.5)0.5+f(1)0.5+f(1.5)0.5+f(2)0.5+f(2.5)0.5+f(3)0.5 \\\\[4pt] =(0.125)0.5+(0.5)0.5+(1.125)0.5+(2)0.5+(3.125)0.5+(4.5)0.5 \\\\[4pt] =0.0625+0.25+0.5625+1+1.5625+2.25 \\\\[4pt] =5.6875 \\,\\text{units}^2.\\end{align*}\n\nExample $$\\PageIndex{4}$$: Approximating the Area Under a Curve\n\nUse both left-endpoint and right-endpoint approximations to approximate the area under the curve of $$f(x)=x^2$$ on the interval $$[0,2]$$; use $$n=4$$.\n\nSolution\n\nFirst, divide the interval $$[0,2]$$ into $$n$$ equal subintervals. Using $$n=4,\\, Δx=\\dfrac{(2−0)}{4}=0.5$$. This is the width of each rectangle. The intervals $$[0,0.5],[0.5,1],[1,1.5],[1.5,2]$$ are shown in Figure $$\\PageIndex{5}$$. Using a left-endpoint approximation, the heights are $$f(0)=0,\\,f(0.5)=0.25,\\,f(1)=1,$$ and $$f(1.5)=2.25.$$ Then,\n\n\\begin{align*} L_4 =f(x_0)Δx+f(x_1)Δx+f(x_2)Δx+f(x_3)Δx \\\\[4pt] =0(0.5)+0.25(0.5)+1(0.5)+2.25(0.5) \\\\[4pt] =1.75 \\,\\text{units}^2 \\end{align*}",
null,
"Figure $$\\PageIndex{5}$$: The graph shows the left-endpoint approximation of the area under $$f(x)=x^2$$ from $$0$$ to $$2$$.\n\nThe right-endpoint approximation is shown in Figure $$\\PageIndex{6}$$. The intervals are the same, $$Δx=0.5,$$ but now use the right endpoint to calculate the height of the rectangles. We have\n\n\\begin{align*} R_4 =f(x_1)Δx+f(x_2)Δx+f(x_3)Δx+f(x_4)Δx \\\\[4pt] =0.25(0.5)+1(0.5)+2.25(0.5)+4(0.5) \\\\[4pt] =3.75 \\,\\text{units}^2 \\end{align*}",
null,
"Figure $$\\PageIndex{6}$$: The graph shows the right-endpoint approximation of the area under $$f(x)=x^2$$ from $$0$$ to $$2$$.\n\nThe left-endpoint approximation is $$1.75\\,\\text{units}^2$$; the right-endpoint approximation is $$3.75 \\,\\text{units}^2$$.\n\nExercise $$\\PageIndex{4}$$\n\nSketch left-endpoint and right-endpoint approximations for $$f(x)=\\dfrac{1}{x}$$ on $$[1,2]$$; use $$n=4$$. Approximate the area using both methods.\n\nHint\n\nFollow the solving strategy in Example $$\\PageIndex{4}$$ step-by-step.\n\nThe left-endpoint approximation is $$0.7595 \\,\\text{units}^2$$. The right-endpoint approximation is $$0.6345 \\,\\text{units}^2$$. See the below Media.",
null,
"Looking at Figure $$\\PageIndex{4}$$ and the graphs in Example $$\\PageIndex{4}$$, we can see that when we use a small number of intervals, neither the left-endpoint approximation nor the right-endpoint approximation is a particularly accurate estimate of the area under the curve. However, it seems logical that if we increase the number of points in our partition, our estimate of A will improve. We will have more rectangles, but each rectangle will be thinner, so we will be able to fit the rectangles to the curve more precisely.\n\nWe can demonstrate the improved approximation obtained through smaller intervals with an example. Let’s explore the idea of increasing $$n$$, first in a left-endpoint approximation with four rectangles, then eight rectangles, and finally $$32$$ rectangles. Then, let’s do the same thing in a right-endpoint approximation, using the same sets of intervals, of the same curved region. Figure $$\\PageIndex{7}$$ shows the area of the region under the curve $$f(x)=(x−1)^3+4$$ on the interval $$[0,2]$$ using a left-endpoint approximation where $$n=4.$$ The width of each rectangle is\n\n$Δx=\\dfrac{2−0}{4}=\\dfrac{1}{2}.$\n\nThe area is approximated by the summed areas of the rectangles, or\n\n$L_4=f(0)(0.5)+f(0.5)(0.5)+f(1)(0.5)+f(1.5)0.5=7.5 \\,\\text{units}^2$",
null,
"Figure $$\\PageIndex{7}$$: With a left-endpoint approximation and dividing the region from a to b into four equal intervals, the area under the curve is approximately equal to the sum of the areas of the rectangles.\n\nFigure $$\\PageIndex{8}$$ shows the same curve divided into eight subintervals. Comparing the graph with four rectangles in Figure $$\\PageIndex{7}$$ with this graph with eight rectangles, we can see there appears to be less white space under the curve when $$n=8.$$ This white space is area under the curve we are unable to include using our approximation. The area of the rectangles is\n\n$L_8=f(0)(0.25)+f(0.25)(0.25)+f(0.5)(0.25)+f(0.75)(0.25)+f(1)(0.25)+f(1.25)(0.25)+f(1.5)(0.25)+f(1.75)(0.25)=7.75 \\,\\text{units}^2$",
null,
"Figure $$\\PageIndex{8}$$: The region under the curve is divided into $$n=8$$ rectangular areas of equal width for a left-endpoint approximation.\n\nThe graph in Figure $$\\PageIndex{9}$$ shows the same function with $$32$$ rectangles inscribed under the curve. There appears to be little white space left. The area occupied by the rectangles is\n\n$L_{32}=f(0)(0.0625)+f(0.0625)(0.0625)+f(0.125)(0.0625)+⋯+f(1.9375)(0.0625)=7.9375 \\,\\text{units}^2.$",
null,
"Figure $$\\PageIndex{9}$$: Here, $$32$$ rectangles are inscribed under the curve for a left-endpoint approximation.\n\nWe can carry out a similar process for the right-endpoint approximation method. A right-endpoint approximation of the same curve, using four rectangles (Figure $$\\PageIndex{10}$$), yields an area\n\n$R_4=f(0.5)(0.5)+f(1)(0.5)+f(1.5)(0.5)+f(2)(0.5)=8.5 \\,\\text{units}^2.$",
null,
"Figure $$\\PageIndex{10}$$: Now we divide the area under the curve into four equal subintervals for a right-endpoint approximation.\n\nDividing the region over the interval $$[0,2]$$ into eight rectangles results in $$Δx=\\dfrac{2−0}{8}=0.25.$$ The graph is shown in Figure $$\\PageIndex{11}$$. The area is\n\n$R_8=f(0.25)(0.25)+f(0.5)(0.25)+f(0.75)(0.25)+f(1)(0.25)+f(1.25)(0.25)+f(1.5)(0.25)+f(1.75)(0.25)+f(2)(0.25)=8.25 \\,\\text{units}^2$",
null,
"Figure $$\\PageIndex{11}$$: Here we use right-endpoint approximation for a region divided into eight equal subintervals.\n\nLast, the right-endpoint approximation with $$n=32$$ is close to the actual area (Figure $$\\PageIndex{12}$$). The area is approximately\n\n$R_{32}=f(0.0625)(0.0625)+f(0.125)(0.0625)+f(0.1875)(0.0625)+⋯+f(2)(0.0625)=8.0625 \\,\\text{units}^2$",
null,
"Figure $$\\PageIndex{12}$$: The region is divided into $$32$$ equal subintervals for a right-endpoint approximation.\n\nBased on these figures and calculations, it appears we are on the right track; the rectangles appear to approximate the area under the curve better as $$n$$ gets larger. Furthermore, as $$n$$ increases, both the left-endpoint and right-endpoint approximations appear to approach an area of $$8$$ square units. Table shows a numerical comparison of the left- and right-endpoint methods. The idea that the approximations of the area under the curve get better and better as $$n$$ gets larger and larger is very important, and we now explore this idea in more detail.\n\nTable $$\\PageIndex{15}$$: Converging Values of Left- and Right-Endpoint Approximations as n Increases\nValue of $$n$$ Approximate Area $$L_n$$ Approximate Area $$R_n$$\n$$n=4$$ $$7.5$$ $$8.5$$\n$$n=8$$ $$7.75$$ $$8.25$$\n$$n=32$$ $$7.94$$ $$8.06$$\n\n### Forming Riemann Sums\n\nSo far we have been using rectangles to approximate the area under a curve. The heights of these rectangles have been determined by evaluating the function at either the right or left endpoints of the subinterval $$[x_{i−1},x_i]$$. In reality, there is no reason to restrict evaluation of the function to one of these two points only. We could evaluate the function at any point ci in the subinterval $$[x_{i−1},x_i]$$, and use $$f(x^∗_i)$$ as the height of our rectangle. This gives us an estimate for the area of the form\n\n$A≈\\sum_{i=1}^nf(x^∗_i)\\,Δx.$\n\nA sum of this form is called a Riemann sum, named for the 19th-century mathematician Bernhard Riemann, who developed the idea.\n\nDefinition: Riemann sum\n\nLet $$f(x)$$ be defined on a closed interval $$[a,b]$$ and let P be a regular partition of $$[a,b]$$. Let $$Δx$$ be the width of each subinterval $$[x_{i−1},x_i]$$ and for each $$i$$, let $$x^∗_i$$ be any point in $$[x_{i−1},x_i]$$. A Riemann sum is defined for $$f(x)$$ as\n\n$\\sum_{i=1}^nf(x^∗_i)\\,Δx.$\n\nRecall that with the left- and right-endpoint approximations, the estimates seem to get better and better as $$n$$ get larger and larger. The same thing happens with Riemann sums. Riemann sums give better approximations for larger values of $$n$$. We are now ready to define the area under a curve in terms of Riemann sums.\n\nDefinition: area under the curve\n\nLet $$f(x)$$ be a continuous, nonnegative function on an interval $$[a,b]$$, and let $$\\sum_{i=1}^nf(x^∗_i)\\,Δx$$ be a Riemann sum for $$f(x)$$. Then, the area under the curve $$y=f(x)$$ on $$[a,b]$$ is given by\n\n$A=\\lim_{n→∞}\\sum_{i=1}^nf(x^∗_i)\\,Δx.$\n\nSee a graphical demonstration of the construction of a Riemann sum.\n\nSome subtleties here are worth discussing. First, note that taking the limit of a sum is a little different from taking the limit of a function $$f(x)$$ as $$x$$ goes to infinity. Limits of sums are discussed in detail in the chapter on Sequences and Series; however, for now we can assume that the computational techniques we used to compute limits of functions can also be used to calculate limits of sums.\n\nSecond, we must consider what to do if the expression converges to different limits for different choices of $${x^∗_i}.$$ Fortunately, this does not happen. Although the proof is beyond the scope of this text, it can be shown that if $$f(x)$$ is continuous on the closed interval $$[a,b]$$, then $$\\displaystyle \\lim_{n→∞}\\sum_{i=1}^nf(x^∗_i)Δx$$ exists and is unique (in other words, it does not depend on the choice of $${x^∗_i}$$).\n\nWe look at some examples shortly. But, before we do, let’s take a moment and talk about some specific choices for $${x^∗_i}$$. Although any choice for $${x^∗_i}$$ gives us an estimate of the area under the curve, we don’t necessarily know whether that estimate is too high (overestimate) or too low (underestimate). If it is important to know whether our estimate is high or low, we can select our value for $${x^∗_i}$$ to guarantee one result or the other.\n\nIf we want an overestimate, for example, we can choose $${x^∗_i}$$ such that for $$i=1,2,3,…,n,$$ $$f(x^∗_i)≥f(x)$$ for all $$x∈[x_i−1,x_i]$$. In other words, we choose $${x^∗_i}$$ so that for $$i=1,2,3,…,n,$$ $$f(x^∗_i)$$ is the maximum function value on the interval $$[x_{i−1},x_i]$$. If we select $${x^∗_i}$$ in this way, then the Riemann sum $$\\displaystyle \\sum_{i=1}^nf(x^∗_i)Δx$$ is called an upper sum. Similarly, if we want an underestimate, we can choose $${x∗i}$$ so that for $$i=1,2,3,…,n,$$ $$f(x^∗_i)$$ is the minimum function value on the interval $$[x_{i−1},x_i]$$. In this case, the associated Riemann sum is called a lower sum. Note that if $$f(x)$$ is either increasing or decreasing throughout the interval $$[a,b]$$, then the maximum and minimum values of the function occur at the endpoints of the subintervals, so the upper and lower sums are just the same as the left- and right-endpoint approximations.\n\nExample $$\\PageIndex{5}$$: Finding Lower and Upper Sums\n\nFind a lower sum for $$f(x)=10−x^2$$ on $$[1,2]$$; let $$n=4$$ subintervals.\n\nSolution\n\nWith $$n=4$$ over the interval $$[1,2], \\,Δx=\\dfrac{1}{4}$$. We can list the intervals as $$[1,1.25],\\,[1.25,1.5],\\,[1.5,1.75],$$ and $$[1.75,2]$$. Because the function is decreasing over the interval $$[1,2],$$ Figure shows that a lower sum is obtained by using the right endpoints.",
null,
"Figure $$\\PageIndex{13}$$: The graph of $$f(x)=10−x^2$$ is set up for a right-endpoint approximation of the area bounded by the curve and the $$x$$-axis on $$[1,2]$$, and it shows a lower sum.\n\nThe Riemann sum is\n\n\\begin{align*} \\sum_{k=1}^4(10−x^2)(0.25) =0.25[10−(1.25)^2+10−(1.5)^2+10−(1.75)^2+10−(2)^2] \\\\[4pt] =0.25[8.4375+7.75+6.9375+6] \\\\[4pt] =7.28 \\,\\text{units}^2.\\end{align*}\n\nThe area of $$7.28$$ $$\\text{units}^2$$ is a lower sum and an underestimate.\n\nExercise $$\\PageIndex{5}$$\n\n1. Find an upper sum for $$f(x)=10−x^2$$ on $$[1,2]$$; let $$n=4.$$\n2. Sketch the approximation.\nHint\n\n$$f(x)$$ is decreasing on $$[1,2]$$, so the maximum function values occur at the left endpoints of the subintervals.\n\na. Upper sum=$$8.0313 \\,\\text{units}^2.$$\n\nb.",
null,
"Example $$\\PageIndex{6}$$: Finding Lower and Upper Sums for $$f(x)=\\sin x$$\n\nFind a lower sum for $$f(x)=\\sin x$$ over the interval $$[a,b]=[0,\\dfrac{π}{2}]$$; let $$n=6.$$\n\nSolution\n\nLet’s first look at the graph in Figure $$\\PageIndex{14}$$ to get a better idea of the area of interest.",
null,
"Figure $$\\PageIndex{14}$$: The graph of $$y=\\sin x$$ is divided into six regions: $$Δx=\\dfrac{π/2}{6}=\\dfrac{π}{12}$$.\n\nThe intervals are $$[0,\\dfrac{π}{12}],[\\dfrac{π}{12},\\dfrac{π}{6}],[\\dfrac{π}{6},\\dfrac{π}{4}],[\\dfrac{π}{4},\\dfrac{π}{3}],[\\dfrac{π}{3},\\dfrac{5π}{12}]$$, and $$[\\dfrac{5π}{12},\\dfrac{π}{2}]$$. Note that $$f(x)=\\sin x$$ is increasing on the interval $$[0,\\dfrac{π}{2}]$$, so a left-endpoint approximation gives us the lower sum. A left-endpoint approximation is the Riemann sum $$\\sum_{i=0}^5\\sin x_i(\\dfrac{π}{12})$$.We have\n\n$A≈\\sin(0)(\\frac{π}{12})+\\sin(\\frac{π}{12})(\\frac{π}{12})+\\sin(\\frac{π}{6})(\\frac{π}{12})+\\sin(\\frac{π}{4})(\\frac{π}{12})+\\sin(\\frac{π}{3})(\\frac{π}{12})+\\sin(\\frac{5π}{12})(\\frac{π}{12})=0.863 \\,\\text{units}^2. \\nonumber$\n\nExercise $$\\PageIndex{6}$$\n\nUsing the function $$f(x)=\\sin x$$ over the interval $$[0,\\dfrac{π}{2}],$$ find an upper sum; let $$n=6.$$\n\nHint\n\nFollow the steps from Example $$\\PageIndex{6}$$.\n\n$$A≈1.125 \\,\\text{units}^2$$\n\n## Key Concepts\n\n• The use of sigma (summation) notation of the form $$\\displaystyle \\sum_{i=1}^na_i$$ is useful for expressing long sums of values in compact form.\n• For a continuous function defined over an interval $$[a,b],$$ the process of dividing the interval into n equal parts, extending a rectangle to the graph of the function, calculating the areas of the series of rectangles, and then summing the areas yields an approximation of the area of that region.\n• The width of each rectangle is $$Δx=\\dfrac{b−a}{n}$$.\n• Riemann sums are expressions of the form $$\\displaystyle \\sum_{i=1}^nf(x^∗_i)Δx,$$ and can be used to estimate the area under the curve $$y=f(x).$$ Left- and right-endpoint approximations are special kinds of Riemann sums where the values of $${x^∗_i}$$are chosen to be the left or right endpoints of the subintervals, respectively.\n• Riemann sums allow for much flexibility in choosing the set of points $${x^∗_i}$$ at which the function is evaluated, often with an eye to obtaining a lower sum or an upper sum.\n\n## Key Equations\n\n• Properties of Sigma Notation\n\n\\begin{align*} \\sum_{i=1}^nc=nc \\\\ \\sum_{i=1}^nca_i =c\\sum_{i=1}^na_i \\\\ \\sum_{i=1}^n(a_i+b_i) =\\sum_{i=1}^na_i+\\sum_{i=1}^nb_i \\\\ \\sum_{i=1}^n(a_i−b_i) =\\sum_{i=1}^na_i−\\sum_{i=1}^nb_i \\\\ \\sum_{i=1}^na_i=\\sum_{i=1}^ma_i+\\sum_{i=m+1}^na_i \\end{align*}\n\n• Sums and Powers of Integers\n\n$\\sum_{i=1}^ni=1+2+⋯+n=\\dfrac{n(n+1)}{2} \\nonumber$\n\n$\\sum_{i=1}^ni^2=1^2+2^2+⋯+n^2=\\dfrac{n(n+1)(2n+1)}{6} \\nonumber$\n\n$\\sum_{i=0}^ni^3=1^3+2^3+⋯+n^3=\\dfrac{n^2(n+1)^2}{4} \\nonumber$\n\n• Left-Endpoint Approximation\n\n$$A≈L_n=f(x_0)Δx+f(x_1)Δx+⋯+f(x_{n−1})Δx=\\displaystyle \\sum_{i=1}^nf(x_{i−1})Δx$$\n\n• Right-Endpoint Approximation\n\n$$A≈R_n=f(x_1)Δx+f(x_2)Δx+⋯+f(x_n)Δx=\\displaystyle \\sum_{i=1}^nf(x_i)Δx$$\n\n## Glossary\n\nleft-endpoint approximation\nan approximation of the area under a curve computed by using the left endpoint of each subinterval to calculate the height of the vertical sides of each rectangle\nlower sum\na sum obtained by using the minimum value of $$f(x)$$ on each subinterval\npartition\na set of points that divides an interval into subintervals\nregular partition\na partition in which the subintervals all have the same width\nriemann sum\nan estimate of the area under the curve of the form $$A≈\\displaystyle \\sum_{i=1}^nf(x^∗_i)Δx$$\nright-endpoint approximation\nthe right-endpoint approximation is an approximation of the area of the rectangles under a curve using the right endpoint of each subinterval to construct the vertical sides of each rectangle\nsigma notation\n(also, summation notation) the Greek letter sigma ($$Σ$$) indicates addition of the values; the values of the index above and below the sigma indicate where to begin the summation and where to end it\nupper sum\na sum obtained by using the maximum value of $$f(x)$$ on each subinterval"
] | [
null,
"https://math.libretexts.org/@api/deki/files/2547/CNX_Calc_Figure_05_01_017.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/4660/1.png",
null,
"https://math.libretexts.org/@api/deki/files/4661/2.png",
null,
"https://math.libretexts.org/@api/deki/files/2550/CNX_Calc_Figure_05_01_003.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/4662/15007830038281.png",
null,
"https://math.libretexts.org/@api/deki/files/4663/11.png",
null,
"https://math.libretexts.org/@api/deki/files/4664/13.png",
null,
"https://math.libretexts.org/@api/deki/files/2554/CNX_Calc_Figure_05_01_004.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/2555/CNX_Calc_Figure_05_01_005.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/2556/CNX_Calc_Figure_05_01_006.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/2557/CNX_Calc_Figure_05_01_007.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/2558/CNX_Calc_Figure_05_01_008.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/2559/CNX_Calc_Figure_05_01_009.jpeg",
null,
"https://math.libretexts.org/@api/deki/files/4665/5A.png",
null,
"https://math.libretexts.org/@api/deki/files/4666/15.png",
null,
"https://math.libretexts.org/@api/deki/files/4667/16.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7594674,"math_prob":1.0000025,"size":26356,"snap":"2020-24-2020-29","text_gpt3_token_len":9124,"char_repetition_ratio":0.17437007,"word_repetition_ratio":0.042425968,"special_character_ratio":0.36283958,"punctuation_ratio":0.12761182,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":1.0000077,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-07-05T00:09:57Z\",\"WARC-Record-ID\":\"<urn:uuid:54ce1126-9d02-4c12-bb55-86623b4af4a3>\",\"Content-Length\":\"142988\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:e3d19396-2ad6-4af6-9087-e377465585e8>\",\"WARC-Concurrent-To\":\"<urn:uuid:351d4167-93dd-4d5c-adfb-bf89ba23b0ad>\",\"WARC-IP-Address\":\"13.249.40.88\",\"WARC-Target-URI\":\"https://math.libretexts.org/Bookshelves/Calculus/Map%3A_Calculus_-_Early_Transcendentals_(Stewart)/05%3A_Integrals/5.01%3A_Areas_and_Distances\",\"WARC-Payload-Digest\":\"sha1:J53OMHRRPJREQJIHNFXCFSWDYFSAKONF\",\"WARC-Block-Digest\":\"sha1:74XRU2VUGOQRDRZI4YMPLWDRVXQYAX5F\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-29/CC-MAIN-2020-29_segments_1593655886802.13_warc_CC-MAIN-20200704232817-20200705022817-00019.warc.gz\"}"} |
https://www.concretepage.com/questions/295 | [
"Post New Query\n\n# What are set of FDs for the relation in DBMS?",
null,
"Asked on January 03, 2015\nConsider the following set of FDs for the relation R(A, B, C, D, E):\nF= {A-->B, AB-->C, D-->AC, D-->E}\nF'= {A-->BC, D-->AE}\nCheck whether these are equivalent sets.",
null,
"Replied on January 04, 2015\nA-->B means A functionally defines B.\nAB-->C means A and B functionally defines C\nD--> AC means D functionally defines A and C\nD--> E means D functionally defines E\n\nIf understand the properties of functional dependency as given below\n\n1. Reflexivity: If Y ⊆ X, then X → Y\n2. Augmentation: If X → Y , then XZ → Y Z\n3. Transitivity: If X → Y and Y → Z, then X → Z\n4. Union: If X → Y and X → Z, then X → Y Z\n5. Decomposition: If X → Y Z, then X → Y and X → Z\n6. Pseudotransitivity: If X → Y and W Y → Z, then W X → Z\n7. Composition: If X → Y and Z → W, then XZ → Y W\n\nAnd find the minimal cover,\n\nwe can get\n\nA-->BC, D-->AE\n\nSo F and F' are same."
] | [
null,
"https://www.concretepage.com/forum/man.png",
null,
"https://www.concretepage.com/forum/man.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.79675376,"math_prob":0.89268756,"size":941,"snap":"2022-40-2023-06","text_gpt3_token_len":346,"char_repetition_ratio":0.18783352,"word_repetition_ratio":0.08121827,"special_character_ratio":0.36131775,"punctuation_ratio":0.15261044,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9956301,"pos_list":[0,1,2,3,4],"im_url_duplicate_count":[null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-10-04T22:47:14Z\",\"WARC-Record-ID\":\"<urn:uuid:7e956539-50b0-4f6d-b9d3-e73a33e8d03e>\",\"Content-Length\":\"40245\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:1aeb0c35-73e1-4ec8-a59e-025d836a0b16>\",\"WARC-Concurrent-To\":\"<urn:uuid:bedfc161-2dbb-46f1-9c90-b48d547583ac>\",\"WARC-IP-Address\":\"104.26.10.182\",\"WARC-Target-URI\":\"https://www.concretepage.com/questions/295\",\"WARC-Payload-Digest\":\"sha1:OY4PXXWE3ZRC6FUVMPEY74572FSTGQUO\",\"WARC-Block-Digest\":\"sha1:P743X6XWDEEJXBRQQVL4CZYMQRBBIZVA\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-40/CC-MAIN-2022-40_segments_1664030337529.69_warc_CC-MAIN-20221004215917-20221005005917-00107.warc.gz\"}"} |
https://imarketsignals.com/2014/the-unemployment-rate-a-coincident-recession-indicator/ | [
"",
null,
"# The Unemployment Rate: A Coincident Recession Indicator\n\nNote: First published here on April 17, 2012 and updated October 3, 2014 and originally co-authored with Dwaine van Vuuren.\n\nFor what is considered to be a lagging indicator of the economy, the unemployment rate provides surprisingly good signals for the beginnings and ends of recessions. We have developed a model that uses unemployment figures to produce these signals and to determine the probability of when a recession may start.\n\nThe current recession call from the Economic Cycle Research Institute (ECRI) is now more than six months old. Our model based on the unemployment rate which is presented here does not support ECRI’s call; it also tells us that a recession will not happen anytime soon.\n\n#### The unemployment rate indicator\n\nMonthly unemployment data is listed at FRED from 1948 onwards, a dataset that spans 11 recessions and covers a much longer period than the historical data for most other indicators – the Conference Board LEI, for example, or the ECRI Weekly Leading Index – whose performance one can only evaluate for the last seven recessions.\n\nThe unemployment rate (UER) over time is shown in Figure 1. It is depicted by the blue and red graphs, which are the short exponential moving average (EMA) and long EMA of the unemployment rate, respectively. (Appendix 1, for those who are interested, is a description of EMA.) The gray vertical bar graphs represent the 11 recessions during the time span the data cover.",
null,
"(click to enlarge)\n\nIt is apparent from Figure 1 that the blue graph, the short EMA of the UER forms a trough prior to the beginning of each recession.\n\nFigures 2.1 and 2.2 incorporate the information depicted in Figure 1 and also show:\n\n1. The smoothed eight-month annualized growth rate of the unemployment rate, calculated from its 15-week moving average, which we refer to as “UERg.” That’s the green graph. (Appendix 2 describes how to calculate UERg.)\n2. The time periods when the basic unemployment rate and/or UERg signaled recession, which are the gold-shaded parts of the graph.\n3. The dates of ECRI’s four recession calls of 1990, 2001, 2008 and 2011. These are the vertical purple lines in figure 2.2.",
null,
"(click to enlarge)",
null,
"(click to enlarge)\n\nOne can see from Figures 2.1 and 2.2 that the UERg, in green, has a well defined peak near the end of every recession, when the slope of the growth rate of the UER abruptly changes from positive (rising) to negative (declining).\n\nIt is similarly evident that the ECRI’s recession calls in 1990, 2001 and 2008 always coincided with a trough where the short EMA of the unemployment rate rose above its long EMA; UERg was always positive at those times as well.\n\nThis was not the case at the end of September 2011, however, when ECRI issued its most recent recession call. Then the unemployment rate had just formed a peak and the short EMA was below the long EMA of the unemployment rate, all completely atypical of when past recessions occurred. (Appendix 3 has the dates of ECRI’s recession calls and the corresponding recession signals from the unemployment rate.)\n\n#### Conditions that indicate recession starts and ends\n\nRecessions generally start when one the following three conditions occurs:\n\n1. The short EMA of the unemployment rate rises and crosses the long EMA to the upside, and the difference between the two EMAs is at least 0.07.\n2. UERg rises above zero, the long EMA of the unemployment rate has a positive slope, and the difference between the long EMA at that time and the long EMA 10 weeks before is greater than 0.025.\n3. The 19-week rate of change of the unemployment rate is greater than 8.0%, while simultaneously the long EMA of the unemployment rate has a positive slope and the difference between the long EMA at the time and the long EMA 10 weeks earlier is greater than 0.015.\n\nRecession ends are generally signaled when:\n\n1. UERg as calculated from a 4-week moving average of the unemployment rate crosses from above to below UERg as calculated from a 15-week moving average, and UERg as calculated from a 15-week moving average is greater than 20%.\n\n#### Probability of recession start\n\nWe calculated the probability a recession will start in any given week based on the features which generally indicate recession starts.\n\nThe following probability curve resulted over the lifespan of the data (Figure 3):",
null,
"(click to enlarge)\n\nThis is a very satisfactory result, given especially that it is derived, essentially, from a single factor — the unemployment rate.\n\n#### Present conditions\n\nThe ends of the graphs in Figure 4 depict the current situation, with the September 5.9% unemployment number included. The graphs are plotted to the beginning November 2014, when the October unemployment statistics will be released.\n\nWe see none of the conditions for a recession to start. The unemployment rate is not forming a trough. Its short EMA is well below its long EMA. The UERg has had a negative slope since the last week of September 2011, when ECRI made its recession call. Additionally, the UERg is currently at its lowest level – approximately -17.1% – since it fell below zero in the middle of September 2010.\n\nAlso the 19-week rate of change of the unemployment rate is now -6.3%, far below the critical signal level, and the probability that a recession will start now is zero, as shown by the probability of recession graph in Figure 3.\n\nFor a recession to occur, the unemployment rate graphs would have to, as a minimum requirement, move sideways for a while and then turn upwards. Alternatively, the UERg graph could turn upwards and rise above zero, or the 19-week rate of change graph of unemployment rate itself would have to approach 8%. There is no indication that any of this will happen anytime soon. Currently the trajectories of both the unemployment rate and its growth rate are downwards, as was the case after all previous recessions.\n\nOne can therefore reasonably conclude, based on the historic evidence of these unemployment-based indicators, that there will be no recession in the near future and that ECRI’s last recession call was definitely premature.\n\n### Appendix 1\n\n#### Exponential Moving Average\n\nThe exponential moving average (EMA) is a type of filter that applies weighting factors to the observed data values. The weighting for each older data point decreases exponentially, never reaching zero. For a detailed description see http://en.wikipedia.org/wiki/Moving_average\n\nThe formula used for calculating the EMA is\n\nEMAthis week = EMAlast week +α× (valuethis week EMAlast week)\n\nThe coefficient α represents the degree of weighting decrease, a constant smoothing factor between 0 and 1. A higher α discounts older observations faster. Alternatively, α may be expressed in terms of N time periods, where α = 2/(N+1). For example, N = 60 for the long EMA of UERresults in a smoothing factor of 0.033, and N = 9 for the short EMA of UERresults a smoothing factor of 0.20. The “long” and “short” refers to the N time periods used in the calculation of the smoothing factor for the EMAs.\n\n### Appendix 2\n\n#### Calculating the annualized growth rate of UER\n\nThe eight-month smoothed compound annualized growth rate of UER is calculated as follows:\n\nUERg is the compound annualized growth rate of the UER for a 35.5 week period. MA1 is the 15 week moving average of the UER and MA2 is the moving average of MA1 over the preceding 70 weeks. Because the 70-week average in the denominator is centered 35.5 weeks before the current middle of the week, the ratio MA1/MA2 yields the change over a 35.5-week period, i.e. over approximately eight months.\nOne can calculate the UERg using the Excel function XIRR.\n=XIRR(cell 1:cell 2,(date)35-weeks-ago:(date)now)\n\nwhere cell 1 contains: -1 and cell 2 contains: MA1/MA2now\n\nWe used MA1 for 15 weeks to calculate UERg and also MA1 for 4 weeks to determine the peaks of UERg at the end of recessions as discussed in the article.\n\n### Appendix 3\n\n#### Dates of ECRI recession calls and corresponding signals from the UER\n\n Start of recession ECRI recession Lead UER signal lead NBER date call date weeks weeks 8/1/1990 3/9/1990 21 -5 4/1/2001 4/18/2001 -2 2 1/1/2008 3/31/2008 -13 6 n.a. 9/30/2011 n.a. no signal\n\nA negative lead indicates that the signal was late. It is evident from this table that ECRI’s recession calls are not superior to the models’ signals.\n\n___________________________________________________________________\n\nPosted in blogs, featured\n###### One comment on “The Unemployment Rate: A Coincident Recession Indicator”\n1.",
null,
"chenjiahua says:\n\nVery great model! However, still not sure how monthly unemployement rate be transformed into weekly for calculation.\n\nWith reference to Section 202(a)(11)(D) of the Investment Advisers Act: We are Engineers and not Investment Advisers, read more ..."
] | [
null,
"https://certify.alexametrics.com/atrk.gif",
null,
"https://imarketsignals.com/wp-content/uploads/2014/10/uer-fig-1.png",
null,
"https://imarketsignals.com/wp-content/uploads/2014/10/uer-fig-2.1.png",
null,
"https://imarketsignals.com/wp-content/uploads/2014/10/uer-fig-2.2.png",
null,
"https://imarketsignals.com/wp-content/uploads/2014/10/uer-fig-3.png",
null,
"https://secure.gravatar.com/avatar/4de529256aacc08d18bae548c09497b4",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.93510276,"math_prob":0.9516194,"size":8400,"snap":"2022-40-2023-06","text_gpt3_token_len":1961,"char_repetition_ratio":0.17186755,"word_repetition_ratio":0.046528276,"special_character_ratio":0.23619048,"punctuation_ratio":0.09390547,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.95185477,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12],"im_url_duplicate_count":[null,null,null,4,null,4,null,4,null,4,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-01-27T02:13:34Z\",\"WARC-Record-ID\":\"<urn:uuid:a8b76ac9-87e8-4738-8531-8bc9c9c5d6c8>\",\"Content-Length\":\"41457\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:14530e60-8622-48c9-82e8-e13eae6e3333>\",\"WARC-Concurrent-To\":\"<urn:uuid:71287590-7a73-4c59-a5fe-88f78fb582b1>\",\"WARC-IP-Address\":\"173.231.241.6\",\"WARC-Target-URI\":\"https://imarketsignals.com/2014/the-unemployment-rate-a-coincident-recession-indicator/\",\"WARC-Payload-Digest\":\"sha1:UONWIYB5IEAJ42DU6O4W3IFEPUZCNVM7\",\"WARC-Block-Digest\":\"sha1:JNB6L5J2Y5HAOSL4YDPR3DIKTYK3POPK\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-06/CC-MAIN-2023-06_segments_1674764494852.95_warc_CC-MAIN-20230127001911-20230127031911-00852.warc.gz\"}"} |
https://www.laptopmag.com/articles/formulas-multiple-cells-excel | [
"# How to Add, Subtract, Multiply, or Divide Multiple Cells in Excel\n\nDoing basic math doesn’t have to involve breaking out the calculator and manually adding up cells, columns, or row. Excel has a useful feature called Formulas that allow you to do both basic math, such as addition and subtraction, or more complex items like finding averages, or even building your own formulas using super-advanced algorithms.\n\nToday, we’re going to work through a variety of real-world uses for simple formulas in Excel. In this scenario, we’re going to tally up bills, subtract money owed, multiply bills over the course of a year, and divide them between three roommates each month.\n\n1. Open an Excel workbook. For this example, we’re going to use a simple tally of expenses and add them. But based on the formula you choose in step TKTK, you can just as easily subtract, multiply, or divide the cells to create an average.\n\n2. Choose the cell you want to use to display the solution to your simple formula.\n\n3. For addition, the solution is an easy one. We simply need to tell Excel we’re adding, and then determine which cells we want to add up. Use this formula: =SUM(D2:D7)\n\n4. For subtraction, it’s not quite as easy as we can’t subtract multiple cells with the same type of formula. Instead, we have to enter each cell by hand. So if we wanted to subtract the cell phone bill from the rent, for example, we would use this formula: =D5-D6\n\n5. For multiplication, the formula is mainly the same as subtraction. To multiply the phone bill by 12, for example, use this formula: =D6*12 (or you can multiply two cells in the workbook much in the same way as you subtracted them, just an asterisk instead of a minus sign).\n\n6. And for division, you can use this formula: =D9/3 <divide.png> In this example, we’re basically divvying up monthly expenses between three roommates. You can alter the formula to divide two numbers within the workbook, or any other cell divided by a different number entirely."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.92258316,"math_prob":0.94747233,"size":1915,"snap":"2021-43-2021-49","text_gpt3_token_len":432,"char_repetition_ratio":0.12820514,"word_repetition_ratio":0.0,"special_character_ratio":0.22454308,"punctuation_ratio":0.13513513,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9995196,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2021-10-16T02:07:01Z\",\"WARC-Record-ID\":\"<urn:uuid:874ecad0-2a4f-482e-80f6-96a0aa19fa26>\",\"Content-Length\":\"402239\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:310064db-3a83-4441-9fed-a94ff225c78b>\",\"WARC-Concurrent-To\":\"<urn:uuid:e4416261-5feb-4446-bdca-2eb9ddef56bc>\",\"WARC-IP-Address\":\"151.101.202.114\",\"WARC-Target-URI\":\"https://www.laptopmag.com/articles/formulas-multiple-cells-excel\",\"WARC-Payload-Digest\":\"sha1:VJGMKQ4GDIN4GNZAG6JCAEWUT7BONVFN\",\"WARC-Block-Digest\":\"sha1:HOLM2B4MNBJN53RQ56QW7EH4TOXH4NVH\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2021/CC-MAIN-2021-43/CC-MAIN-2021-43_segments_1634323583408.93_warc_CC-MAIN-20211016013436-20211016043436-00198.warc.gz\"}"} |
https://courses.lumenlearning.com/mathforliberalartscorequisite/chapter/vertical-and-foil-methods-for-multiplying-two-binomials/ | [
"Vertical and FOIL Methods for Multiplying Two Binomials\n\nLearning Outcomes\n\n• Use the FOIL method to multiply two binomials\n• Use the vertical method to multiply two binomials\n\nRemember that when you multiply a binomial by a binomial you get four terms. Sometimes you can combine like terms to get a trinomial, but sometimes there are no like terms to combine. Let’s look at the last example again and pay particular attention to how we got the four terms.\n\n$\\left(x+2\\right)\\left(x-y\\right)$\n${x}^{2}-\\mathit{\\text{xy}}+2x - 2y$\n\nWhere did the first term, ${x}^{2}$, come from?\n\nIt is the product of $x\\text{ and }x$, the first terms in $\\left(x+2\\right)\\text{and}\\left(x-y\\right)$.",
null,
"The next term, $-\\mathit{\\text{xy}}$, is the product of $x\\text{ and }-y$, the two outer terms.",
null,
"The third term, $+2x$, is the product of $2\\text{ and }x$, the two inner terms.",
null,
"And the last term, $-2y$, came from multiplying the two last terms.",
null,
"We abbreviate “First, Outer, Inner, Last” as FOIL. The letters stand for ‘First, Outer, Inner, Last’. The word FOIL is easy to remember and ensures we find all four products. We might say we use the FOIL method to multiply two binomials.",
null,
"Let’s look at $\\left(x+3\\right)\\left(x+7\\right)$ again. Now we will work through an example where we use the FOIL pattern to multiply two binomials.",
null,
"example\n\nMultiply using the FOIL method: $\\left(x+6\\right)\\left(x+9\\right)$\n\nSolution\n\n Step 1: Multiply the First terms.",
null,
"Step 2: Multiply the Outer terms.",
null,
"Step 3: Multiply the Inner terms.",
null,
"Step 4: Multiply the Last terms.",
null,
"Step 5: Combine like terms, when possible. $x^2+15x+54$\n\ntry it\n\nWe summarize the steps of the FOIL method below. The FOIL method only applies to multiplying binomials, not other polynomials!\n\nUse the FOIL method for multiplying two binomials\n\n1. Multiply the First terms.\n2. Multiply the Outer terms.\n3. Multiply the Inner terms.\n4. Multiply the Last terms.\n5. Combine like terms, when possible.",
null,
"example\n\nMultiply: $\\left(y - 8\\right)\\left(y+6\\right)$\n\nexample\n\nMultiply: $\\left(2a+3\\right)\\left(3a - 1\\right)$\n\nexample\n\nMultiply: $\\left(5x-y\\right)\\left(2x - 7\\right)$\n\ntry it\n\nFor another example of using the FOIL method to multiply two binomials watch the next video.\n\nMultiplying Two Binomials Using the Vertical Method\n\nThe FOIL method is usually the quickest method for multiplying two binomials, but it works only for binomials. You can use the Distributive Property to find the product of any two polynomials. Another method that works for all polynomials is the Vertical Method. It is very much like the method you use to multiply whole numbers. Look carefully at this example of multiplying two-digit numbers.",
null,
"You start by multiplying $23$ by $6$ to get $138$.\n\nThen you multiply $23$ by $4$, lining up the partial product in the correct columns.\n\nLast, you add the partial products.\n\nNow we’ll apply this same method to multiply two binomials.\n\nexample\n\nMultiply using the vertical method: $\\left(5x - 1\\right)\\left(2x - 7\\right)$\n\ntry it\n\nWe have now used three methods for multiplying binomials. Be sure to practice each method, and try to decide which one you prefer. The three methods are listed here to help you remember them.\n\nMultiplying Two Binomials\n\nTo multiply binomials, use the:\n\n• Distributive Property\n• FOIL Method\n• Vertical Method\n\nRemember, FOIL only works when multiplying two binomials."
] | [
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224439/CNX_BMath_Figure_10_03_016_img.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224440/CNX_BMath_Figure_10_03_017_img.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224441/CNX_BMath_Figure_10_03_018_img.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224441/CNX_BMath_Figure_10_03_019_img.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224442/CNX_BMath_Figure_10_03_025_img.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224444/CNX_BMath_Figure_10_03_063_img.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224445/CNX_BMath_Figure_10_03_054_img-01.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224447/CNX_BMath_Figure_10_03_054_img-02.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224448/CNX_BMath_Figure_10_03_054_img-03.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224450/CNX_BMath_Figure_10_03_054_img-04.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224442/CNX_BMath_Figure_10_03_025_img.png",
null,
"https://s3-us-west-2.amazonaws.com/courses-images/wp-content/uploads/sites/277/2017/04/24224522/CNX_BMath_Figure_10_03_058_img.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7243462,"math_prob":0.99797744,"size":3568,"snap":"2022-05-2022-21","text_gpt3_token_len":977,"char_repetition_ratio":0.22250281,"word_repetition_ratio":0.048543688,"special_character_ratio":0.2519619,"punctuation_ratio":0.111908175,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.99996686,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24],"im_url_duplicate_count":[null,4,null,4,null,4,null,4,null,9,null,3,null,3,null,3,null,3,null,3,null,9,null,4,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-01-27T14:33:53Z\",\"WARC-Record-ID\":\"<urn:uuid:ed412b3e-4eb2-4e18-9e9f-001652bec462>\",\"Content-Length\":\"45433\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:b9febe48-3bab-478a-9605-3d7607b1e269>\",\"WARC-Concurrent-To\":\"<urn:uuid:2494ebc7-1c00-449a-8cbb-378145980390>\",\"WARC-IP-Address\":\"23.185.0.1\",\"WARC-Target-URI\":\"https://courses.lumenlearning.com/mathforliberalartscorequisite/chapter/vertical-and-foil-methods-for-multiplying-two-binomials/\",\"WARC-Payload-Digest\":\"sha1:F3BRQRKXVWLF2HNNPLISLNKDAO74Z7ZP\",\"WARC-Block-Digest\":\"sha1:45UAVC763JXLLTRIUJCMY66ATLYH53MN\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-05/CC-MAIN-2022-05_segments_1642320305266.34_warc_CC-MAIN-20220127133107-20220127163107-00517.warc.gz\"}"} |
http://softmath.com/math-com-calculator/inverse-matrices/show-algebra-work.html | [
"English | Español\n\n# Try our Free Online Math Solver!",
null,
"Online Math Solver\n\n Depdendent Variable\n\n Number of equations to solve: 23456789\n Equ. #1:\n Equ. #2:\n\n Equ. #3:\n\n Equ. #4:\n\n Equ. #5:\n\n Equ. #6:\n\n Equ. #7:\n\n Equ. #8:\n\n Equ. #9:\n\n Solve for:\n\n Dependent Variable\n\n Number of inequalities to solve: 23456789\n Ineq. #1:\n Ineq. #2:\n\n Ineq. #3:\n\n Ineq. #4:\n\n Ineq. #5:\n\n Ineq. #6:\n\n Ineq. #7:\n\n Ineq. #8:\n\n Ineq. #9:\n\n Solve for:\n\n Please use this form if you would like to have this math solver on your website, free of charge. Name: Email: Your Website: Msg:\n\nBing visitors came to this page today by entering these keywords :\n\n• glencoe algebra 1 used\n• Fundamentals of Physics 8th\n• \"Factoring using the distributive property\" worksheet\n• TI-84 Plus simplify equations\n• graph and chart exercises for 6th-7th grade\n• matlab + solving a system of nonlinear equations\n• physics formula Funaction Tutorial notes\n• how to calculate linear feet\n• how to solve fraction\n• polar equation pictures\n• balanced chemical equation that represents the standard enthalpy of formation\n• \"solve matrix\" \"ti 83\"\n• simplify algebra equations\n• algrebra assistance\n• solving simultaneous equations solver\n• \"cubic equation solver\" excel\n• percents printouts 6th grade everyday mathematics\n• factoring x cubed plus w cubed\n• nc eog practice 6th\n• chapter 3 on prealgebra by k. elayn martin\n• solving for x rational expression solver\n• how to solve polynomial 3rd\n• difference between radicals and square roots\n• multiply rational expressions on ti 89\n• free pre-algebra work print outs\n• formula for conversion of fraction to decimal\n• free TI-89 usage examples\n• completing the square on the ti-89\n• scott foresman math -understandinding ratios worksheet for grade 6\n• sample lesson plan in algebra\n• factoring polynomials high order\n• sample achievement test in elementary alegabra\n• descartes rule of signs online calculator\n• science year 8 test quiz pdf\n• non-linear differential equation\n• rational expression online calculator\n• simplifying a multiplication problem\n• algebra 7th grade test in texas\n• work papers.uk primary school\n• simplifying equations calculators\n• converting decimal to fraction java\n• texas physics homework solutions\n• online calculator for dividing and simplifying\n• Foil algebra plans\n• how to find the greatest common denominator of two rational numbers?\n• math solving software\n• aptitude test papers\n• 9th grade algebra worksheets free\n• printable math word problem sheets\n• Prentice Hall Mathematics Algebra 1 teacher's edition\n• order of operation work sheets for intermediate kids\n• 3rd grade printable homework pages\n• solving three equations with fractions caculator\n• tips to pass matric\n• simplifying Rational expressions\n• factoring help\n• aptitude exam using vb\n• Answers Prentice Hall Algebra Workbook\n• glencoe algebra 1\n• variables-lesson plan\n• trigonomic equations\n• free math poems\n• ERB prep online quizzes\n• 6th grade mixed number worksheets\n• algebra taking the square root\n• equation solver for TI 83 plus\n• factored and expanded equation online calculator\n• math trivias\n• how to solve permutation on graphing calculator\n• print able page of Prentice Hall Mathematics Pre-Algebra workbook page 100\n• solving first-order nonhomogeneous differential equations\n• simplify algebraic equations\n• solve equation matlab\n• Step-by-Step Math Problem Solver factorize\n• how to solve square root of decimals\n• SUBTRACTING EXPONENTS WITH SQUARE ROOTS\n• teach linear graphing worksheet\n• college algebra\n• online equation calculator\n• how to check an equation on a ti-83 plus\n• algebrator software\n• simplified square root\n• www.mathprobles.org\n• using data points to calculate an equation for a line using the TI-83 PLUS\n• antiderivative solver\n• free printable for seven graders\n• college algebra for dummies\n• online graphing calculator with table\n• free adding and subtracting integers worksheet\n• Solving Algebraic Equations with Square roots\n• solve differential equation on ti 89\n• online elementary algebra calculator\n• algebrator\n• petri net software\n• Do My Algebra Homework\n• solved aptitude questions\n• Free Math Solver\n• prentice hall mathematics pre-algebra workbook answers\n• suare feet explained\n• math equation with an answer of -4 (integers\n• free algebra equation calculator\n• algebra for dummies online\n• How to do Hard AlgebrA\n• questions and answer on simultaneous equations\n• math test printouts for 6th graders\n• ti-84 logarithm\n• how do i pass college math\n• 5th derivative of y' MATLAB\n• importance of trigonometry in our life\n• free 9th grade prealgebra math test\n• algebra expression calculator\n• How to convert a square root to decimal\n• how to limit a function on a graphing calculator\n• objectives 3rd grade math nc 1999 released questions\n• ks3 lesson plan for angles\n• free printable kumon worksheets\n• maths yr 11 equations\n• math questions on area third grade\n• Algebrator\n• easy algebra tutorial\n• printable math trivias\n• how to write the function of an ellipse in a graphic calculator\n• lowest common denominator worksheet\n• Algebra Calculate\n• sample tests of absolute value\n• linear equations applet slope intercept standard\n• tutorial on how to factor polynomials\n• Free Algebra 1 Tutoring\n• algebra exponent solver\n• I need Help on Kumon sheets\n• lagrange multiplier solver\n• latest mathematics trivias\n• homework helper.com\n• pdf 7th grade SAT old concepts\n• free online algebraic expressions made easy\n• solving higher order polynomial excel\n• free graphing calculator, systems of constraints\n• free ks2 science sats practice papers\n• o-level test revision paper\n• free primary 4 eng maths sci exampapers\n• math algebra poems\n• ks3 mathematics powerpoints 6-8\n• add more steps to ode45\n• math algebra problem solver with fractions\n• making honors algebra II fun to teach and learn\n• math graphing worksheets\n• logarithms powerpoints\n• learn algbra\n• simultaneous equations solver software\n• variables and numbers makes up algebraic expression\n• apptitude question papers\n• heaviside ti 89\n• Solving quadratic equations involving inequalities\n• how to reduce fractions with radicals\n• powerpoint fluid mechanics\n• prentice hall inc. pre algebra 10-1 worksheet\n• \"Practice EOG\" printout\n• why use algebra\n• kumon sheets\n• algebra help book\n• worksheets with pictographs for kids\n• free math trivia with question and answer\n• solving multiples\n• algebra clep practive test\n• real estate math test tutorials\n• solve quadratic formula by square roots\n• mathematics aptitude questions and answers ppt\n• calculating linear feet\n• general+aptitude+questions\n• teaching algebra to 6th grade\n• addition and subtraction worsheet printables for gr 1\n• rational expressions calculator\n• sat simultaneous equation practice\n• help me solve algebra problems\n• free algebra solvers .com\n• learn algebra problems\n• power point systems of linear equations\n• free children printable working sheets\n• scale factor math ratios\n• translate math equations\n• architectural symmetry worksheet\n• aptitude question paper\n• graph coordinate worksheet print\n• inverse log ti-84 graphing calculator\n• solver input maple\n• multiplying integers calculator online free\n• solve by completing the square on ti-83\n• Systems of Equations substitution problem solver\n• rational expressions calculator algebra 2\n• kumon level g answere book\n• free examination copy in algebra\n• square root property\n• gmat ppt\n• iowa algebra aptitude test sample questions\n• free homework help math leaf and stem graphs\n• factor equation CALCULATOR\n• 7th grade work sheet printables\n• intermediate algebra help\n• c-aptitude test online\n• 9th grade math for dummies\n• keyword math problem solving questions 3rd grade\n• quadratic rules+ finding a, b and c\n• left bound ti 84\n• Dividing algebra gr12\n• usa tutor free worksheet\n• Algebra I lessons on teaching solving systems of equations by graphing\n• find the limit radical solver\n• dividing rational expressions solve\n• accounting homework solutions\n• exam paper for 11 years old\n• free aptitude questions with solutions\n• convert numbers to decimals\n• online calculator for clep\n• new trivias in mathematics\n• convert decimals to a fraction on a ti 86\n• mathamatics lesson\n• find exponential value given probability\n• rational expressions and functions multiplying and dividing calculator\n• free trigonometric software\n• ti89 titanium find the equation of a line slope intercept\n• exponential expression solver\n• ALGEBRAIC EXPRESSION SOLVER\n• systems of equations using substitution lesson plan\n• free first grade general question quiz\n• maths expanding brackets with exponents\n• ks3 algebra worksheet\n• polar equations problems\n• learn basic math and compounding\n• 9th grade math on line\n• college algebra fraction worksheets\n• printable maths worksheets KS3 -KS4\n• graphing hyperbola eqations\n• Multiplying and Dividing Integer Worksheets\n• online equation solver similarity in right triangles\n• online interpolation calculator\n• Intermediate algebra free help\n• combination and permutation tutorial\n• permutation combination calculator\n• TI-89 Simulator\n• Teachers guide-pre algebra McDougal Littell Middle School MATH\n• big adding and subtracting Integers\n• Algebra 1 questions\n• www.Iowa Second Grade Practice Test\n• algebra polynomials formulas chart\n• simplfying a rational expression\n• find the domain quadratic equations\n• maths problem solver\n• scales for kids math\n• calculator for Systems of Linear Equations: Solving by Addition / Elimination\n• *free math e-book*\n• college algebra problem solving software\n• college math practicing sheets\n• Algebra 1 Holt book answers\n• graphing ellipses: graphing calculator\n• pre algebre\n• combining like terms practice\n• multiply and divide rational expressions calculator\n• glencoe mcgraw hill algebra 1 chapter 10 test answer\n• HOW TO SOLVE COMPLEX NUMBERS WITH A CALCULATOR\n• Least Common Denominator calculator\n• solving equations using factoring calculator\n• examples of math trivia\n• simplfying polynomial calculator free online\n• l & t company aptitude question papers with answers\n• decimals to fractions tutorial college level\n• rational polynomial equation solver\n• solving nonlinear equation in matlab\n• variables algebra gradce 7/8 ontario\n• algebra formulas\n• factored, expanded, vertex form algebra\n• interactive game order in the library by Vicki Almstrum\n• free lesson plans to teach decimal to third grade elementary students\n• 6th grade math formula chart\n• Mathematical worksheets Grade 5 adding and subtracting positive and negative numbers\n• simultaneous equations 4\n• vertex form calculator\n• college math freeware calculator\n• math trivias algebra\n• pre-algebra printouts\n• complex distributive property math problems worksheets\n• third grade math two step problems\n• convert decimal to fraction T-86\n• e books of aptitude question and answer\n• math investigatory project\n• graphing calculator online printable\n• rational expression worksheet\n• 9th Grade Algebra formula chart\n• simplfying maths question\n• math-formulae\n• power root calculator\n• PIZZAZZ! BOOK C worksheet answers\n• algebra\n• used book + algebra 2 + resource book + mcdougal little\n• partial sum method\n• Formulation (Algebraic expressions) practise questions\n• calculus made easy ti-89 key\n• iowa algebra test and sample test\n• simplifying fractional square root calculator\n• linear equation project ideas\n• polynomial order multiple variables\n• find the greatest common factor with exponents and tool\n• software mathematics high school\n• rules of adding and subtracting different quantities\n• reasoning worksheets for grade 4 children's\n• problem simplifier calculator\n• solving literal equations for dummies\n• finding the least common denominator on TI 83 calculator\n• printable pictograph worksheets\n• difference between equal from conguent\n• simplify exponent large numbers\n• java + divisible by number\n• gnu graph calculator\n• college algebra (ontario)\n• algebra for ninth graders free worksheets\n• examples of math trivia with answers\n• calculator for graphing method for quadratic equations\n• graphing calculators online texas\n• rules of adding, subtracting, multiplying, dividing different quantities\n• \"geometric sequence\",worksheet,middle school\n• Maths+9th Standard\n• free printable classroom crosssection paper\n• permutations combinations example\n• examples subtraction with algebra fraction\n• 3rd order binomial expansion\n• math tests for year 6\n• Nonlinear Equation Solver\n• mathematical trivias\n• pre algebra\n• PRENTICE HALL CALIFORNIA MATHEMATICS: Pre-Algebra\n• printable coordinate grids 3rd grade\n• learning algebra tutorial\n• triangle worksheet\n• Algebra solver\n• Printable factor tree math grade 9\n• percentage formulas\n• glencoe mcgraw-hill vocabulary sheets for geometry\n• linear and non linear lines and equations graphs in pdf files\n• free online geometry equation solver\n• college algebra help\n• free algebra help for dummies\n• \"Online free Aptitude test\"\n• probability pizzazz\n• solving algebra step by step\n• mathmatical value of pie\n• trigonometry poem\n• prentice hall mathematics books\n• make my own grade 5/6 music theory test online printables\n• factorising expressions calculator\n• logairthms trivias\n• completing the square multivariable\n• Texas TI-84 programming language\n• \"Mcgraw Hill Biology 11\" ebook\n• scientific notation, t1-89\n• maths puzzles worksheets\n• common denominator x calculator\n• algebra calculator reducing to simplest form\n• peoms w/ math\n• parabola formula\n• Define like Terms\n• pdf form of aptitude books\n• free mcqs Accounting\n• excel linear equations in two variables\n• how to solve algebraic problems with a hand held calculator\n• year 7 maths tests free online\n• \"tawnee stone\"\n• cpt trigonometry test\n• algebric identities\n• kids \"working sheets\"\n• solve first order ln equations chemistry\n• ks3 online tests\n• SOLVE ALGEBRA BY GRAPHING\n• calculate Rational expressions and equations answers\n• ks2 worksheet coordinates\n• free online ti-89 calculator\n• order of operations worksheet\n• algebra glencoe/mcgraw-hill work sheets\n• algebra problems to solve for 4th grade\n• TI-84 Plus convert decimal to hexadecimal\n• online polynomial inequality calculator\n• Math trivia\n• coordinates worksheet\n• online boolean algebra simplifier\n• basic cost accounting free books\n• multiply divide integers\n• free secondary maths ppt\n• binary codes TI rom image\n• rational expretion calculator\n• Life Examples of Quadratic Functions\n• aptitude questions in functions with examples in C Language\n• slope ti lesson plan\n• transformation math worksheets\n• trigonometry - word problems\n• questions and answer for simultaneous equations\n• \"algebra activities\" + \"systems of equations\"\n• appitude questions using example ppt\n• algebra for ninth graders worksheets\n• Mathematics, ppt on Basic Inequality\n• idiots guide to calculating eigenvalues\n• online graphing calculator make a table\n• Math trivia?\n• simultaneous equation calculator\n• division of rational expressions\n• simplifying online calculator\n• permutation and combination formula function with visual basic\n• factor my algebraic expression\n• equation simplifier online\n• artin solutions\n• math worksheetsfor ks2\n• intermediate accounting solution key 4th ed\n• linear equations java code\n• pre algabra\n• free factorization solver\n• methods of balancing chemical equation\n• hard math equation\n• multiply rational and radical expressions\n• calculator least common denominator\n• englishKS2SATS\n• math lessons from an aptitude test\n• free 8th grade math tutor\n• cost accounting e-book\n• solving multiple equation grade 7 practice\n• factoring calculator\n• c++ code to simplify a fraction\n• secondary 2 standard form worksheets (addition and subtraction)\n• free\n• Write the following expression in simplified radical form\n• ellipse graph calculator\n• mathmatica algebra calculator mac\n• explanation on how to do quadratic inverses\n• struggling with college algebra\n• free solved aptitude test papers with solution\n• orlean hanna free sample test\n• Past MCQ GCSE Papers\n• volume lesson plans third grade\n• graph three variable TI-83\n• combinations mathematics\n• yr 7 maths sheet\n• intercept form of quadratic equation zeros\n• gr.9 math worksheets\n• heath pre algebra\n• common phrases used in teaching math\n• trivias\n• online factoring\n• combination mathematics calculator\n• heat transfer chapter analysis numerical. swf\n• revision sheets for math grade three\n• solve agebra using equation editor\n• second order differential equations matlab\n• solving for multiple equations in matlab\n• math poems\n• holt middle school math course 2 beginning algebra practice\n• aptitude questions with answers in maths\n• Adding and Subtracting Rational Expressions Practice Problems\n• linear algebra solution by visual basic\n• pre algebra for dummies\n• matlab\n• physics sample conceptual test, quiz\n• linear graph\n• agebra solver\n• solving literal equations\n• geometry formulas\n• Formulas For Geometry Shapes\n• punchline algebra book b\n• how do you solve an linear equation in one variable?\n• algebra problem solver\n• free online college algebra solver\n• how to graph a linear equation\n• polynomials formula\n• algebra solver with steps\n• graph linear equation\n• common denominator calculator\n• algebra Formulas\n• graph a linear equation\n• Compound Inequality Solver\n• algebra solved\n• algebra tiles factoring worksheet\n• Graphing linear equations\n• college algebra solver\n• algebrasolver.com\n• parabolas\n• algebra 2 calculator cheats\n• how do you graph a tangent equation\n• matrices calculator\n• intercepts algebra calculator\n• rationalizing denominator calculator\n• Simplifying Rational Equations\n• standard form equation\n• matrices solver\n• what is standard form in algebra\n• Algebra 2 Equations\n• graph linear equations calculator\n• 4c+5=20-c algebra solver\n• matrices subtraction\n• step by step algebra solver\n• step by step college algebra\n• Free Algebra Step by Step\n• free stp books algebra problems for kids\n• kuta solfware\n• sample test questions onractions\n• linear inequalities lesson plan 10th grade\n• graphing a linear equation\n• algebra tiles worksheets\n• images of algebraic inequalities\n• how to state the width of a parabola\n• how to solve parabolas conics\n• Finding the Vertex of a Parabola\n• Basic Math Formulas\n• math help exponents solver\n• square root calculator algebra\n• polynomial calculator\n• 4x+y=9 solve for y\n• system of equations graph\n• free course of elementary algebra with quizes\n• Multiplying Binomial Radicals and Conjugates\n• algebra 2 problems\n• Examples of Compound Inequalities\n• equation solver in fractions\n• common denomonator calculator\n• linear functions graph\n• parabola\n• identities in algebra 2 calculator\n• Math Formulas\n• algebraic fractions calculator\n• horizontal parabola solver\n• Inverse 3 X 3 Matrices\n• compound inequality solver\n• 1/2(10y-2) 1/12(8y 13) simplify expression\n• math for dummies\n• punchline algebra book b radical expressions and equations\n• free algebra 2 solver\n• Compound Inequality\n• common mistakes in interpreting logarithm laws\n• solving radical equations with a number onthe outside of the radical\n• 2x+3y=12\n• internal resumes\n• linear equation\n• parabola formulas\n• algebra 2 finals study guide\n• parabola examples\n• how to find points to graph a parabola\n• linear inequality solver\n• show me how to solve and simplify radical 100 dividex?\n• algebra i worksheets\n• algebra help step by step\n• Algebra 2 Final Cheat Sheet\n• algebra tiles worksheet\n• maths formula\n• how to graph a quadratic\n• How do you simplify a trigonometric expression?\n• how to graph a straight line\n• linear graphs\n• factoring polynomials calculator\n• What is the value of the algebraic expression 4x2y – 2xy2 y, if x = 1 and y = -4?\n• mcdougal littell algebra 1 chapter 11 practice problems answer key\n• Linear Function Graphs\n• matrix multiplicative inverses\n• how do you multiply matrices\n• matrix equationrequation\n• x 4y > -2, 5x 3y < 7 solve inequalities by graphing\n• polynomial solver\n• matrix calculator\n• algebra solver\n• algebra solver intercepts\n• How to plot a variable in an equation on a ti84 calculator?\n• how to do simplest radical form\n• how to graph an equation\n• descargar simultaneous equation solver\n• long college equations\n• how to solve 2 step inequalities\n• Equation\n• rationalize the denominator\n• Algebra Problem Solver\n• how do you transpose matrices\n• rationalizing the denominator in rational expressions\n• rational equation graphs\n• graphing linear equations\n• rational expressions and equations\n• algebra one solver\n• how to multiply subtract divide and add scientific notation\n• slope decimal protocol math\n• how to get rid of a variable in the denomenator?\n• an investor has 24000 to invest in bonds of Aaa\n• graphing trig functions review worksheet\n• picture to decimal worksheet\n• Glencoe/McGraw Hill 9-3 Multiplying and dividing expressions\n• simplified form of nth square root\n• dividing decimals worksheets 7th Grade\n• mcgraw hill math 8-2 drawing blocks worksheet\n• how to find fourth root on ti 89\n• prentice hall biology workbook key\n• convert step function to laplace\n• adding and subtracting complex fractions online calculator\n• solving systems of equations using substitution word problems kuta software\n• algebraic expression to calculat distance\n• synthetic division and remainder theorem calculator\n• show videos to teach combination problems to kids\n• one of the games at a carnival involves trying to a ring a bell is 25ft\n• Zero-Product Property\n• free slope worksheets\n• +holt mcdougal lesson 14-1 problem solving Polynomails\n• book- simplifying rational expressions foil\n• how to evaulate the regression equation and y-intercept in excel\n• solving logarithm equations worksheet\n• help solve input output problems\n• worksheets with add subt multliply and divide\n• calculator to convert mixed numbers to decimals\n• which shape do we use in a qraudratic\n• table for y=3x^2\n• free inequailities manipulitives\n• math papers to do online\n• MATH DD-16\n• polynomials fraction calculator\n• picture of fraction with shaded parts\n• List of College Algebra Equations\n• algebrator calculator\n• mixed number to percent calculator\n• inequalities\n• fraction and decimal grid\n• wjec mathematics calculator concrete cube question\n• multiply radical calculator shows work\n• high school 2nd year students work sheets for english and maths\n• ti 83 solver\n• multiply a rational expression and a function calculator\n• math graph ordered pairs of integers homework answer\n• how to show a second grader how to determine volume in a math problem?\n• interpolation in math grade 8\n• formula for average slope for root function\n• calculate. of 5/12 of 378\n• hard algebra worksheets\n• exponent calculator simplify\n• simplify using positive exponents calculator\n• lesson on logarithm beginner\n• mcdougal littell algebra 2 book\n• cool words that foil math\n• 1st Grade Math Homework Sheets\n• how to find a cube on ti-30x\n• multiplication of fraction\n• solving linear equations with fractions calculator\n• quadratic functions real life situations\n• College Algebra Formula Sheet\n• {searchTerms}\n• simplifying radicals with variables absolute value\n• linear inequalitie with fractions\n• sem 11 plus practise test\n• Differential Equation Worksheets PDF\n• pythagorean identities\n• recursive worksheets problems and solutions\n• square root of exponents\n• holt keycode for algebra 1\n• pre algebra pizzazz\n• British Method of Factorazation\n• logarithmic function\n• cube root of fractions\n• how to solve algebra for a vertex\n• scale factor worksheet\n• multiple choice diving radicals by using conjugate multiple choice\n• carbon dioxide levels to double those of 2001 by 2050\n• reduced row echelon form\n• factor pairs activities\n• graphing Parabolas Worksheet\n• what does high school algebra 2 consists of\n• free worksheets on LCD\n• multiplying binomial radical expressions calculator\n• worksheet multiply and divide polynomial fractions\n• solveing deffrantial equation secend ordar raung kutta 8th ordar\n• the algebrator\n• graph translations worksheet algebra ii\n• grid square hundredths problems\n• how to divide integers\n• How to Find Riemann Sum for equation\n• algebra inequality calculator\n• domain and range worksheets free pre algebra\n• how to subtract polynomials\n• volume worksheets for fifth grade\n• common denominators of rational expressions calculator\n• free automactic math word problem solver that shows work\n• is it hard to pass finite math\n• calculator for solving perfect square trinomials\n• distributive property with fractions word problems\n• expand an expression\n• review of logarithm\n• Laplace Transform Calculator Online\n• descargar gratis simultaneous equation solve for ti 89 titanium\n• online lcd calculator math\n• remainder as a fraction\n• holt algebra 2 chapter 10 conic sections answer key pdf\n• math 52 factoring engine\n• Multiplying Polynomials Worksheet Math\n• fractions grid\n• use scale factor games\n• a cruise line problem find the number of deluxe\n• 5th grade coordinate graphs of the mario characters\n• reduce the rational function\n• free math trivia algebra\n• boolean algebra problems\n• east battle lake in covers an area of about 1950 acres\n• multiplying trinomials\n• fraction number line up to 20\n• difference between LCM and GCF in 6th grade math\n• design of line\n• easy free printable graph ordered pairs to make a picture\n• binomial expansion solver\n• Solving Simple Inequalities worksheet\n• help with passport to algebra and Geometry\n• teacher answer key problem solving 8-2 finding percents\n• Online Equation Calculator Solutions Sets\n• what is a polynomial function in linear algebra\n• write integral for area of region\n• strategies for multiplying decimals\n• diiferential equations homogenous Linear equations: the general solution with initial values tutorials\n• HOow to use matcal to solve questions on ConjugaTE GRADient method\n• simplifying radicals calculator with work\n• Scale Models Word Problems\n• interval notation\n• multiplying rational equations calculator\n• examples of subtract\n• a study found that the probability that a married woman is in the labor force is 0.6\n• simplify polynomial calculator\n• special binomial product calculator\n• fourth grade expressions with parentheses\n• add and subtract rational expressions for dummies\n• calculate of 5/12 of 378\n• mississippi border\n• hardest math problem\n• life example in pre algebra\n• how to multiply three quadratic equations\n• sum of squares on a ti-83\n• 5 th grade TEKS (RELationship )on a balance scale below each oval (3) has the same mass. Each triangle has the same mass (5). What is the value of each?\n• writing equations basic 6th grade algebra worksheet\n• +galaxy note 2 scientic calculater\n• in a rational expression equation what are restrictions?\n• Least Common Multiple of Monomials\n• caculating slopes online worksheets\n• example of factoring by grouping\n• 8.9 turn into a +fraction\n• whats a cubic polynomial function withzeros 1, 2 and3\n• compare rational numbers\n• Integer worksheets pizazz\n• aeasy.gr\n• college algebra calculator online\n• free beginners algebra help\n• finding the x and y intercept free worksheets\n• how do u put ratios in order from least to greatest\n• Simple steps for multiplying and subtracting positive and negative inter\n• 7th grade math formula chart\n• differential math problems for 6th graders\n• coordinate algebra calculator\n• matlab format no scientific notation\n• 5 math representations\n• Ordered Pair Solver\n• ppt.basic transposing\n• sample lesson plan on quadratic equation\n• 1 grade math homework sheets\n• I can do math\n• Rewrite each of the following equations in proper programming code. e = x2 N = L + 2 / D – 8 + B\n• a sales person earns \\$132 selling \\$2200 worth of television sets whats the commission rate\n• Punchline Algebra book b quadratics equations and functions\n• formula for multiplying fractions\n• Simplifying Polynomials Worksheet\n• exponential interpolation\n• get the point graphing worksheet bowser\n• cubic equation factorise\n• SOLVING RADICALS EQUATION USING TI-89\n• free math worksheets\n• solving secend ordar differential equation runge kutta 8th ordar.pdf\n• ordering fractions softmath\n• equivalent equations\n• 3rd and 4th grade reasoning math problems\n• add subtract multiply divide integers pdf\n• geometry taxicab distance calculator\n• factoring polynomials for dummies\n• 7th Grade Scatter Plot Examples\n• illustrating fractions using brownie model\n• line of best fit definition\n• perimeter of cross section\n• concrete lesson plan for quadratic equation\n• how to install algebrator\n• algebrator free trial\n• why does the coefficient of x square have to be 1 before arranged ina completed square form ina quadratic equation?\n• British Method of Factoring\n• one of the games at a carnival involves trying\n• saxon math 87 test 18a answer key\n• solve second order differential equation matlab\n• order of operations on the graphing calcualtor\n• math helpers square root\n• hundredths grid\n• elementary algebra skill multiplying radical expressions of index 2 with variable factors\n• substitution method factor poly\n• GED LInear equation worksheets\n• prentice hall 6-3 worksheet solving systems using elimination form G answers\n• 4th grade expressions with parentheses printable worksheets\n• algebra dummit solutions\n• solve by factoring x^2-5x-6=0\n• Domain and Range Calculator Online\n• solving rates using complex fractions work sheets\n• how to slove apptitude questions\n• math Decimals for 9th grader\n• variable fraction calculator\n• Free Online TI-84\n• double variable idea\n• softmath algebrator\n• identifying number types worksheet\n• prentice hall page 417 need answers for 7th grade math course 2\n• clock problem with solution\n• how to identify the vertex of a graph\n• check the size of a matrix in maple\n• solution buckling differential equation\n• how to determine one to one function algebraically\n• math books online pre algebra\n• algebra expression for third grade\n• label x intercept\n• simplifying radicals with variables free worksheets\n• 5 math algebra formulas\n• 3rd order power equation\n• kumon english level D1 answer book\n• 6th grade multiplying fractions worksheets\n• rationalizing denominators- igcse international maths\n• explain combinations in math for 3rd grade\n• dimensional analysis tutor software\n• expand logarithm\n• multiplication and division of rational expression calculator\n• simultaneous nonlinear equation solver matlab\n• converting positive and negative intergers worksheet for 6th grader and answer keys\n• circle templates to print\n• solve the problem x=-3\n• solving simultaneous odes in matlab\n• How long would it take \\$2,800 to grow to \\$8,400 if the annual rate is 4.2% and interest in compounded monthly?\n• hi tech home improvements algebra problem\n• T1 83 Online Graphing Calculator\n• +mathematica nonlinear step function\n• algebra II honors book hall online\n• dividing polynomials\n• simple algebra worksheets TES\n• pre-algebra with pizzazz 7th grade #158\n• quadratic formula in the ti 84\n• factoring trinomials worksheet 43\n• step by step solution to log(4)+log(x+1)=log(5x)\n• explain algebra 1\n• classifying soild figure triangle\n\nYahoo visitors came to this page yesterday by entering these algebra terms:\n\nExplain how the solution to the inequality differs from the solution to the equation, prentice hall. inc , multiplying Polynomials, twp step equation problems 8th grade worksheet, free worksheets word problems for trigonometry, where can i find answers for holt Algebra 1 problem solving workbook, what are the points for 8,4 on a graph.\n\nFunction Operations with radicals, rotational motion formulas, multyplying polynomials for dummies.\n\nAlgebraic long division, mixed number to decimal calculator, LCD AND GCF WORKSHEETS, latest algibrator free download, middle school math with pizzazz! book d topkic 3-k.\n\nPrentice hall answers solving two-step inequalities practice 7-6, +simple fractions addtion and subtraction questions and answers all possible combinations, hundreds grid in tenths.\n\nMiddle school math with pizzazz d, how to solve advanced proportions, solve math problems decimal fraction simplest form, definition for decimal.\n\nFraction Multiple Choice Printable Test, area problems 9th grade, maths questions for 10 year olds, worksheet on simplifying radicals and area, Explain why we really don't need to have a rule for subtraction of signed numbers., Exponential quadractic equations in real life.\n\nFull subtractor truth table, extraneous solutions free calculator, multiple inequality in one formula, algebraic expressions.\n\n9th math problems, solving linear inequalities fractions, equivalent algebraic expressions, line a passes through points (5,5) and (-3,-7) line b passes through (10,-3) what is the equation of line b is y=calculator.\n\n2, using substitution calculator, math.com fraction flowchart, IGCSE map scale worksheets wth answer key, how to check 9+5k=45+2k, hyperbolas solver.\n\nInteractive Linear Equation Games, ordering decimals and fractions calculator, architectural computer symbol.\n\nAutomatic math solver with work shown, pearson prentice hall pre algebra chapter 1 intergets , planes, etc, math pizzazz book e, adding and subtracting absolutes values worksheet, lesson 5.4 \"multiply and divide rational expression\", factoring 3rd order polynomials, free algebra word problem solver.\n\nFun class projects for trig functions, linear equation graph generator, math dictionary cubic root describe the graph', graphing polynomial functions worksheet, poems about decimals, Examples Of Polynomials.\n\nRational expressions worksheet, factoring trinomials, 5, a study found that the probability that a married woman is in the labor force is 0.4., addition subtraction equation worksheets, Properties of Exponents and Solving Exponential Equations handout.\n\nAdding subtracting multiplying and dividing integers worksheets, simplify expressions with negative exponents calculator, write the equation of a line, algebrator dividing monomials, adding subtracting multiplying and dividing integers, algebra1 connection to algebra 1 chapter 1, properties of real numbers chapter2 pdf online, steps for solving equation of the axis of symmetry.\n\nCollege algebra cheat calculator ti84, add subtract divide multiply fractional expressions worksheet, adding and subtracting integers worksheets, worlds hardest game.swf, squareroot with fractions and decimals, nth term PROBLEM WORKSHEET.\n\nMiddle school math with pizzazz book d, rationalizing denominators with radicals topic index | algebra 2/trig index | regents exam prep centera fraction that contains a radical in its denominator can be written as an equivalent fraction with a rational denominator (a denominator without a radical). ne, put decimals in order calculator, chapter 6 project let's dance algerbra 1, solving logarithmic equations mixture analytical geometry worksheet solve each equation.\n\nIntegrated algebra problems, extremely hard math problems and answers, middle school math with pizzazz book d answers.\n\nMixed numbers to percent calculator, one step equation worksheet, subtracting fractions with variables and solving for x, factorize complex.\n\nSimplifying radical expressions solver, Solving hyperbola, Simplify Exponent Calculator.\n\nCa you explain second degree trig equations step by step, solutions to abstract algebra dummit, yvonne paid \\$11,448 for a new automobile. this, simplifying complex fractions calculator.\n\nInequalities: graphing the solution set of an equality Punchline algebra Book A marcy mathworks worksheet 9.1, kumon answers level d, Algebrator for Students Free Download, multiplying and dividing decimals calculator, online graphic calculator witg diagnostic button, simplifying radical expressions activity.\n\nKuta software infinite algebra 2 systems of equations word problems show how, non-linear simultaneous equation calculator, decimal grid tenths, bob needs to drive 592 miles.\n\nUsing subtraction to solve a system worksheet, expressions worksheet 4th grde, year 8 free maths test papers, free slope printable, parabola in nature, solve non linear equation in excel, coordinate plane graphing activities for 6th graders.\n\nQuadratic equation in real life situations, rational root calculator, inequalities calculator that shows work, algebra challenge for ks3.\n\nDistance between each pair of points (3,6) and (1,2), syntax error on ti-30xiis calculator entering e^-6/60, var model in excel, writing and graphing equations from a local business, que significa mixed number, Factoring Polynomials by Grouping, math can solve its own problems.\n\nSolve parametric system TI-83, middle school math with pizzazzi book D, \"interval notation solver\", math help for prealgebra 7th grade.\n\nExamples of 8th grade math dilation problems, solve mixed equations square root equation, www.kutasoftware.com logarithms algebra 2, how to solve f(x) with fractions, substitution 8x-3y=16 y=-3x 6.\n\nActivity diagram for student attendance, minimum maximum graphs, how to complete the square in ti89, Simplifying Expressions with Integers Worksheet.\n\nPowerpoint basic transposing, integers adding rational numbers steps, equivalent expression usinf radical notation calculator, in a certain year the amount a of garbage in pounds produced after t days by an average person.\n\nFinding intercepts of polynomials, Number Line Including Negative Numbers, binomial expansion of fractions, algebra solver finding zero, extracting the root, scale factor games, 9th Grade Math Print Outs.\n\nSolve the equation x -12x +39 c -28 =0 whose roots are in a.p, difference of cubes, comparative pie chart exam tes, solving simultaneous equations minitab, inequality worksheets easy, square root exponents, multiplying monomials worksheet.\n\n5th grade algebraic graphs, graph x^2-6x+4, linear ordinary differential equation practice, multiplying decimals calculator, Circle Graph Template.\n\nPrintable slope game, y=x^2-10x+2 quadratic function, algregra matrice, 100 Grid For Decimals, what is radical form, answers problem solving: draw a picture ans write an equation reteaching 9-10, absolute value equations calculator.\n\nState the domain and range of each function, define a control variable, free solving equation word problems worksheets for sixth grade, logarithmic equation calculator, use aTI 83 to solve radical expressions.\n\nFree geometry rotation worksheets, quadratic function perimeter, perfect square trinomial calculator, need information on the algebrator, examples of 8th grade algebraic translation, cubing a quadratic equation.\n\nLinear function graph for 5th grade, 7th standard maths, math worksheets for calculators, multiply rational expression calculator, quadratic on ti 30xa, cube root ti-83.\n\nWhat side do you shade when graphing inequalities, interval of increase, dividing powers calculator, multiply quadratic equations.\n\nSolve rungge-kutta 8th secend ordar .pdf, excel ctrl+shift+enter, logarithmic functions notes, middle school math with pizzazz book d answer, Add, Subtract, Multiply, and Divide Rational Expressions worksheet.\n\nHs histori qution&anser, factoring a trinomeal worksheets free, trig functions simplifying calculator, Glenco graphing Linear functions ( workbook).\n\nA negative positive grid, orleans hanna algebra, graph with 2 asymptotes, converting decimals to fractions in matlab, practice test for 2 step equations 6th grade, percent circle template, maths of standard 7th.\n\nExplanation on how to solve grade 11 math parabolas, 8th grade solve parabola worksheet, math puzzles for 11 year olds - linear equations with 1 variable, Kuta Software, how to teach permutations and combinations worksheets, rectangular coordinate method.\n\nGraphing linear functions, algebra pretest, Glenco graphing Linear functions, scale factoring calculator, multiplying and dividing fractions ca, pizzazz book d answers.\n\nStandard algorithm for addition of non base 10 numbers, how is throwing a ball a parabola, softmath.com, geometry formulas, Adding and Subtracting Equations Worksheets, simplifying a negative cube root.\n\nNewton+fsolve +matlab, algebrator 4.0.1, elementary algebra for dummies, counting factors, what grade teaches Radical equations, printable worksheet.\n\n18, math sheets answer keys practice operation with radical expressions algebra 1, what do you call a baby polar bear, punchline, statisticc and probability algebra, free printable algebra worksheets with answers, add subtract multiply divide integers worksheets, examples algebraic expressions and variables.\n\nGraphing inequalities on a number line worksheets, dissdributive property with expoent & variable, algebra word problems.\n\nUnit circle worksheet algebra, free printable saxon math homework sheets, write interval notation for graph, determinant matrices, how do you factor out a monomial, lcd 12xalgebra, multiplying and simplifying parabola.\n\nLinear equation in life situations, what number is 19% of 98, Find the equation of the line and predict the number of cases 40 years from 1992 in 2032 using the equation of the line, quadratic equation with fraction, expansion algebra calculator.\n\nLong negative and positive number line, the best and fastest way to learn trig, simplify exponential expression worksheet unit seven, subtract root exponent, graphing slope intercept form worksheets.\n\nSquare of binomial pattern practice, algebraic fractions application, third grade equation calculator.\n\nComposite function calculator, some working examples lagranges method of undetermined multiple choice question and answer, how to order algebrator.\n\nQuestions based on rational nos for class7, adding signed fractions worksheets, soalan trigometri, how to multiply trinomials, math point.\n\nHow to solve non linear differential equations, pre-algebra with pizzazz answer key 125, solve the problem for h(x)=-2x.\n\nMult. & Divide Rat'l E, decimals to fraction, 9th grade long division problems, samples of learning task + writing inequalities, optional sats year 4 english 1998, summation calculator with combination, grade 5 math question papers.\n\nFree ti 84 download for win 8, solving cubic functions worksheet, Integers and Expressions worksheets, factor trinomials, identity linear equations, determine the dollar amount for the cement needed for a sidewalk, inverse property examples.\n\nWorksheets for cross cancelling, multiplying polynomials, Solving Radical Equations Online Calculator, rational expressions, fraction in lowest terms.\n\nSquare root calculator ti-83, examples of an cubic binomial, solving special products to find products on a calculator, use the five steps solve problem.\n\nQuadratic equation worksheet answers, dif eq solution matlab, ged division worksheets, solving 2 odes simultaneously in matlab using fsolve, matrix division calculator, polynomial factoring formulas cheat sheat.\n\nReal gcf application, solving rational equations calculator online, Explain and provide an example of the square root property. How do you determine the principal square root?, formula sheet for algebra 1.\n\nGraph quadratic equations worksheet roots vertex, finding x y intercepts equationnets, solving exponents of polynomial functions in TI-89.\n\nPunchline algebra book b quadratic equations and functions, simplifying exponential expressions, Has the content in this course allowed you to think of math as a useful tool? college algrebra, sum is -4 and our product is +24 what integer am i ?, matlab code exponential negative graph.\n\nSample problems for two variable equations, Excel Matrix Operations, factor the polynomial by grouping calculator, multiplying and dividing decimals calculator online, factoring by grouping.\n\nInterpolation in math grade 11, identify slope and y-intercept worksheets, algebra connection worksheet answers.\n\nNegative number line, middle school math pizzazz book d answers, a motel clerk counts his \\$1 and \\$10 billsA motel clerk counts his \\$1 and \\$10 bills at the end of a day. He finds that he has a total of 59 bills, fraction practice multiple choice problems.\n\nAdvanced sums on algebra with squareroots, ti 89 differential equations made easy key, practice fraction problems free nmultiple choice, Breaking down exponentials worksheet, holt mathematics 206 simpliying fractions, proportions worksheets.\n\nAssignment term 2 mathematics, consumer math, pythagorean theorem poems, maths online cheats, solving one-step addition or subtraction equations marcy mathworks bridge to algebraanswer key, inverse square root calculator.\n\nSum of arithmetic series formula, pizzazz book d, add subtract divide multiply fractional expressions worksheet grade 8, poem about algebric expression, simultaneous equations in minitab, Simplify Images For Math, accounting math linear equations.\n\nBasic geometry formulas, numbers usa, algebra formula sheet.\n\nSolving equations models, solving for a variable worksheet, finding unknow number when dividing and fractions, standard algorithm for addition of base 6, write the improper fraction and mixed numbers in the boxes represented above each box on the number line, algebra pretest printable free, Printable Variable Worksheets.\n\nFactoring Pattern program, binomials and polynomials, Square Root Numbers, Inequality Number Line Calculator, printable worksheet on ratio and to the second power with answer key.\n\nSubtract negitives and positive calculator, 7th grade study island - math formulas, balancing number problems year 4, Log formula, balancing chemical equations with algebra, rational expressions calculator, mixed numbers to decimals.\n\nAlgebra 1 connections chapter 8 worksheet factoring polynomials answers, how to solve differential equations on ti 89, free printable worksheet extended response math problems, can linear functions be written in vertex form, quadratic formula, what is 2x exp 2 + 4x +1=0, graph of system of linear inequalities.\n\nMultiply and divide decimals worksheets, college algebra entrance exam, factorise my quadratic.\n\nExamples of greatest common factor numbers with variables, Graphing 2 Variable Inequalities Worksheet, What is the sum of the polynomials 3a2b + 2a2b2 and –ab2 + a2b2 ?, step by step procedure to multiply matrices on TI 83 plus calculator, tutorials for algebra-g.e.d, long division worksheets for 4th grade that are printable.\n\nWhat is the relationship between the length of a secant and tangent drawn from the same point, printable maths homework for 9 year olds, write the decimal that is shown, graphing non linear systems, perfect cube numbers.\n\nVolume Formula Sheet, statistics test statistic formulas, quadratic word problems worksheet.\n\nHelp me pass algebra two, equation calculator with steps, 3ab–z = y(4ab +2z) literal equation, i am a proper fraction the sum of my numerator is one digit sqare.their product is a cube., prealgebra using proportions, equivalent fractions.\n\nMiddle school math with pizzazz book e answers, decomposing polygons examples, identifying quadratic functions, printable balancing chemical equations problems, algebra software.\n\nGlencoe algebra 2 workbook answers, Solving Quadratic Equations Calculator, algebra 2, show us how to do decimals fraction number lines.\n\nFinding the nth term, Factor Quadratic Equation Calculator, translate cubic expressions, pearson education math algebra answer key for 5th grade, cube number cuts egyptian fractions.\n\nThird grade math vocabulary, algebra.ppt, completing the square 2x2+2x-31, expand and simplify polynomials, 6, transitions to algebra 2 Quiz over ratioonal expressions and equations KEY, graphing quadratics hard.\n\nHow do you find the lcm of two expressions, Solving Quadratic Equations Worksheets, intermediate accounting 9th canadian edition help, adding matrix equation, softmath.\n\nInequalities worksheet 7th grade, Free Saxon Math Printable Worksheets, how to simplify a rational expressions with cubed roots.\n\n4, everyday math printable percent circle, letter coordinate graph, chemical compound formulas, worksheet, 6th grade, how do to Ax By=C formula, plot point in the coordinate plane, parabola online graph calculator.\n\nEquation calculator with fractions online, drawing made of right triangles, decimal grids, method of substitution calculator, pre algebra study sheets, simplify equations with variables exponents and powers.\n\nMixed fraction to decimal, how to divide the ellipse explination with proper sketches, fraction to percentage formula, luis has \\$160,000 in his retirement account at his present company. because he is assuming a position with another company, luis is planning to roll over his assets to a new account. luis also plans to put \\$2500/quarter into the new account until his retirement 30 years from now. if the new account earns interest at the rate of 8%/year compounded quarterly, how much will luis have in his account at the time of his retirement?.\n\nTwo-variable inequalities calculator free, volume cube worksheets, reducing fractions, 5th grade placement test cupertino.\n\nTenths fractions, where a line crosses the x or y axis name for this, kuta software infinite algebra 2, Steps for Simplifying Radical Expressions, mathematical puzzles-algebra.\n\nKuta sanser key to 2012 kuta soft ware solving by factoring, algebrator download, least to greatest calculator, 6th grade coordinate plane worksheets.\n\nPowerpoint simplying radicals, how many ways can 24 be writtenas the sum oftwo different prime numbers?, mixed fraction to a decimal, sample polynomial equation, geometry chapter 11 circles applications and problem solving real world answers, octave interface, mixed fraction percentage calculator.\n\nArea with polynomials, solve radical equations calculator, factoring polynomial fractions, geometry TEMPLATES circle.\n\nYear nine alegebra test, fraction in college ppt, kumonsample sheets English class 5.\n\nQuadratic equation worksheets with solutions, 3 dimensional shapes with flat faces sides, precalculus worksheets free printable, prime quadratic equation graphs, integration calculator show step, negative and positive number line, step by step rational expressions calculator online for free.\n\nTrinomial calculator, extraneous solutions calculator, algebra with pizzazz page 157, graphing cubic functions worksheet, Per algebra with pizzazz.\n\nAnswers to glencoe mathematics algebra 1 11-3, preliminary theory linear equations, simplify the.radical expression, non-homogeneous difference equation, mixing soultions problem, trigonometry.\n\nUsable ti 84 plus calculator online, hardest algebraic expression, www.algebraicthinking.com, pizzazz worksheets, excel tutorial +worksheet, algebrator free download free.\n\nDecimal to fraction, problem solving make a table practice 4th grade 18-6 answers, number line negatives and positives, elementary math questions and answers, symplifying rational exponent worksheets.\n\nQuadratic equations for dummies, practice to simplify exponents, y=3x=4 )=3x=4 system equation, middle school math with pizzazz Book E.\n\nGeometry pond problem solver, decimal to fraction chart, solving binomial equations, 3, how to write a difference equation- math modeling, algebra rational expression calculator, graphing linear inequalities calculator.\n\nSubstitution calculator, mixed fractions converted to decimal, greatest common factors chart.\n\nMaths online free, solve -11h = 77 math equations that balance algebra, simplify radicals interactive.\n\nSimplify fg to the 6th powe, factoring radicals and quadratic equations, algebra 1 computer programs, rewrite without using rational exponents, online calculator with percent symbol.\n\nMiddle school math with pizzazz d-31, bearings worksheet printable free, examples of factoring trinomials, free math formula chart, middle school math with pizzazz! book d topkic 3-k what do you get when you,,,, maths games +decimals, hard math equations.\n\nStandard 7th maths, step by step square root solution, Algebraic Long Division Calculator, pemdas.\n\nCompare fractions least common denominator worksheet, divide square roots calculator, math graph ordered pairs of integers homework answers chapter 22 lesson 2, simplifying radical expressions calculator.\n\nSimple quadratic equations problems, basketball court parabola, solve fraction for children of eight year.\n\nSolving radical equations using a graphing calculator, operations with polynomials, like terms free worksheet, radical expressions worksheet, how to assign pronumerals in simulink, intercept calculator, equations for 4th grade.\n\nLinear equations exercises, how do you solve implicit and explicit \"equations/you tube\", matlab decimal to fraction.\n\nFree download of aptitude questions with solutions, 12 toothpicks make 5 squares 11 solutions, how does intepolation in math work grade 11.\n\nAbsolute value linear inequality, \"mcdougal littell algebra 2 chapter 9 test answers\", factor tree 54, maths worksheets ks3, pre algebra with pizzazz, activities for teaching adding, subtracting, multiplying, and dividing rational numbers, solving linear equations with several occurrances of the variable: fractional forms and binomial numerators videos.\n\nRational expressions calculator online for free, glencoe one step inequality word problems worksheet, lcm calculator with variables.\n\nEquations with fractional exponents, algebrator software, integration: algebra the percent equation, formula for Evaluating And Graphing Polynomial Functions.\n\nSolve quad linear difference equation, What is the difference between a polynomial function and a rational function? Create a rational function, then tell us the domain and range of the function. For the class create two functions, one of them must be a rational function, providing two input values for each function. For your classmates problems identify the domain and range of each function and evaluate the function with the given values., systems of inequalities math sheets, Purchase Ti84 emulator, how to solve mixed second order partial differental, conversion squmeters to feet.\n\nTaking the square roots an equation, fractions paper, signed numbers worksheet 7th grade, kumon level d answer book, graphing linear inequalities worksheet, math cheat sites for radicals and roots, dividing problem.\n\nVariable worksheet for kids, f-14 intercept, inequalities quiz 6th grade, expressions with square root, \"binary matrix multiplication calculator\", 8th grade math factoring problems, math worksheets answer keys calculator.\n\nWhat is the difference in fractions, Factor Quadratic Equations Calculator, lwa of exponents.\n\nSimplifying Radicals Calculator, rational equation worksheet, what does a square root function look like, 7, Detailed Lesson plan in properties of equality, Quadratic Factoring Calculator.\n\nLeast common multiple calculator algebra, free imaginary numbers worksheet, find range of quadratic equation, integers with fraction, Find the equation of the line and predict the number of cases 40 years from 1992 in 2032 using the equation of the line, scatter plot equation calculator, accelerated math from number 243577.\n\nIdentity Calculator, Numbers, Factors, and reduce to lowest terms algebra answer, find roots xtanx function matlab, teachingvariation0faskill, how to turn decimals into radicals, answers to trig book.\n\nMiddle school math with pizzazz Topic 5-b answer ley, number line, dividing,multiplying,subtracting,adding integers, integer coordinates in a grid,etc, end behaviors for graphs, printable slope quiz, in 1980, median family income was about &18,000.\n\nSquaring fractions, wave calculations, 8 more than a number is equal to 32 in alegbratic expression?, pre-algebra with pizzazz creative publications page 210 answers.\n\nQuadratic System Calculator, free standard form calculator algebra, how to find the percentage in a circle graph algebra using variables, logarithm test questions, algebra 1 graphing linear equations answer key.\n\nAlgebra substitution method calculator, TI 84 Graphing Calculator instruction at FSCJ, Algebra with Pizzazz Worksheets.\n\nFind the slope and y intercept of y=4x+1 math problem solver, trapezoid volume formula, work sheet on splving equations.\n\nBalancing equation worksheets for 7th grade, simplifying radicals math 1101 augusta technical college, solving second degree equation quadratic equation application software, prentice hall pre algebra chapter 5 check point quiz, expression factoring calculator, second order ordinary differential equation solution, algebrator.\n\nAddition of mixed numbers, graph power functions, multiply quadratic functions, how to do nonlinear models on ti 89 calculator, freshman algebra esponical growth problems.\n\nPositive rate of change example, rectangle formula, test papers englsh medium math grade 6,7,8,9, factor chart 1-100, regina wants to cover one wall of her room with wallpaper, algebrator free.\n\nWhat is the answer key for pizzazz book d on page d-60, solving quadratic equations, circle graphs templates, writing radical expressions in their simplist form, adding and subtracting rational expressions with different denominators calculator, rational exponents, cube function in real life.\n\nPrentice hall solving two-step inequalities practice 7-6, worksheet on volume for second grader, math formula sheet, how to solve eigenvalues on TI-83 PLUS, Equivalent Expressions Equations.\n\nPearson prentice hall practice 2-6 worksheet theoretical and experimental probability answers, ucsmp algebra answer key, multiple choice laws of exponents, how many mg of a metal containing 45% nickel must be combined with 6 mg of pure nickel to form an alloy containing 78% nickel? -1-, kuta prealgebra exponent worksheet.\n\nAdding and subtracting radicals calculator, multiplying rational expressions calculator, INTEGERS, how to find the greatest common denominator.\n\nSquare root for dummies, systems of linear equations worksheets, logarithm cheat sheet, quadratic systems elimination, conceptual physics answers addison wesley, exponents for grade 10 worksheet, teaching third gradersva fun way to powerpoint.\n\nDivide rational expression calculator, quadratic function games, middle school math with pizzazz book d renaming units of length ansers.\n\nTeach yourself mathematics online, Systems Of Equations Elimination, Number Line Printable, free math worksheets algebra tiles, ks3-how to dividing decimals, adding.\n\nFull subtractor circuit, inequality worksheet generator, inequalities graphing the solution of an equality punchline algebra book a 2006 marcy mathworks, multiplying decimal calcultor.\n\nLogarithmic formula, prentice hall course 2 mathematics answers for page 482, solving products and quotients of rational expressions, steps for solving systems of equations using elimination, middle school math with pizzazz topic 5-b answer key.\n\nWhat are some math problems forthe Side Angle Inequality theorem, 19, powerpoint trigonometry functions, reference sheet, Use the GCF of the terms to write the expression as the product of two factors with integer coefficients. -2x3 - 4x2 + 4x, positive rational numbers example, binomial joke worksheets.\n\nWho invented combining like terms, compound interest free worksheets uk, non examples of simplest form equations, inequality word problem calculator.\n\nSquare feet translator, what does x+y<- 2 for a linear inequlaity, summation notation solver, graphing equations worksheet free, Solve quadratic inequalities calculator.\n\n6th grade TAKS Math Formula Sheet, Solving Combinations, mississippi bordering states, kuta sofware - infinite algebra 1 graphing inequality, Real Life Quadratic Function Examples, if a 500' roll of wire costs \\$18.44, what is the cost of the wire per foot?.\n\nWhat is commutative property of addition, gaussian elimination for matric, how to factor exponents, elementary algebra practice, get the point middle school with pizazz book e, proof of binomial moment generating function, least common multiple of monomials.\n\nIntegrated math equations calulater, calculator for trinomial reversenin foil, free algebra worksheets with answer key, monomial degree calculator, how do you factor the difference of 2 squares with examples.\n\nBinair char to matrix matlab, a factor table, polynomial worksheets with answers, adding and subtracting polynomials, +symmetry of heat conduction equction, adding and subtracting fractions flipbook.\n\nTransformations of exponential graphs, pre-algebra with pizzazz answers, how to calculate eigen vectors in MATLAB ?, systems of equations 3variables, automatic online fraction simplifier, if the slope of road shown is 2/3 find the value for h if v = 5ft, how to solve the graph of physics in standard 12.\n\nFree trig worksheets, negative and positive coordinate graph mario, powers of 10 math, steps how to do algebra sums, Rationalizing radical Denominator Worksheet PDF.\n\nY=x^2 graph end behavior, factoring 3rd order polynomials with TI83, rational expressions and applications, summation calculator.\n\nMath reference sheet, simplify exponents calculator, algebraic adding and subtracting (-9) + (-11) -(+14), how do I find the polonomial only giveb the graph, a firm buys two inputs, labor l and capital k, the total amount of which cannot exceed 100. the wage is \\$8, and the rental rate is \\$10. the firm can at most spend \\$840 on the two inputs..\n\nTI-84 Downloadable Calculator Free, kuta software, compute and simplify the difference quotient, example of an algebra expression for third grade, free Adding and Subtracting Equations Worksheets, Java SUM Function.\n\nSimplify expressions online, honors 6th grade math test, math answers cheat, 4 bit binary subtractor truth table, internet prabola, download college prealgebra formula sheet ebook fileshare.\n\nConvert radical to rational calculator, who invented multistep equations, adding rational expressions calculator, permutation and combination powerpoint for middle school, linear proportions worksheet.\n\nWww.kutasoftware. solving exponential equations by logging algebra 2, a pair of perpendicular line segments, pre algebra with pizzazz!.\n\nALGEBRA CALCULATOR FOR 4(U-9)-6=-6(-3U+5)-4U, excel formula creator, clock problem.\n\nSolving two sample test calculator, equation with like terms, solving systems of equations using substitution worksheet, C# hard math equations, worksheet on polynomials perimeter models, dividing powers cheat.\n\nDummit Foote solution, algebra proportions worksheet, example of exponential equation.\n\nStandard form of a linear equation, dividing exponential radical equations, Transformation activity for 4th Grade, negative decimal number line, picture of full adder circuit that form the arithmetic sum of three input bits it consists of tree inputs and two outputs, reflection across x=1, www.kutasoftware.com.\n\nSolve complex equation on ti 83, fraction dosage calculations, pizzazz topic 4-f:area of triangles awnsers, 1.\n\nFraction equation calculator, pre algebra formulas and examples sheet, emulator ti-84 graphic cal.\n\nIntroduction to permutations and combinations activities, graphing slope intercept form worksheet, dividing square roots calculator, log formula, x^2-8x+15=0, free algebrator download, decimal to square root calculator.\n\nAlgebra Formulas Square Root, fraction factor tree, Rational Exponents Online Calculator, multiply rational expressions calculator, algebra solution set calculator, simplifying calculator solver, one kilogram = 1000 gram.\n\nTranslation rotation reflection, middle school exponents worksheets, funny video about foil math, Remainders as fractions worksheet.\n\nFree Grade 9 Math Sheets, In a certain year, the amount A of garbage in pounds produced after t days by an average person is given by A=0.5t, 10x9x8x7x6x5x4x3x2x1.\n\nThe functions f and g are inverses of each other. If 3 is in the domain of f, then find g [f (3) ]., how do i multiplying and simplifying parabola, solve f(x) square root of x to the 2nd 9 9x +6.\n\nBeginners algebra fifth grade, kuta software infinite algebra 2 systems of equations word problems, factoring 3rd order polynomials practice problems, multiple variations algebra.\n\nAlgebra connection worksheet answers on zero product property and quadratics, middle school math with pizzazz! book e, how to solve rational equations.\n\nHow does graphing inequalities relate to daily life, prentice hall algebra pre-algebra chapter 7 test, Solve the function operation, algebra calculator simplify radical expressions, Kuta Software Solving Quadratic Equations, radian circle, factor machine.\n\nPrintable chemical equation balancing, determine the slope (S) of the graph and intercept (I) on the vertical axis, Pizzazz math book d answers.\n\nAxis of symmetry calculator, base five blocks, kuta software - infinite geomertry all transformations, algebra trinomial binomial long division calculator, +free beginers guide to algebra, obituary template, polynomial examples with explanations.\n\nPassport to algebra and Geometry, 8th Grade Math Practice Worksheets, +how to factor polynomials in TI-83 puls, ordering fractions 11-7 pearson education answer sheet, equation solver with steps exponents, standard form calculator algebra, awsm focus on algerbra answers.\n\nFree simultaneous equation solver, square roots with exponents, graph paper marked 100,100, math expressions, factor each polynomial.\n\nWriting expressions worksheets 4th grade, simplifying radicals page 193 algebra 1 guided practice, algebra calculator vertex, simplify the algebric fraction of 4y-16 divided by y2-16?, 6th grade inequalities and equations review worksheet.\n\nTranslation worksheets, quadratic formula and checking for extraneous solutions, strategy to muitilpy and divide fractions, graph inequalities 2y+x<4, slope intercept method worksheet free.\n\nDerivative of cos, graph equations on a coordinate grid powerpoint, find fourth root of variables, graphing quadratic equations real-life example, famous decimal numbers, lowest common factor worksheets.\n\nFactor tree square roots worksheet, Math exercise-Pie chart, worksheet on equations involving square roots, conjugate radical expression calculator.\n\nStudy guide and intervention adding and subtractingglencoe algebra 1 answers, multiplying matricies method, multiplicity polynomial, converting mixed numbers to decimal numbers worksheet, partial fractions calculator, simplify rational expressions.\n\nMultiplying and dividing integers worksheet, adding and subtracting eighth and sixteenth, Creative Publications Algebra with Pizzazz.\n\nSimplify Monomials Calculator, funny gif meme faces, mathematics refrence sheet, solve equations pizzazz.\n\nHolt mathematics answers, 7th grade multiply subtract divide integers, matrice mathématique, euclid method for converting decimals to fractions, using fundamental identities, are you allowed to have decimals under a square root.\n\nOrdering decimals calculator, fractions simplify, pre algebra readiness test, Algebra Worksheets KS3, vertexformula, Math Formula Sheet Reference, scientific calculator for problems with fractions and exponents.\n\nHow to divide fractions, Solve Equations by Factoring Calculator, Radical Preview 2 worksheet, second grade volume worksheets, Two-Step Inequalities Quiz, middle school math with pizzazz! book d.\n\nConverting positive and negative integers worksheet for 6th grade and answer keys, examples of radicals with answers, centimeters equal meters, basic proportions worksheets, factor tree of 44, factoring parabolas example, solving radicals in simplest form finding the lengths.\n\nDividing rational expression calculator, radical expressions what does n stand for, equation and inequality math game for fifth grade, arranging and writing these integers 16 `17 58 -38 in increasing order, percentage math o levels, second half yearly examination papers maths 8th ncert, whats 1/8 as a decimal.\n\nXcubed + 8 reduction, examples of 8th grade math dilation worksheets, what two fractions equal 24, Solving Equations Fractions Worksheet, write a repeating decimal as a fraction.\n\nNth term quadratic, factorise quadratics calculator, solve for x with logs, a 2 step equation of y=mx+b example, online fraction calculator simplest form, simplest form of a square root tool.\n\nMath problem express the product in simplest form, free daily math warm ups grade 1, system of equation in three variables word problems worksheet, what are the 3 special right triangles.\n\nPizzazz math book d-62 answers, Algebra Software, free work sheet for using procector in year 4 maths, factoring engine, free algebra elimination method calculator, ode45 to solve mixing vat, online factor polynomial calculator.\n\nOnline Algebra Calculator with Exponents, Free Differential Aptitude Test, scale factor calculator, y=x graph end behavior, how to solve in math predictions.\n\nCommon factors chart, using complex numbers in polynomial identities and equations worksheet, ordered pairs as soulutions of linear equations calculator.\n\nSimplifying radicals answers, Examples Of Velocity, how long would it take \\$2,800 to grow to \\$8,400 if the annual rate is 4.2% and interest in compounded monthly?, graph on converting decimals into fractions, algebra with pizzazz worksheet answers, NONHOMEGENOUS DIFFERENTIATION 2ND ORDER ODE.\n\nKs2algebra help, sports etrement echauffement. pdf, solve system of equations x+y = 36, xy+2x=224, trigonometry formulas for 10th grade, factoring polynomials.\n\nHow to evaluate a formula in algebra, math equations for accounting, cupertino placement math test, simplifying polynomial calculator.\n\nAn investor has 24000 to invest in bonds of Aaa, How much material was used in the manufacture of 24, 000 celluloid dice, if each dice has an edge of 1/4 in?, linear function that relates y to x, 2 function expressions 4th grade.\n\nTransformation in the coordinate plane day 57, algebrnation.com, graph x+4y> 12, convert to simple radical form calculator.\n\nFractional half life problems, rational expression calculator with variables, Java Simplify Fraction, mcdougal literature reading stragey resource manager answer sheet pg 223.\n\nAdding and subtracting negative numbers worksheets, simplifying rational expressions calculator, study guide solving linear equations, linear inequalities, quadractic equations and literal equations, finding fractions on a number line, The accompanying graph shows all, solving equations involving parallel & perpendicular lines cliffs notes cheat sheet, Slope-Intercept Formula Solve.\n\nSubtractor truth table, number line template, fill in the number grid.\n\nLong division with decimals with no remanider, 2nd grade cubic units, \"free fall\"+discrete, A drastic way to diet algebra, adding and subtracting mixed numbers common deniminators 5th grade, answers to my modern biology homework chapter 15 sections 2 and 3 reviews, example subtract mixed numbers.\n\nFactor tree for 54, algebrator descargar, 6th degree polynomial with 5 real zeros negative lead coefficient, trace determinant plane.\n\nAlgebra-maths-year 7-free printable worksheets, fraction to decimal calculator, evaluate math, step by step matrices, solve linear inequality online calculator.\n\nMath love poems, conjugate of radical expression when calculator, pre algebra worksheets 6th grade, ti 30xs multiview pro hints, simplify equation caculator.\n\nPrentice hall algebra tiles, associative property example for kids, solving one-step addition or subtraction equations marcy mathworks 38 answer key, graph 2x-3y<6, parabola calculator, fun with two step equations, order of operation word problems 4th grade.\n\nSolve multiple equations in excel, modern biology chapter 9 test, middle school math with pizzazz book e, perfect cubes, pre algebra pizzazz just plane geometry.\n\nAlgebra 1 exponents wordsearch, Ordered Pairs Worksheets 4th Grade, free download algibrator maths, Instant Math Answers, what would a fraction number line look like.\n\nFactorise cubic equation bbc maths, pizzazz math book d-62, algebra transformations worksheets, solve equation calculator fractions.\n\nHow to solve equation smultaneously, square root algebra formula, Algebra tiles questions, Solving Literal Equations worksheet, 9 days to cross the desert man must deliver message to other.\n\nAlgebra Calculator for Polynomials, using hiley formula calculation for PDA Test, factor 9.\n\nDecimal to radical calculator, algebrator download free, prentice hall algebra 2 chapter 8 worksheet answers, symmetric about y=x, simplifying rational expressions by factoring by grouping, Orleans-Hanna Sample Test.\n\n8th grade venn diagram problems, math solving software, 8th grade algebra formulas, advantages of radical notation, is there a calculator for multiplying and dividing rational expressions.\n\n4th grade fractions least to greatest online, geometry of flow practice differential equation, ordered pair equation solver, how to order ratios least to greatest, linear equations worksheet, simplifying calculator.\n\nMaths cartoons negative numbers, plusing agerbraic numbers, solving two step word problems, KUTASOFTWARE.COM, freew worksheets fifth grade distributive property.\n\nSexpression.org.uk, simplify by removing factor of 1 calculator, algebra honors test, power rule integration, formual for adding, subtracting multiplying and dividing fractions, applying algebra to real life.\n\nDefinition algebra expressions, free maths worksheets, intermediate algebra help, dummit and foote solutions, how to multiply monomials, algebra II glencoe chapter 1.\n\nMcDougal Littell Algebra 2 Textbook, dugopolski college algebra questions, teach me how to do algebra, Algebra 2 Exponents Worksheets, Free Algebra Test.\n\nGeometry problem solver, synthetic division calculator, help solving algebra word problems, how to solve a improper fractions.\n\nRadical rules, lcm factor tree calculator, simplifying negative and positive numbers, algebra is interesting subject.\n\nSolving basic equations of a line, mathematica or maple, nith grade algerbra, algebra challenge, math book answers, Algebra calculators to solve inequalities, laplace transform calculator online.\n\nSquare feet math problems, Algebra Factoring Calculator, solutions to gallian abstract algebra, i need help with algebra, algebra 2 help, Algebra made easy.\n\nGoals for Algebra 1, free math problem answers, algebra exercises, algebra properties, Solution Manual Abstract Algebra By Herstein descarga gratis, 64, Enter Math Problems for Answers.\n\nVisualing Algebraic operations, geometry book answers, Algebra Word Problem Solver Free Download, difference of cubes factoring formula, Inequality Equation Calculator, 9780618594023, algebra 1 teachers edition.\n\nNumerator denominator, patterns and algebra booklet, free algebra calculator, algebra with pizzazz answers, algerbra for dummies, cramer's rule ti 89, how do i learn beginning algebra.\n\nSolving equations, take a algebra test for free, step by step solving of modulo, sylow theorem, algrebra, investment problems in algebra, solving complex fractions with variables.\n\nWww.algebrator.com, factoring calculator, Saxon Algebra 2 help, Free Online Algebra Problem Solver, free algebra solver.\n\nPrentice hall algebra 1 workbook, intermediate algebra 3rd edition help, samples problem on boolean algebra, cojugate algebra, excel and algebra, math algebra trivia, verbal model.\n\nFree online worksheets on year 10 physics, college algebra word problems, algebra inequality, fraction pies/printible, how to learn algebra fast, HOW TO GET AN ALGEBRA II BOOK TEACHER'S EDITION?.\n\nBeginning and intermediate algebra, free maths problem solver, herstein abstract algebra solutions, how to work a algebra caculator, math answers free.\n\nRational expressions solver, how to calculate fraction, softmath algebrator, finding lcd.\n\nPolynomials solver, college algebra formula list, algebra basic rules, factoring negative exponents.\n\nCollege algebra calculator, online t-83 calculator, then multiply.use cancellation if possible., equations mathematics, factor problems, solve my equation step by step, Piecewise Functions Algebra.\n\nHow to use algebratpr, college algebra formulas, Algebra Step by Step Solver, free algebraic calculator.\n\nAlgebra equation solver online, algebraic manipulation help, free pre algebra ebook, graphs in 3 dimensions, how do you interpolate a step function graph, intermediate equations, Algebra Equation Solving Calculator.\n\nCalculator for solving compound inequalities, answers to problems in mathematics prentice hall, free beginning and intermediate algebra solution manual, special products in algebra rule no. 1, orleans hanna algebra prognosis test questions, absolute value equations and inequalities calculator.\n\nAlgebra, year 6, college algebra practice problems, prentice hall advanced mathematics precalculus answers, algebra 2 lessons through discovery, study guide for trigonometric ratios, example of problem in math with solution.\n\nCollege algebra for dummies, algebra glencoe teacher edtion, explain algebra 1, inequalities and number lines, scientific calculator with fraction key, algebra structure and method book 1.\n\nAnswer to my homework, solving literal equations calculator, what calculator should I use for business algebra, my algebra solver, problem solving with algebra, prentice hall mathematics algebra 2 solution key 2008.\n\nLearn how to do algebra, solve college math problems, tips on algebra 1, help solve algebra, how do I figure an improper fraction, applied college algebra.\n\nReview of RELATED LITERATURE ABOUT ALGEBRA, rudin solution \\, +algebra verbal expression, t-83 manual, (b) Find the number b such that the line y = b bisects the area in part (a)..\n\nHow to do algebra problems, california algebra 1 standards, algebra answers and steps.\n\nAlgebraic inequality, abstract algebra solutions, free algebra test, algerbra 2 math in tenth grade.\n\nMsa intermediate algebra + solutions, Algebra Answers, abstract algebra dummit solutions, college algebra solutions.\n\nWritten equations, read algebra 2 textbook online, how to unfoil, free algebra 1 homework answers.\n\nFree college algebra tutoring, linear algebra otto bretscher, abstract hungerford, what is 2 times x.\n\nRelations and functions equation graph, algebraic equations real life, undergraduate maths textbook solutions, What value of k makes x^2 + 2x + k a perfect square?, orleans hanna algebra prognosis test, beginning & intermediate math 4th edition download, help with simplifing integers.\n\nShading Linear Equations, ease of administration the orleans-hannah algebra prognosis test, hardest algebra problem, algebraic equations writer, where can I find a site to do my algebra?, online differential equation solver, mantissa exponent.\n\nHow to write mathematical expressions and equations, factoring radicals, translations of parent functions in algebra 11.\n\nSolution manual for Linear Algebra by Fraleigh, simplfiy -9 -- 6(-v + 5), algeba calculator that shows work, examples of arrays for elementary teaching, the trigonometry helper.\n\nLiteral equations -5x+y=-56, how does algebra help us, Intermediate Algebra Concepts, algebra ayuda, administration of the orleans-hannah algebra prognosis test.\n\nAlgebriac terms, charles mckeague intermediate algebra answer key, mcdougal littell algebra 1, Dugopolski, M. (2009). Elementary and intermediate algebra pdf, chalk dust math algebra 1, california algebra 1 book, complex fraction solver.\n\nAlgebraic equations calculator, free help with my algebra, algebra help free, how to simplify (-7), free pre algebra solver, elementary and intermediate algebra answers.\n\nGeometry problem solving, how to graph inequalities, turn fractions into decimals, help solving algebra applacaltion problems, free donwlond of algebrator, basic algebra solve geometry problelms, Printable Exponent Worksheets.\n\nAlgebra 1,textbooks,teachers edition, turn decimal into a fraction, free algebrator download, dividing fractions with exponents.\n\nHow to find the lcm of rational expressions, teach me complex math for free, singapore mathematic syallabus for kids free print out.\n\nStudy guide abstract algjebra 1, free beginners algerba 12 years, practical algebra problem, solve expressions, free math problem solver, fundamental theorem of algebra math problems.\n\nPrentice hall mathematics algebra 1 answers, free online college algebra equation solver x y, beginning algebra with applications 6th edition, exponent laws for fractions with a negative exponent in algebra 2.\n\nWhat is binomial, prentice hall algebra 1 online, free mat answers, soviet mathematics textbooks, eigenvalue ti-84.\n\nCheck my algebra homework, teach me how to solve fraction, translating algebraic expressions.\n\nHow to simplify expressions that require adding or subtracting a binomial, college algebra answers, solving matrices easy, college algebra calculator for free, i need intermediate algebra help, algebra test for the net, free math solver.\n\nPrentice hall california algebra readiness answer book, trigonometry ninth edition lial, algebra is difficult to understand, interval notation calculator.\n\nFree Algebra 2 Problem Solver, prentice hall algebra 1 book, free elementary algebra tutoring, glencoe pre-algebra workbook answers.\n\nHow to do algebra time problems, range symbol, algebra worksheet on simplification with answers, college algebra help 9th edition barnett, russian algebra, rearranging exponential equations.\n\nReal Life Application of Algebra, contemporary abstract algebra solution, fractions for dummies.\n\nFree algebra 2 help, college algrbra exercises, the answer of Abstract Algebra by I. N. Herstein, example of a verbal model.\n\nIntermediate algebra for college students, RELATED LITERATURE ABOUT ALGEBRA, Type in Algebra Problem Get Answer.\n\nSolution problems in algebra, how to do fractions on a calculator that s not scienctific, algeba, simplify expressions that require adding and subtracting binomial, 5186, McDougal Algebra 2, rapid learning center college algebra depositfiles.\n\nArithmetic and prealgebra tests, lcm of algebraic expressions calculator, algebra factoring calculator, working with factoring negative exponents.\n\n7th grade pre-algebra word problems, simplify binomials, Linear Algebra A Modern Introduction, how to kiss your teacher, best way to learn college algebra, florida prentice hall mathematics algebra 1 answers page 70 problem 2.\n\nHealthcare algebra, glencoe algebra 2 answers, algebra structure and method 1 mcdougal littell torrent, rational number calculator, algebra in n out, algebra question malaysian questions, Free Algebra Word Problem Solver.\n\nBing visitors came to this page yesterday by typing in these algebra terms:"
] | [
null,
"http://softmath.com/images/video-pages/solver-top.png",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.7971556,"math_prob":0.9947464,"size":92845,"snap":"2020-24-2020-29","text_gpt3_token_len":20386,"char_repetition_ratio":0.24031408,"word_repetition_ratio":0.019949405,"special_character_ratio":0.19705962,"punctuation_ratio":0.11110347,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9999194,"pos_list":[0,1,2],"im_url_duplicate_count":[null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-05-30T09:30:29Z\",\"WARC-Record-ID\":\"<urn:uuid:23566a40-db59-43f1-b414-450b919872fc>\",\"Content-Length\":\"210411\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:cebc3990-def4-4ffa-8ef8-7f484a28996b>\",\"WARC-Concurrent-To\":\"<urn:uuid:c1d80576-1841-4d6e-9a53-798ef552dcd6>\",\"WARC-IP-Address\":\"52.43.142.96\",\"WARC-Target-URI\":\"http://softmath.com/math-com-calculator/inverse-matrices/show-algebra-work.html\",\"WARC-Payload-Digest\":\"sha1:LM2DUVTSJ2L6CDSPZJYI2JSYCEYBCD5A\",\"WARC-Block-Digest\":\"sha1:ET4TCG2AALYMGWVWQZSWA46HJ4IDVIK2\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-24/CC-MAIN-2020-24_segments_1590347407667.28_warc_CC-MAIN-20200530071741-20200530101741-00574.warc.gz\"}"} |
https://tex.stackexchange.com/questions/18073/beamer-and-verbatim-sync/18133 | [
"# Beamer and verbatim sync\n\nI'm preparing a beamer presentation to show some basic TikZ stuff. I would like to have a two columns slide, where on the left I have the TikZ figure, and on the right the generating code. BUT, I also want the code to be uncovered set by step, that is, whenever a feature of the figure is uncovered, I want the corresponding piece of code to be uncovered.\n\nSomething like:\n\n\\begin{frame}[fragile]\n\\begin{minipage}{0.10\\linewidth}\n\\begin{center}\n\\begin{tikzpicture}\n\\draw<1-> (-1.5,0) -- (1.5,0);\n\\draw<2-> (0,-1.5) -- (0,1.5);\n\\end{tikzpicture}\n\\end{center}\n\\end{minipage}\n\\begin{minipage}{0.85\\linewidth}\n\\begin{verbatim}\n\\begin{tikzpicture}\n\\draw (-1.5,0) -- (1.5,0);\n\\draw (0,-1.5) -- (0,1.5);\n\\end{tikzpicture}\n\\end{verbatim}\n\\end{minipage}\n\\end{frame}\n\n\nThe problem is that I couldn't neither manage to use the uncover inside the verbatim nor use the verbatim inside an uncover...\n\nWhat is the right practice?\n\n• Have a look at Herbert's answer to this question. – lockstep May 12 '11 at 18:21\n\nHerbert's answer was helpful! However, for the sake of completeness, here's the correction of the second part of my code from the question:\n\n\\begin{minipage}{0.85\\linewidth}\n\\begin{semiverbatim}\\small\n\\uncover<1->{\\\\begin\\{tikzpicture\\} }\ngrid (1.5,1.5);}}\n\\uncover<2->{ \\alert<2>{\\\\draw (-1.5,0) -- (1.5,0);} }\n\\uncover<4->{ \\alert<4>{\\\\draw[red,line width=2pt] (0,0) circle (.8cm);}}\nrectangle (1,1);}}\nparabola (1,1);}}\n\\uncover<1->{\\\\end\\{tikzpicture\\}}\n\\end{semiverbatim}\n\\end{minipage}\n\n\nThanks you all!\n\nI had the same problem. I did one of the following in my presentation, each solution was used for a different problem (I'm sorry, I don't remember exactly what is used for what)\n\n• I wrapped the tikz figure with \\uncover. Note that this is the only case that I did what I think you tried to do.\n• I used the \\only command which is not recommended.\n• I think that I also placed everything inside a single tikz figure but I'm not sure.\n\nHope this is of any help."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.6983589,"math_prob":0.88624775,"size":910,"snap":"2020-10-2020-16","text_gpt3_token_len":301,"char_repetition_ratio":0.1401766,"word_repetition_ratio":0.0,"special_character_ratio":0.31318682,"punctuation_ratio":0.18181819,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.98525286,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2020-02-22T10:15:36Z\",\"WARC-Record-ID\":\"<urn:uuid:82a19b91-d815-478c-a87e-44b733c5410b>\",\"Content-Length\":\"147035\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:a2fedead-1411-4a19-8144-650c2dbea7cd>\",\"WARC-Concurrent-To\":\"<urn:uuid:2ae17ef2-3e26-46a2-9b3d-0988558ae8ec>\",\"WARC-IP-Address\":\"151.101.1.69\",\"WARC-Target-URI\":\"https://tex.stackexchange.com/questions/18073/beamer-and-verbatim-sync/18133\",\"WARC-Payload-Digest\":\"sha1:RBCFOHXUHU3WG3RMPSVRQHZLY5SQ235N\",\"WARC-Block-Digest\":\"sha1:ZX2XNS6CVSEGKSMN7SBXQSM5UMSGTHSX\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2020/CC-MAIN-2020-10/CC-MAIN-2020-10_segments_1581875145657.46_warc_CC-MAIN-20200222085018-20200222115018-00362.warc.gz\"}"} |
https://paperswithcode.com/search?q=author%3ATongyang+Li | [
"Search Results for author: Tongyang Li\n\nFound 9 papers, 1 papers with code\n\nCompared to the previous state-of-the-art algorithms by Jin et al. with $\\tilde{O}((\\log n)^{4}/\\epsilon^{2})$ or $\\tilde{O}((\\log n)^{6}/\\epsilon^{1. 75})$ iterations, our algorithm is polynomially better in terms of $\\log n$ and matches their complexities in terms of $1/\\epsilon$.\n\nSublinear classical and quantum algorithms for general matrix games\n\nWe give a sublinear classical algorithm that can interpolate smoothly between these two cases: for any fixed $q\\in (1, 2]$, we solve the matrix game where $\\mathcal{X}$ is a $\\ell_{q}$-norm unit ball within additive error $\\epsilon$ in time $\\tilde{O}((n+d)/{\\epsilon^{2}})$.\n\nQuantum algorithms for escaping from saddle points\n\nno code implementations20 Jul 2020, ,\n\nCompared to the classical state-of-the-art algorithm by Jin et al. with $\\tilde{O}(\\log^{6} (n)/\\epsilon^{1. 75})$ queries to the gradient oracle (i. e., the first-order oracle), our quantum algorithm is polynomially better in terms of $\\log n$ and matches its complexity in terms of $1/\\epsilon$.\n\nQuantum exploration algorithms for multi-armed bandits\n\nIdentifying the best arm of a multi-armed bandit is a central problem in bandit optimization.\n\nThe study of quantum generative models is well-motivated, not only because of its importance in quantum machine learning and quantum chemistry but also because of the perspective of its implementation on near-term quantum machines.\n\n36\n\nSampling-based sublinear low-rank matrix arithmetic framework for dequantizing quantum machine learning\n\nMotivated by quantum linear algebra algorithms and the quantum singular value transformation (SVT) framework of Gily\\'en et al. [STOC'19], we develop classical algorithms for SVT that run in time independent of input dimension, under suitable quantum-inspired sampling assumptions.\n\nSublinear quantum algorithms for training linear and kernel-based classifiers\n\nWe design sublinear quantum algorithms for the same task running in $\\tilde{O}(\\sqrt{n} +\\sqrt{d})$ time, a quadratic improvement in both $n$ and $d$.\n\nDistributional property testing in a quantum world\n\nno code implementations2 Feb 2019,\n\nThe presented approach is a natural fit for distributional property testing both in the classical and the quantum case, demonstrating the first speed-ups for testing properties of density operators that can be accessed coherently rather than only via sampling; for classical distributions our algorithms significantly improve the precision dependence of some earlier results.\n\nQuantum-inspired sublinear algorithm for solving low-rank semidefinite programming\n\nIn this paper, we present a proof-of-principle sublinear-time algorithm for solving SDPs with low-rank constraints; specifically, given an SDP with $m$ constraint matrices, each of dimension $n$ and rank $r$, our algorithm can compute any entry and efficient descriptions of the spectral decomposition of the solution matrix.\n\nCannot find the paper you are looking for? You can Submit a new open access paper."
] | [
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.78253907,"math_prob":0.99472636,"size":3139,"snap":"2022-05-2022-21","text_gpt3_token_len":804,"char_repetition_ratio":0.13716109,"word_repetition_ratio":0.06521739,"special_character_ratio":0.24307103,"punctuation_ratio":0.1045045,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9973595,"pos_list":[0],"im_url_duplicate_count":[null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-01-17T20:25:39Z\",\"WARC-Record-ID\":\"<urn:uuid:4919b129-9d5f-4369-95f7-7cb850e5e930>\",\"Content-Length\":\"85756\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:f761cedc-b988-4461-b0a0-3468ecff8abd>\",\"WARC-Concurrent-To\":\"<urn:uuid:4478712f-68ee-497c-a57c-cca650d37a64>\",\"WARC-IP-Address\":\"104.26.12.155\",\"WARC-Target-URI\":\"https://paperswithcode.com/search?q=author%3ATongyang+Li\",\"WARC-Payload-Digest\":\"sha1:UT7AL6RXPHIESMMSZVV74P2KEEPWSUD7\",\"WARC-Block-Digest\":\"sha1:T7ITWDCJYKJTXW4M6SGR3Y6C3VUMXDTD\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-05/CC-MAIN-2022-05_segments_1642320300616.11_warc_CC-MAIN-20220117182124-20220117212124-00476.warc.gz\"}"} |
https://www.toppr.com/guides/physics/oscillations/resonance/ | [
"",
null,
"# Resonance\n\nWe are surrounded by a sea of different frequencies form natural as well as artificial sources. These frequencies are modulated or jumped up by a phenomenon known as resonance. Resonance actually causes waves to be of similar frequency and thus result in a higher amplitude meaning more intensity.\n\nGalileo Galilei observed that a man alone could ring a large bell by giving impulses at the right instants and they were so huge that four to six men were lifted up from the ground trying to seize the impulse holding the rope. This justifies to the earliest encounters of what resonance was capable of.",
null,
"## Meaning of Resonance\n\nThe meaning of resonance is a state of the system including a response of huge magnitude in response to an external stimulus when the stimulus applied has frequency similar to the natural frequency of the system. In terms of physics, resonance refers to an increase in the amplitude of a vibration that is a result of periodically applied force which has the frequency equal to or near to the fundamental or the natural frequency of that dynamic system. This frequency at which resonance occurs is known as the resonant frequency of the system. Small periodic forces of the similar frequency as that of the natural frequency store vibrational energy which is responsible for the large-amplitude vibrations.\n\nResonance occurs with all kinds of existing vibrations such as in quantum wave functions, electron spin resonance(ESR), mechanical resonance, electromagnetic resonance, acoustic resonance and nuclear magnetic resonance(NMR). It is useful in different ways including generating a vibration of a required frequency or filtering specific frequency from a complex vibration containing many frequencies. Resonance is possible when a body is capable of storing and transferring energy between different states and forms of energy. As the cycles go on, some losses incur. This is damping.\n\nThe resonant frequency is approximately equal to the natural frequency in case of small damping, but in other cases, it has multiple, different resonant frequencies. In daily life, radio waves are tuned to produce resonance to selectively receive waves of specific values. Modern clocks also use resonance for their timekeeping mechanisms.\n\n### Types of Resonance\n\n1. Mechanical resonance\n\nThe tendency of a mechanical system to give a response with large amplitude when the frequency of its oscillations is similar to the system’s natural frequency of vibration rather than other frequencies. Some examples of this type of resonance include pushing a swing, motion of a pendulum, motion of a tuning fork. In all of these cases, the force applied to cause the vibration should be periodically regulated to match the natural frequency to create resonance. The resonant frequency of spring is:\n\nf = $$\\frac{1}{2\\Pi}\\sqrt{\\frac{k}{m}}$$\n\nwhere,\n\nm is the mass of the spring\n\nk is the spring constant\n\nThe resonant frequency of a pendulum is:\n\nf = $$\\frac{1}{2\\Pi}\\sqrt{\\frac{g}{l}}$$\n\nwhere,\n\ng is the acceleration due to gravity\n\nl is the length of the pendulum\n\n1. Acoustic resonance\n\nWhen an acoustic system has waves with matching frequencies with one of its own natural frequencies, it amplifies the sound. This is acoustic resonance. This is a very crucial tool for instrument builders as in case of many acoustic instruments like strings of a guitar, length of a flute and membrane of a drum used resonators. It also accounts for hearing ability.\n\n1. Electric resonance\n\nIn an electrical circuit, when the capacitive reactance and inductive reactance are equal in magnitude, electrical resonance is observed. When the impedance between the input and output of the electrical circuit is almost zero and the circuit’s transfer function is one, this is also a case of electrical resonance.\n\n1. Optical resonance\n\nWhen 2 mirrors, one partially reflective and other highly reflective are part of a laser, they form an optical resonator. Interferometers and some optical parametric oscillators use optical resonators because it has a large Q factor which suggests less amount of energy loss. Lasers which provide the gain medium and provide feedback of laser lights using these resonators.\n\n### Resonance of a Damped Oscillator\n\nThis type of system is visible in spring-mass systems, pendulum systems and many other damper circuits like the RLC electrical circuit. When we consider a spring-mass system driven by an external sinusoidal force, we can come to the differential equation:\n\nm$$\\frac{\\partial^2 x}{\\partial t^2}$$ = $$F_{o}sin(\\omega t)-kx-c\\frac{\\partial x}{\\partial t}$$\n\nwhere\n\nm is the mass\n\nx is the displacement from the mean position\n\n$$\\omega$$ is the driving angular frequency\n\nk is the spring constant\n\nc is the damping coefficient\n\n$$F_{o}$$ is the driving amplitude\n\nAlternatively, we can write the equation as:\n\n$$m\\frac{\\partial^2 x}{\\partial t^2}+2\\zeta\\omega_{o}\\frac{\\partial x}{\\partial t}+\\omega_{o}^{2}x$$ ={$$\\frac{F_{o}}{M}$$} $$\\sin(\\omega t)$$\n\nHere $$\\omega_{o}$$ =$$\\sqrt{\\frac{k}{m}}$$ is the natural frequency of the system.\n\nThe damping ratio is $$\\zeta$$= $$\\frac{c}{2\\sqrt{mk}}$$ .\n\nIn many cases on close and concentrated analysis, resonant frequency comes out to be near not exactly equal to the natural frequency.\n\nBut this is not entirely true in a damped system. In a damped system, resonance occurs when the steady-state amplitude is large as compared to the other frequencies and this could be possible at a certain frequency known as the resonant frequency. Resonant frequency here will be:\n\n$$\\omega_{r}$$ = $$\\omega_{o}\\sqrt{1-2\\zeta^{2}}$$\n\nHere, the resonant frequency is not equal to the undamped angular frequency of the oscillator.\n\nQ.1. What are the uses of resonance in molecules?\n\nAnswer. Molecular and atomic resonance contains two phenomena Nuclear Magnetic Resonance(NMR) and Electron Spin Resonance(ESR). NMR is useful in imaging techniques in advanced medical industries such as MRI. The resonant frequency of NMR happens to be directly proportional to the strength of the applied magnetic field. This method helps in imaging objects that are in a non – uniform magnetic field, as the resonant frequency of the molecules of the object depend on the location of the nuclei and hence the imaging. A similar kind of technique known as the ESR makes use of the unpaired electrons that is the paramagnetism of the molecules. ESR is helpful in detecting inflammation and monitoring conditions of arthritis, vasculitis or inflammatory bowel disease.\n\nQ.2. How does resonance play a part in tuning musical instruments?\n\nAnswer. In case of the tube instruments, the tube provides a column for air to vibrate and the length of that air column decides the harmonics that are produced and the sound we hear aloud. We can adjust the length of the tube to create a vibration with a frequency close to the natural frequencies of the air column inside the brass instrument and thus the result is a loud sound. We can acknowledge higher pitches by further shortening the column and the vibrating reed helps the air column to get to vibrate at one of the natural frequency.\n\nQ.3. What is orbital resonance?\n\nAnswer. Orbital resonance occurs when celestial bodies due to their orbital periods being in the ratio of small integers exert a regular, periodic gravitational influence on each other. Laplace was the first scientist to examine the stability of the solar system. This stability is because of the changing gravitational forces of the celestial bodies which go around each other.\n\nShare with friends\n\n## Customize your course in 30 seconds\n\n##### Which class are you in?\n5th\n6th\n7th\n8th\n9th\n10th\n11th\n12th\nGet ready for all-new Live Classes!\nNow learn Live with India's best teachers. Join courses with the best schedule and enjoy fun and interactive classes.",
null,
"",
null,
"Ashhar Firdausi\nIIT Roorkee\nBiology",
null,
"",
null,
"Dr. Nazma Shaik\nVTU\nChemistry",
null,
"",
null,
"Gaurav Tiwari\nAPJAKTU\nPhysics\nGet Started",
null,
"0 Followers\n\nMost reacted comment\n2 Comment authors",
null,
"",
null,
"Recent comment authors\nSubscribe\nNotify of",
null,
"Guest\nsam",
null,
"Guest\nSandaras Edirisinghe\n\nIt was so much helping. Thank u for that. 👍"
] | [
null,
"https://www.facebook.com/tr",
null,
"https://d1whtlypfis84e.cloudfront.net/guides/wp-content/uploads/2020/11/24210555/resonance.png",
null,
"https://www.toppr.com/bytes/wp-content/themes/bytes-v2/images/live-classes/fame.svg",
null,
"https://www.toppr.com/bytes/wp-content/themes/bytes-v2/images/live-classes/tutor-1.png",
null,
"https://www.toppr.com/bytes/wp-content/themes/bytes-v2/images/live-classes/fame.svg",
null,
"https://www.toppr.com/bytes/wp-content/themes/bytes-v2/images/live-classes/tutor-2.png",
null,
"https://www.toppr.com/bytes/wp-content/themes/bytes-v2/images/live-classes/fame.svg",
null,
"https://www.toppr.com/bytes/wp-content/themes/bytes-v2/images/live-classes/tutor-3.png",
null,
"https://1.gravatar.com/avatar/",
null,
"https://1.gravatar.com/avatar/d5f09de907acea675e164f029be86f50",
null,
"https://2.gravatar.com/avatar/8ed065bcd8fe2c744404d85e7e6789b7",
null,
"https://2.gravatar.com/avatar/8ed065bcd8fe2c744404d85e7e6789b7",
null,
"https://1.gravatar.com/avatar/d5f09de907acea675e164f029be86f50",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.9276314,"math_prob":0.9709298,"size":7566,"snap":"2022-27-2022-33","text_gpt3_token_len":1608,"char_repetition_ratio":0.16926739,"word_repetition_ratio":0.008453085,"special_character_ratio":0.20169178,"punctuation_ratio":0.07327905,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9890354,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26],"im_url_duplicate_count":[null,null,null,2,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2022-08-10T20:34:37Z\",\"WARC-Record-ID\":\"<urn:uuid:5dd946d2-9266-40ce-8332-f2d179bfa25c>\",\"Content-Length\":\"122429\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:dcd6d527-bcb7-44ca-a6e5-bfb27961e39a>\",\"WARC-Concurrent-To\":\"<urn:uuid:eed2df03-f98b-4715-b85b-43c731ba55e5>\",\"WARC-IP-Address\":\"104.20.84.29\",\"WARC-Target-URI\":\"https://www.toppr.com/guides/physics/oscillations/resonance/\",\"WARC-Payload-Digest\":\"sha1:I2CEN66WEZMOTXT65OIS6SRTAAR4KAD3\",\"WARC-Block-Digest\":\"sha1:JGDAADEK4RIIJ54NGNQS2II5FGDY3VWG\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2022/CC-MAIN-2022-33/CC-MAIN-2022-33_segments_1659882571210.98_warc_CC-MAIN-20220810191850-20220810221850-00148.warc.gz\"}"} |
http://forums.wolfram.com/mathgroup/archive/2004/Jul/msg00427.html | [
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"",
null,
"Quantum Mechanics, Boundary Value Problem\n\n• To: mathgroup at smc.vnet.net\n• Subject: [mg49525] Quantum Mechanics, Boundary Value Problem\n• From: danese at physics.rutgers.edu (anthony danese)\n• Date: Thu, 22 Jul 2004 02:46:57 -0400 (EDT)\n• Sender: owner-wri-mathgroup at wolfram.com\n\n```Hi,\n\nI'm trying to find a numerical solution to Schrodinger's equation for\na nearly free electron potential (V(x)=Cos(x)) which meets an image\npotential which is of the form (V(x)=C - 1/x) where C is a constant.\nI can set up the problem using NDSolve, with 2 of my boundary\nconditions being continuity of the wave function (psi) and its\nderivative(psi') where the 2 potentials meet. The problem is that I\nneed 2 other boundary conditions--I attempt to arbitrarily set psi = 0\nfar into the Cos(x)-like region of the potential and I would like psi\nto vanish as for large values of x in the C-1/x region of space. When\nI try to run NDSolve, I either get the trivial psi = 0 or I get an\nerror telling me that the boundary conditions are not well defined.\n\nAs a test, I have tried to run NDSolve to find psi for a step\npotential where the step potential is greater than the energy of the\nelectron. The solution should be free electron-like away from the\nstep and the solution should decay into the step. This is a problem\nthat is easily solved analytically but Mathematica doesn't like the\nway I'm stating the boundary conditions. Is there anyway to solve\nthese particular examples of Schrodinger's equation with NDSolve?\n\nAny help would be greatly appreciated,\n\nanthony danese\n\n```\n\n• Prev by Date: Re: If-statement problems\n• Next by Date: RE: is List link-based or array-based\n• Previous by thread: AW: Plotting a contour plot with cylindrical co-ordinates\n• Next by thread: Re: Quantum Mechanics, Boundary Value Problem"
] | [
null,
"http://forums.wolfram.com/mathgroup/images/head_mathgroup.gif",
null,
"http://forums.wolfram.com/mathgroup/images/head_archive.gif",
null,
"http://forums.wolfram.com/mathgroup/images/numbers/2.gif",
null,
"http://forums.wolfram.com/mathgroup/images/numbers/0.gif",
null,
"http://forums.wolfram.com/mathgroup/images/numbers/0.gif",
null,
"http://forums.wolfram.com/mathgroup/images/numbers/4.gif",
null,
"http://forums.wolfram.com/mathgroup/images/search_archive.gif",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.92709196,"math_prob":0.84650135,"size":1551,"snap":"2019-26-2019-30","text_gpt3_token_len":382,"char_repetition_ratio":0.11247576,"word_repetition_ratio":0.0076923077,"special_character_ratio":0.23662153,"punctuation_ratio":0.09150327,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.9925593,"pos_list":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14],"im_url_duplicate_count":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2019-07-18T05:54:05Z\",\"WARC-Record-ID\":\"<urn:uuid:de70e8d1-a954-40a7-99a3-c12dfb4662d9>\",\"Content-Length\":\"42594\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:11869557-3d3b-48f4-abd1-026b3613fcfc>\",\"WARC-Concurrent-To\":\"<urn:uuid:2fe7fd74-8c06-47f3-9f0e-d63149200427>\",\"WARC-IP-Address\":\"140.177.205.73\",\"WARC-Target-URI\":\"http://forums.wolfram.com/mathgroup/archive/2004/Jul/msg00427.html\",\"WARC-Payload-Digest\":\"sha1:6UZYXOLYAU2OYHLGYCEV2PBYFUA72QMJ\",\"WARC-Block-Digest\":\"sha1:AXLCUK4STLO6KFOBRGTZAWGPERA3SLGW\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2019/CC-MAIN-2019-30/CC-MAIN-2019-30_segments_1563195525500.21_warc_CC-MAIN-20190718042531-20190718064531-00118.warc.gz\"}"} |
https://www.physicsforums.com/threads/converting-string-to-integer-using-atoi-in-c.547023/ | [
"# Converting string to integer using atoi in C++\n\n• C/C++\n• zarentina\n\n#### zarentina\n\nHello, the problem that I was asked to complete was ; Write a program that inputs a string and reverses it. After the string has been reversed you must convert it to an integer and then take the square root of the integer. (using atoi)\nMy code is as follows:\nCode:\nint main ()\n{\nint i=0,L=50, S,x,;\ndouble z;\nchar ori_string;\nchar new_string;\ncin.getline(ori_string,50);\n\nfor(i=0;i<L; i++)\n{\nnew_string[i]=ori_string[L-1-i];\n}\nfor(L=50-strlen(ori_string);L<50;L++)\n{\n\ncout<<new_string[L];\n}\ncout<<endl;\n{\nx=atoi(new_string);\nz=sqrt(x);\ncout<<\"The square root of the reversed string is: \"<<z<<endl;\n}\nsystem(\"pause\");\nreturn 0;\n}\n\nMy problem is that my program isn't storing \"new_string[L]\" as anything so when I convert it to a integer nothing is there and the square root is zero. So my question to you all is how can i store \"new_string[L]\" so I can convert it to an integer using atoi?\n\nThanks,\nZ\n\nI don't know too much about C++ but atoi is string to int and atol is strong to long int.\n\nYour code also seems to have a lot of stuff in it just to reverse a string and find its integer square root.\n\nFor example, why would you need anything to do 50 iterations?\n\nFirst of all - you can't reverse the string assuming its length is 50 characters. What happens if it is not?\n\nnew_string[L] is a character (element of the new_string array), not a string. You don't have to write new_string to cout character by character, cout << new_string should work.\n\nThere is more, but I am not going to mention anything else now to not muddy the water.\n\nWhen I first wrote this program to reverse my number I simply had\nCode:\nint main()\n{\nint i,L,;\nchar ori_string;\nchar new_string;\ncin.getline(ori_string,50);\n\nfor(i=0;i<L; i++)\n{\ncout<<ori_string[L-1-i];\n}\nsystem(\"pause\");\nreturn 0;\n}\n\nThis returned the proper number but it was preceded by random characters for the first 46 spaces if the string was 3 digits long. This was the reasoning of structuring a second for loop. Yet now that I know that is the incorrect method, how do you suggest I fix this bit of code here so that it will only output the reverse of the string for after it does that I can easily convert it to an int and take the square root.\n\n(I know this differs from my initial question but I'm reasonably certain that this is where the problem is, yet if this assumption is wrong please let me know!)\n\nThanks,\nZ\n\nHint: L is not initialized.\n\nHint2: with what should it be initialized?\n\n*UPDATE* I had a revelation sparked by a few of your comments",
null,
"Code:\nint main()\n{\nint i,L=50,x;\ndouble z;\nchar ori_string[L];\nchar new_string[L];\ncin.getline(ori_string,50);\nL=strlen(ori_string);\n\nfor(i=0;i<L; i++)\n{\n\ncout<<ori_string[L-1-i];\nnew_string[i]=ori_string[L-1-i];\n}\n\n{\nx=atol(new_string);\nz=sqrt(x);\ncout<<\"The square root of the reversed string is: \"<<z<<endl;\n}\nsystem(\"pause\");\nreturn 0;\n}\n\nIs my new properly working code, if there are any critiques or overhauls you may do feel free, I'd love to learn!\n\nThanks,\nZ\n\nHi Z! Welcome to PF!",
null,
"You're code will work properly.\n\nIf you want to learn I'll give you an improvement.\nYour program won't function better, but it is better programming style.\n\nIn C++ we don't really want to use char-arrays anymore (it's a remnant from its predecessor C).\nThere are a number of pitfalls with them.\nIn this case the most obvious ones are that you have a maximum size (50) and that you truncate your input.\n\nThe C++ way to do things, is to use std::string.\nIt works like this:\nCode:\n#include <string>\n\nint main()\n{\nint i, L, x;\ndouble z;\nstd::string ori_string;\nstd::string new_string;\ncout << \"Please enter a long string\" << endl;\ngetline(cin, ori_string);\n\nL = ori_string.length();\nnew_string.resize(L);\nfor (i = 0; i < L; i++)\n{\ncout << ori_string[L - 1 - i];\nnew_string[i] = ori_string[L - 1 - i];\n}\n\nx = atol(new_string.c_str());\nz = sqrt(x);\ncout << \"The square root of the reversed string is: \" << z << endl;\n\nsystem(\"pause\");\nreturn 0;\n}"
] | [
null,
"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",
null,
"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",
null
] | {"ft_lang_label":"__label__en","ft_lang_prob":0.83465695,"math_prob":0.8533735,"size":1317,"snap":"2023-14-2023-23","text_gpt3_token_len":357,"char_repetition_ratio":0.14013709,"word_repetition_ratio":0.4977169,"special_character_ratio":0.29536825,"punctuation_ratio":0.13793103,"nsfw_num_words":0,"has_unicode_error":false,"math_prob_llama3":0.97152764,"pos_list":[0,1,2,3,4],"im_url_duplicate_count":[null,null,null,null,null],"WARC_HEADER":"{\"WARC-Type\":\"response\",\"WARC-Date\":\"2023-06-07T03:25:46Z\",\"WARC-Record-ID\":\"<urn:uuid:4a22c472-1194-45d6-a13c-f59a5487d95d>\",\"Content-Length\":\"85385\",\"Content-Type\":\"application/http; msgtype=response\",\"WARC-Warcinfo-ID\":\"<urn:uuid:25f35b47-53f8-456f-91c7-fb0991c6a0cf>\",\"WARC-Concurrent-To\":\"<urn:uuid:b91f4999-badf-4327-9bc5-ae00ade91308>\",\"WARC-IP-Address\":\"172.67.68.135\",\"WARC-Target-URI\":\"https://www.physicsforums.com/threads/converting-string-to-integer-using-atoi-in-c.547023/\",\"WARC-Payload-Digest\":\"sha1:QWVPK4NWLCJGJRJXWLAKLVDJ7IRXTC6U\",\"WARC-Block-Digest\":\"sha1:U6QFGJL7YDY7RMEMNSLORJEZQSG2P2DT\",\"WARC-Identified-Payload-Type\":\"text/html\",\"warc_filename\":\"/cc_download/warc_2023/CC-MAIN-2023-23/CC-MAIN-2023-23_segments_1685224653501.53_warc_CC-MAIN-20230607010703-20230607040703-00519.warc.gz\"}"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.