209 Matching Annotations
  1. Last 7 days
    1. Many people are frightened of mathematics and thinkthey cannot read it at all. No one is quite sure why this is so.Some psychologists think there is such a thing as "symbolblindness"-the inability to set aside one's dependence on theconcrete and to follow the controlled shifting of symbols.
  2. Sep 2023
    1. Mandel’s system was simple — but incredibly complex from a logistical standpoint

      How to win in Lotto every time:

  3. Aug 2023
  4. Jul 2023
    1. To me this gets to the heart of the teaching of mathematics. There are (at least) two distinct skills: The mechanical system of converting one thing to another using an array of symbols The translation system mapping those moves onto the world. We can emphasise the mechanical (the approach of most school systems) or we can emphasise the translation (the approach of Conrad Wolfram and others who argue that computers should do the calculation).

      Feels very similar to the skills required to model real-world systems in computer programs.

    1. Both the cult of learning around Dante and the cult ofignorance around Newton are phenomena of the vicious spe-cialization of scholarship.

      p. xxiv

      Hutchins seems to indicate that the "vicious specialization of scholarship" is in part to blame for the emergence of the "two cultures" delineated by C. P. Snow later in the decade.

  5. May 2023
  6. Apr 2023
  7. Mar 2023
    1. Small Collision Probabilities

      How probable is for some git hash-ids (some chars, not the full length) to collide:

      • for a small project with ~100 commits:

        • 8 digits (32bits): 1/million
        • 7 digits (28bits): 1/54,000
        • 6 digits (24bits): 1/3,400
      • for a big project: with ~10.000 commits:

        • 8 digits: 1/100
        • 7 digits: 1/6
        • 6 digits: ~1

      As confirmed with the vecto repo, with these ipython commands: ```ipython

      !git rev-list --all --count 14042 def collissions(k,N): ...: return 1 - e((-k(k-1)/(2N)))

      collissions(14042, 16**6) 0.9971938358691735 !git rev-list --all | cut -c -6 | sort | uniq -cd 2 5af40d 2 6a6c62 2 914c24 2 d83979 2 e8060f

      collissions(14042, 16**7) 0.3073608000674162 !git rev-list --all | cut -c -7 | sort | uniq -cd 2 e8060f9

      collissions(14042, 16**8) 0.022691464724788335 !git rev-list --all | cut -c -8 | sort | uniq -cd <nothing> ```

  8. Feb 2023
    1. There is just one little nit for mathematicians to pick: morphisms don’t have to form a set. In the world of categories there are things larger than sets. A category in which morphisms between any two objects form a set is called locally small.
    2. Is composition associative? Check!

      Associativity for <= seems a bit weird to me; generally you want the value inside of () to be comparable outside; but (1 <= 2) <= 3 would result in True <= 3. So I think the best way to think of associativity here is that it just does not apply, and the () can be dropped.

    1. Many authors noted that generations tended to fall into clichés, especially when the system was confronted with scenarios less likely to be found in the model's training data. For example, Nelly Garcia noted the difficulty in writing about a lesbian romance — the model kept suggesting that she insert a male character or that she have the female protagonists talk about friendship. Yudhanjaya Wijeratne attempted to deviate from standard fantasy tropes (e.g. heroes as cartographers and builders, not warriors), but Wordcraft insisted on pushing the story toward the well-worn trope of a warrior hero fighting back enemy invaders.

      Examples of artificial intelligence pushing toward pre-existing biases based on training data sets.

  9. Jan 2023
  10. Dec 2022
  11. Sep 2022
    1. https://www.amazon.com/s?k=math+demystified&i=stripbooks&crid=UM15P2ZTY84C&sprefix=math+demystified%2Cstripbooks%2C137&ref=nb_sb_noss_2

      A whole series of books from McGraw Hill whose titles all carry an implicit math shaming. Who wants to carry these books around and be seen reading them? Even the word DeMYSTiFieD on the cover is written in CLoWn case.

      • Business Math Demystified
      • Dosage Calculations and Basic Math for Nurses Demystified
      • Geometry Demystified
      • Business Calculus Demystified
      • Math Word Problems Demystified
      • Everyday Math Demystified
      • Discrete Mathematics Demystified
      • Math Proofs Demystified
      • Pre-Algebra Demystified
    1. TREE(3) is surprisingly large.TREE(1) = 1 and TREE(2) = 3, but then TREE(3) is suddenly vastly beyond comprehension.But once you know that TREE(3) is too big to grok, there’s not a lot left to be said about TREE(n) for specific n > 3; surely they’re bigger. In fact, they are probably so much bigger that even TREE(4) will dwarf TREE(3) to a much greater extent than TREE(3) dwarfs our familiar numbers. But that isn’t surprising once you know about TREE(3).In principle, of course, there is no reason you have to stop. You could consider, for example, TREETREE(TREE(3)) (3), where you start by plugging 3 into TREE, then plug that into TREE, and keep going through a total of TREE(TREE(3)) iterations. That would definitely be a (disturbingly, in my opinion) large number. But it’s not particularly interesting, as large numbers go.
  12. Jul 2022
  13. Jun 2022
  14. May 2022
    1. We don’t know how many media outlets have been run out of existence because of brand safety technology, nor how many media outlets will never be able to monetize critical news coverage because the issues important to their communities are marked as “unsafe.”
    1. With Alphabet Inc.’s Google, and Facebook Inc. and its WhatsApp messaging service used by hundreds of millions of Indians, India is examining methods China has used to protect domestic startups and take control of citizens’ data.

      Governments owning citizens' data directly?? Why not have the government empower citizens to own their own data?

    1. **The Cauchy-Schwarz Inequality** $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)$$

      This sentence uses $ delimiters to show math inline: $\sqrt{3x-1}+(1+x)^2$

    1. ```html

      <script type="application/ld+json"> { "@context": "https://schema.org", "@type": ["MathSolver", "LearningResource"], "name": "An awesome math solver", "url": "https://www.mathdomain.com/", "usageInfo": "https://www.mathdomain.com/privacy", "inLanguage": "en", "potentialAction": [{ "@type": "SolveMathAction", "target": "https://mathdomain.com/solve?q={math_expression_string}", "mathExpression-input": "required name=math_expression_string", "eduQuestionType": ["Polynomial Equation","Derivative"] }], "learningResourceType": "Math solver" }, { "@context": "https://schema.org", "@type": ["MathSolver", "LearningResource"], "name": "Un solucionador de matemáticas increíble", "url": "https://es.mathdomain.com/", "usageInfo": "https://es.mathdomain.com/privacy", "inLanguage": "es", "potentialAction": [{ "@type": "SolveMathAction", "target": "https://es.mathdomain.com/solve?q={math_expression_string}", "mathExpression-input": "required name=math_expression_string", "eduQuestionType": ["Polynomial Equation","Derivative"] }], "learningResourceType": "Math solver" } </script>

      ```

  15. Apr 2022
    1. The symbol dx has different interpretations depending on the theory being used. In Leibniz's notation, dx is interpreted as an infinitesimal change in x and his integration notation is the most common one in use today. If the underlying theory of integration is not important, dx can be seen as strictly a notation indicating that x is a dummy variable of integration; if the integral is seen as a Riemann integral, dx indicates that the sum is over subintervals in the domain of x; in a Riemann–Stieltjes integral, it indicates the weight applied to a subinterval in the sum; in Lebesgue integration and its extensions, dx is a measure, a type of function which assigns sizes to sets; in non-standard analysis, it is an infinitesimal; and in the theory of differentiable manifolds, it is often a differential form, a quantity which assigns numbers to tangent vectors. Depending on the situation, the notation may vary slightly to capture the important features of the situation. For instance, when integrating a variable x with respect to a measure μ, the notation dμ(x) is sometimes used to emphasize the dependence on x. Source: http://en.wikipedia.org/wiki/Integral#Terminology_and_notation

      Why is there a \(dx\) at the end of the integration notation?

    1. In this case, for a test to be statistically significant, p-value must be lower than 0.05.

      statistical significance should be less than 5%

      tf your confidence that the results are not due to chance is 95%

    1. We are 99% confident that the true average “attitude” difference betweenliving environments is between 1.32 and 7.88. At a significance level of 0.01we can say that living in a minority environment is associated with higherscore

      99% confident that the true average (result) is between these two numbers;

      at 1% (0.01) significance, we can scientifically assume there is a causal relationship

    1. While it was once regarded as a low-level, “primitive” instinct, researchers arecoming to recognize that imitation—at least as practiced by humans, includingvery young ones—is a complex and sophisticated capacity. Although non-humananimals do imitate, their mimicry differs in important ways from ours. Forexample, young humans’ copying is unique in that children are quite selectiveabout whom they choose to imitate. Even preschoolers prefer to imitate peoplewho have shown themselves to be knowledgeable and competent. Researchshows that while toddlers will choose to copy their mothers rather than a personthey’ve just met, as children grow older they become increasingly willing tocopy a stranger if the stranger appears to have special expertise. By the time achild reaches age seven, Mom no longer knows best.

      Studies have shown that humans are highly selective about whom they choose to imitate. Children up to age seven show a propensity to imitate their parents over strangers and after that they primarily imitate people who have shown themselves to be knowledgeable and competent within an area of expertise.


      This has applications to teaching with respect to math shaming. A teacher who says that math is personally hard for them is likely to be signaling to students that what they're teaching is not based on experience and expertise and thus demotivating the student from following and imitating their example.

    1. Learning to "factor an equation" is the process of arranging your teepee. In this case: If x=−3 then Component A falls down. If x=2, Component B falls down.

      doesnt really explain how to get the factors. Which for most binomials is done by creating a table of numbers that multiply to create the last number while adding up to create the middle x

    1. We invented the decimal point to handle the crazy idea of a number more than zero but less than one.

      Zeno's paradox comes to mind. The idea is that you never get from zero to one or vice versa, but rather infinity closer to one or the other. But what does getting to 2 mean? A "leap" through 1? Infinitly close to 1 - twice?

    2. using the symbol 0 to represent nothingness

      is there another symbol for potential like a placeholder character?

  16. Mar 2022
    1. 618034

      "The first known calculation of the golden ratio as a decimal was given in a letter written in 1597 by Michael Mästlin, at the University of Tübingen, to his former student Kepler. He gives "about 0.6180340" for the length of the longer segment of a line of length 1 divided in the golden ratio." from https://mathshistory.st-andrews.ac.uk/HistTopics/Golden_ratio/

    1. The current mass media such as t elevision, books, and magazines are one-directional, and are produced by a centralized process. This can be positive, since respected editors can filter material to ensure consistency and high quality, but more widely accessible narrowcasting to specific audiences could enable livelier decentralized discussions. Democratic processes for presenting opposing views, caucusing within factions, and finding satisfactory compromises are productive for legislative, commercial, and scholarly pursuits.

      Social media has to some extent democratized the access to media, however there are not nearly enough processes for creating negative feedback to dampen ideas which shouldn't or wouldn't have gained footholds in a mass society.

      We need more friction in some portions of the social media space to prevent the dissemination of un-useful, negative, and destructive ideas swamping out the positive ones. The accelerative force of algorithmic feeds for the most extreme ideas in particular is one of the most caustic ideas of the last quarter of a century.

    2. Since any powerful tool, such as a genex, can be used for destructive purposes, the cautions are discussed in Section 5.

      Given the propensity for technologists in the late 90s and early 00s to have rose colored glasses with respect to their technologies, it's nice to see at least some nod to potential misuses and bad actors within the design of future tools.

    1. JavaScript 的数学运算

      基于 Math 类 Math.ceil() Math.floor()

      3.1415926.toFixed(2) // 保留小数位 99.89233.toPrecision(5) // 整体长度,含整数部分

      全局对象 window 的方法

      parseInt('100') parseInt(100.12) parseInt('string') // => NaN

      Number("string") // => 0

      位运算:

      | 0 , 和 0 按位或 ~~ ,两次按位非

      0,右移 0 位 << 0,左移 0 位

      0,无符号右移 0 位

  17. Feb 2022
  18. Jan 2022
  19. Dec 2021
  20. Nov 2021
  21. Oct 2021
    1. https://www.theatlantic.com/ideas/archive/2021/10/facebook-papers-democracy-election-zuckerberg/620478/

      Adrienne LaFrance outlines the reasons we need to either abandon Facebook or cause some more extreme regulation of it and how it operates.

      While she outlines the ills, she doesn't make a specific plea about the solution of the problem. There's definitely a raging fire in the theater, but no one seems to know what to do about it. We're just sitting here watching the structure burn down around us. We need clearer plans for what must be done to solve this problem.

    1. Alicia Boole Stott

      Alicia was the only Boole sister to inherit the mathematical career of her parents, although her mother Mary Everest Boole had brought up all of her five children from an early age 'to acquaint them with the flow of geometry' by projecting shapes onto paper, hanging pendulums etc. She was first exposed to geometric models by her brother-in-law Charles Howard Hinton when she was 17, and developed the ability to visualise in a fourth dimension. She found that there were exactly six regular polytopes in four dimensions and that they are bounded by 5, 16 or 600 tetrahedra, 8 cubes, 24 octahedra or 120 dodecahedra.

  22. Sep 2021
    1. We teachers can help our students with this. Let them know when the most difficult work is coming. Help them prepare for that work, then admit that the challenge is real and it is difficult.

      But let's also be aware of the all-too-prevalent math shaming that occurs when we say "math is difficult". That definitely isn't productive.

  23. Aug 2021
  24. Jun 2021
    1. cheap trick

      Does Morningstar think that math too suffers from the same issues he finds in critical theory, or just Godel's incompleteness theorem (I'm assuming that's what Morningstar is alluding to)? Explore a deep discussion about whether Godel's incompleteness theorem is a cheap trick.

  25. Apr 2021
  26. Mar 2021
    1. In computer science, a tree is a widely used abstract data type that simulates a hierarchical tree structure

      a tree (data structure) is the computer science analogue/dual to tree structure in mathematics

    1. I'd say an equation is anything with an equals sign in it; a formula is an equation of the form A= stuffA= stuffA={\rm\ stuff} where AAA does not appear among the stuff on the right side.
    2. I think that over time the distinction is lost. My math teacher, 35 years ago stated "formulas are used in chemistry, in math we have equations". To this day, the word 'formula' in math seems wrong, but I'd accept it's used commonly.
    3. An equation is meant to be solved, that is, there are some unknowns. A formula is meant to be evaluated, that is, you replace all variables in it with values and get the value of the formula.
    4. The key idea is that the equation captures not just the ingredients of the formula, but also the relationship between the different ingredients.
  27. Feb 2021
    1. In fact, the Product comonad is just the dual of the Writer monad and effectively the same as the Reader monad (both discussed below)
      • Establish the number of Rubik's cube combinations.
      • Establish "algorithm" capabilities based on the x12 "impossible" cubes.
      • "Signmaster notation" for describing algorithm moves.
      • x2 links to youtube tutorials.
    1. (The forms !=, /= or <> are generally used in programming languages where ease of typing and use of ASCII text is preferred.) x ≈ y means x is approximately equal to y. This may also be written ≃, ≅, ~, ♎ (Libra Symbol), or ≒. G ≈ H means that group G is isomorphic (structurally identical) to group H.

      what does that have to do with this game?

    1. Critical and creative thinkers engage in active planning and forethought to set goals, outline strategies, and determine the best methods through which they can achieve their goals

      Head Scratcher: How are we promoting critical and creative thinkers in our instruction?

      As a high school math teacher this can be easier at times, and more difficult at times depending on the class and the course material. At times it is easy to promote creative when dealing with honors classing and higher math courses. But when working with remedial Algebra classes it can be more difficult to promote creativity and critical thinking because of high levels of apathy and prior knowledge. Sometimes the best way to promote success in those classes is through repetition and memeorization of steps to solve common test promblems.

    1. All those names of things - topology, complex analysis, and differential geometry - might not sound like much to you now, but you'll soon learn that they're really just describing the shapes of things in our Universe, and the way those shapes change in time and space are explained by things like calculus and chaos theory.
  28. Jan 2021
    1. A big reason for GPUs popularity in Machine Learning is that they are essentially fast matrix multiplication machines. Deep Learning is essentially matrix multiplication.

      Deep Learning is mostly about matrix multiplication

    2. A matrix is a linear map but linear maps are far more intuitive to think about than matrices
    3. I often get asked by young students new to Machine Learning, what math do I need to know for Deep Learning and my answer is Matrix Multiplication and Derivatives of square functions.

      Deep Neural Networks are a composition of matrix multiplications with the occasional non-linearity in between

    1. New Quantum Algorithms Finally Crack Nonlinear Equations
      • We can’t predict the weather, among many other complex issues, because computers still can’t solve nonlinear equations.
      • But this might change soon, as two different research teams created algorithms that can be used for nonlinear modelling on quantum computers.
      • Their techniques still need refining, and won’t be real-world ready for years, but these studies are another stepping stone towards truly useful quantum algorithms.
  29. Dec 2020
    1. Ergodic theory is a forbiddingly technical branch of mathematics.

      It's supremely sad that a paper in Nature should "math shame" ergodic theory this way. What the hell is going on?

    1. The company’s early mission was to “give people the power to share and make the world more open and connected.” Instead, it took the concept of “community” and sapped it of all moral meaning. The rise of QAnon, for example, is one of the social web’s logical conclusions. That’s because Facebook—along with Google and YouTube—is perfect for amplifying and spreading disinformation at lightning speed to global audiences. Facebook is an agent of government propaganda, targeted harassment, terrorist recruitment, emotional manipulation, and genocide—a world-historic weapon that lives not underground, but in a Disneyland-inspired campus in Menlo Park, California.

      The original goal with a bit of moderation may have worked. Regression to the mean forces it to a bad place, but when you algorithmically accelerate things toward our bases desires, you make it orders of magnitude worse.

      This should be though of as pure social capitalism. We need the moderating force of government regulation to dampen our worst instincts, much the way the United State's mixed economy works (or at least used to work, as it seems that raw capitalism is destroying the United States too).

  30. Nov 2020
    1. We say i (lowercase) is 1.0 in the imaginary dimension Multiplying by i is a 90-degree counter-clockwise turn, to face “up” (here’s why). Multiplying by -i points us South It’s true that starting at 1.0 and taking 4 turns puts us at our starting point: And two turns points us negative: which simplifies to: so

      Great explanation of why \(i=\sqrt-1\)

    2. Imaginary numbers seem to point North, and we can get to them with a single clockwise turn. Oh! I guess they can point South too, by turning the other way. 4 turns gets us pointing in the positive direction again It seems like two turns points us backwards

      Imaginary numbers explained in plain-english

    3. Imaginary numbers let us rotate around the number line, not just move side-to-side.

      Imaginary numbers Another graph:

  31. Oct 2020
    1. 两个向量的外积,又叫向量积、叉乘等

      叉乘代表外积

    1. Espen Slettnes 3rd degree connection3rd Espen has a account BMC-Upper Monthly contest designer and local coordinator at Berkeley Math Circle
    1. But these lookalike audiences aren’t just potential new customers — they can also be used to exclude unwanted customers in the future, creating a sort of ad targeting demographic blacklist.
    2. How consumers would be expected to navigate this invisible, unofficial credit-scoring process, given that they’re never informed of its existence, remains an open question.
    3. “It sure smells like the prescreening provisions of the FCRA,” Reidenberg told The Intercept. “From a functional point of view, what they’re doing is filtering Facebook users on creditworthiness criteria and potentially escaping the application of the FCRA.”
    4. In an initial conversation with a Facebook spokesperson, they stated that the company does “not provide creditworthiness services, nor is that a feature of Actionable Insights.” When asked if Actionable Insights facilitates the targeting of ads on the basis of creditworthiness, the spokesperson replied, “No, there isn’t an instance where this is used.” It’s difficult to reconcile this claim with the fact that Facebook’s own promotional materials tout how Actionable Insights can enable a company to do exactly this. Asked about this apparent inconsistency between what Facebook tells advertising partners and what it told The Intercept, the company declined to discuss the matter on the record,
    1. YouTube doesn’t give an exact recipe for virality. But in the race to one billion hours, a formula emerged: Outrage equals attention.

      Talk radio has had this formula for years and they've almost had to use it to drive any listenership as people left radio for television and other media.

      I can still remember the different "loudness" level of talk between Bill O'Reilly's primetime show on Fox News and the louder level on his radio show.

    2. A 2015 clip about vaccination from iHealthTube.com, a “natural health” YouTube channel, is one of the videos that now sports a small gray box.

      Does this box appear on the video itself? Apparently not...

      Examples:

      But nothing on the embedded version:

      A screengrab of what this looks like:

    3. When Wojcicki took over, in 2014, YouTube was a third of the way to the goal, she recalled in investor John Doerr’s 2018 book Measure What Matters.“They thought it would break the internet! But it seemed to me that such a clear and measurable objective would energize people, and I cheered them on,” Wojcicki told Doerr. “The billion hours of daily watch time gave our tech people a North Star.” By October, 2016, YouTube hit its goal.

      Obviously they took the easy route. You may need to measure what matters, but getting to that goal by any means necessary or using indefensible shortcuts is the fallacy here. They could have had that North Star, but it's the means they used by which to reach it that were wrong.

      This is another great example of tech ignoring basic ethics to get to a monetary goal. (Another good one is Marc Zuckerberg's "connecting people" mantra when what he should be is "connecting people for good" or "creating positive connections".

    4. The conundrum isn’t just that videos questioning the moon landing or the efficacy of vaccines are on YouTube. The massive “library,” generated by users with little editorial oversight, is bound to have untrue nonsense. Instead, YouTube’s problem is that it allows the nonsense to flourish. And, in some cases, through its powerful artificial intelligence system, it even provides the fuel that lets it spread.#lazy-img-336042387:before{padding-top:66.68334167083543%;}

      This is a great summation of the issue.

    5. Somewhere along the last decade, he added, YouTube prioritized chasing profits over the safety of its users. “We may have been hemorrhaging money,” he said. “But at least dogs riding skateboards never killed anyone.”
    1. A more active stance by librarians, journalists, educators, and others who convey truth-seeking habits is essential.

      In some sense these people can also be viewed as aggregators and curators of sorts. How can their work be aggregated and be used to compete with the poor algorithms of social media?

    1. Meta co-founder and CEO Sam Molyneux writes that “Going forward, our intent is not to profit from Meta’s data and capabilities; instead we aim to ensure they get to those who need them most, across sectors and as quickly as possible, for the benefit of the world.”

      Odd statement from a company that was just acquired by Facebook founder's CVI.

    1. Meanwhile, politicians from the two major political parties have been hammering these companies, albeit for completely different reasons. Some have been complaining about how these platforms have potentially allowed for foreign interference in our elections.3 3. A Conversation with Mark Warner: Russia, Facebook and the Trump Campaign, Radio IQ|WVTF Music (Apr. 6, 2018), https://www.wvtf.org/post/conversation-mark-warner-russia-facebook-and-trump-campaign#stream/0 (statement of Sen. Mark Warner (D-Va.): “I first called out Facebook and some of the social media platforms in December of 2016. For the first six months, the companies just kind of blew off these allegations, but these proved to be true; that Russia used their social media platforms with fake accounts to spread false information, they paid for political advertising on their platforms. Facebook says those tactics are no longer allowed—that they've kicked this firm off their site, but I think they've got a lot of explaining to do.”). Others have complained about how they’ve been used to spread disinformation and propaganda.4 4. Nicholas Confessore & Matthew Rosenberg, Facebook Fallout Ruptures Democrats’ Longtime Alliance with Silicon Valley, N.Y. Times (Nov. 17, 2018), https://www.nytimes.com/2018/11/17/technology/facebook-democrats-congress.html (referencing statement by Sen. Jon Tester (D-Mont.): “Mr. Tester, the departing chief of the Senate Democrats’ campaign arm, looked at social media companies like Facebook and saw propaganda platforms that could cost his party the 2018 elections, according to two congressional aides. If Russian agents mounted a disinformation campaign like the one that had just helped elect Mr. Trump, he told Mr. Schumer, ‘we will lose every seat.’”). Some have charged that the platforms are just too powerful.5 5. Julia Carrie Wong, #Breaking Up Big Tech: Elizabeth Warren Says Facebook Just Proved Her Point, The Guardian (Mar. 11, 2019), https://www.theguardian.com/us-news/2019/mar/11/elizabeth-warren-facebook-ads-break-up-big-tech (statement of Sen. Elizabeth Warren (D-Mass.)) (“Curious why I think FB has too much power? Let's start with their ability to shut down a debate over whether FB has too much power. Thanks for restoring my posts. But I want a social media marketplace that isn't dominated by a single censor. #BreakUpBigTech.”). Others have called attention to inappropriate account and content takedowns,6 6. Jessica Guynn, Ted Cruz Threatens to Regulate Facebook, Google and Twitter Over Charges of Anti-Conservative Bias, USA Today (Apr. 10, 2019), https://www.usatoday.com/story/news/2019/04/10/ted-cruz-threatens-regulate-facebook-twitter-over-alleged-bias/3423095002/ (statement of Sen. Ted Cruz (R-Tex.)) (“What makes the threat of political censorship so problematic is the lack of transparency, the invisibility, the ability for a handful of giant tech companies to decide if a particular speaker is disfavored.”). while some have argued that the attempts to moderate discriminate against certain political viewpoints.

      Most of these problems can all fall under the subheading of the problems that result when social media platforms algorithmically push or accelerate content on their platforms. An individual with an extreme view can publish a piece of vile or disruptive content and because it's inflammatory the silos promote it which provides even more eyeballs and the acceleration becomes a positive feedback loop. As a result the social silo benefits from engagement for advertising purposes, but the community and the commons are irreparably harmed.

      If this one piece were removed, then the commons would be much healthier, fringe ideas and abuse that are abhorrent to most would be removed, and the broader democratic views of the "masses" (good or bad) would prevail. Without the algorithmic push of fringe ideas, that sort of content would be marginalized in the same way we want our inane content like this morning's coffee or today's lunch marginalized.

      To analogize it, we've provided social media machine guns to the most vile and fringe members of our society and the social platforms are helping them drag the rest of us down.

      If all ideas and content were provided the same linear, non-promotion we would all be much better off, and we wouldn't have the need for as much human curation.

    2. It would allow end users to determine their own tolerances for different types of speech but make it much easier for most people to avoid the most problematic speech, without silencing anyone entirely or having the platforms themselves make the decisions about who is allowed to speak.

      But platforms are making huge decisions about who is allowed to speak. While they're generally allowing everyone to have a voice, they're also very subtly privileging many voices over others. While they're providing space for even the least among us to have a voice, they're making far too many of the worst and most powerful among us logarithmic-ally louder.

      It's not broadly obvious, but their algorithms are plainly handing massive megaphones to people who society broadly thinks shouldn't have a voice at all. These megaphones come in the algorithmic amplification of fringe ideas which accelerate them into the broader public discourse toward the aim of these platforms getting more engagement and therefore more eyeballs for their advertising and surveillance capitalism ends.

      The issue we ought to be looking at is the dynamic range between people and the messages they're able to send through social platforms.

      We could also analogize this to the voting situation in the United States. When we disadvantage the poor, disabled, differently abled, or marginalized people from voting while simultaneously giving the uber-rich outsized influence because of what they're able to buy, we're imposing the same sorts of problems. Social media is just able to do this at an even larger scale and magnify the effects to make their harms more obvious.

      If I follow 5,000 people on social media and one of them is a racist-policy-supporting, white nationalist president, those messages will get drowned out because I can only consume so much content. But when the algorithm consistently pushes that content to the top of my feed and attention, it is only going to accelerate it and create more harm. If I get a linear presentation of the content, then I'd have to actively search that content out for it to cause me that sort of harm.

    1. A spokeswoman for Summit said in an e-mail, “We only use information for educational purposes. There are no exceptions to this.” She added, “Facebook plays no role in the Summit Learning Program and has no access to any student data.”

      As if Facebook needed it. The fact that this statement is made sort of goes to papering over the idea that Summit itself wouldn't necessarily do something as nefarious or worse with it than Facebook might.

    1. Having low scores posted for all coworkers to see was “very embarrassing,” said Steph Buja, who recently left her job as a server at a Chili’s in Massachusetts. But that’s not the only way customers — perhaps inadvertently — use the tablets to humiliate waitstaff. One diner at Buja’s Chili’s used Ziosk to comment, “our waitress has small boobs.”According to other servers working in Ziosk environments, this isn’t a rare occurrence.

      This is outright sexual harrassment and appears to be actively creating a hostile work environment. I could easily see a class action against large chains and/or against the app maker themselves. Aggregating the data and using it in a smart way is fine, but I suspect no one in the chain is actively thinking about what they're doing, they're just selling an idea down the line.

      The maker of the app should be doing a far better job of filtering this kind of crap out and aggregating the data in a smarter way and providing a better output since the major chains they're selling it to don't seem to be capable of processing and disseminating what they're collecting.

    2. Systems like Ziosk and Presto allow customers to channel frustrations that would otherwise end up on public platforms like Yelp — which can make or break a restaurant — into a closed system that the restaurant controls.

      I like that they're trying to own and control their own data, but it seems like they've relied on a third party company to do most of the thinking for them and they're not actually using the data they're gathering in the proper ways. This is just painfully deplorable.

    1. I literally couldn’t remember when I’d last looked at my RSS subscriptions. On the surface, that might seem like a win: Instead of painstakingly curating my own incoming news, I can effortlessly find an endless supply of interesting, worthwhile content that the algorithm finds for me. The problem, of course, is that the algorithm isn’t neutral: It’s the embodiment of Facebook and Twitter’s technology, data analysis, and most crucial, business model. By relying on the algorithm, instead of on tags and RSS, I’m letting an army of web developers, business strategists, data scientists, and advertisers determine what gets my attention. I’m leaving myself vulnerable to misinformation, and manipulation, and giving up my power of self-determination.
    1. Safiya Noble, Algorithms of Oppression (New York: New York University Press, 2018). See also Mozilla’s 2019 Internet Health Report at https://internethealthreport.org/2019/lets-ask-more-of-ai/.
    1. eight years after release, men are 43% more likely to be taken back under arrest than women; African-Americans are 42% more likely than whites, and high-school dropouts are three times more likely to be rearrested than college graduates.

      but are these possibly the result of external factors (like racism?)

    1. MATH LESSONS SheLovesMath.com is a free math website that explains math in a simple way, and includes lots of examples, from Counting through Calculus. Here are the topics that She Loves Math covers, as expanded below:  Basic Math, Pre-Algebra, Beginning Algebra, Intermediate Algebra, Advanced Algebra, Pre-Calculus, Trigonometry, and Calculus.
    1. Math Problem Solving Skills
    2. I was just helping a student with his AoPS homework, when I came across the following related problems: Eight people, including Fred, are in a club.  They decide to form a 3 person committee.  How many possible committees can be formed? So we are choosing 3 people out of 8 or . How many possible committees include Fred? Since Fred is taking one committee seat, that means we need to choose 2 more people from the remaining seven, or . How many possible committees do not include Fred? Since we can’t choose Fred, we need to choose 3 members from the remaining 7 or . Since the total number of committees is equal to the number of of committees with Fred plus the number of committees without Fred, then we can say

      Pascal's rule and is Fred on the committee

  32. Sep 2020
    1. 4.… 9.7

      You know, they say, all Supreme Courts are created equal, but you look at the court now, and you look at the court in 1868, and you can see that statement is NOT TRUE. See, normally, you propose something like an Expanded Supreme Court, you got a fifty-fifty chance of passing it. But Majority Leader McConnell is a genetic freak, and the Congress as it stands is not normal.

      So, right now, you got a 25% chance AT BEST at beating this do-nothing Congress and passing something. But then you add Election Day to the mix? You the chances of passing the expanded court drastically go up. See, at the three way on Election Day (where the Senate will either be Republican Majority, Democratic Majority, or tied, because of course that can happen), you got a 33 and a third chance of the Republicans winning! But Democrats! Democrats got a 66 and two thirds chance of winning, 'cause President Trump KNOOOOOWS he can't win fairly, and he's not even gonna try, and he might take some of his party's senators down with him. So, DAVID, you take Republicans 33 and a 3rd percent chance of winning minus Democrats 25% chance of passing something through the Senate (if they was to go one-on-one right now) and you've got an 8 1/3 percent chance of Republicans defeating court expansion! But THEN, you take Democrats 75% chance of passing something through the House, plus the 66 and 2/3 percents, they got a 141 2/3 chance of expanding the court!

      Senator McConnell! The numbers don't lie, and they spell 17 1 5 4 5 7 3 12 for you at Sacrifice!

  33. Jul 2020
    1. In logic, functions or relations A and B are considered dual if A(¬x) = ¬B(x), where ¬ is logical negation. The basic duality of this type is the duality of the ∃ and ∀ quantifiers in classical logic. These are dual because ∃x.¬P(x) and ¬∀x.P(x) are equivalent for all predicates P in classical logic
    2. the ∧ and ∨ operators are dual in this sense, because (¬x ∧ ¬y) and ¬(x ∨ y) are equivalent. This means that for every theorem of classical logic there is an equivalent dual theorem. De Morgan's laws are examples
  34. May 2020
    1. Related concepts in other fields are: In natural language, the coordinating conjunction "and". In programming languages, the short-circuit and control structure. In set theory, intersection. In predicate logic, universal quantification.

      Strictly speaking, are these examples of dualities (https://en.wikipedia.org/wiki/Duality_(mathematics))? Or can I only, at strongest, say they are analogous (a looser coonection)?