<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Guides on SOH-CAH-TOA</title>
    <link>https://soh-cah-toa.pages.dev/guides/</link>
    <description>Recent content in Guides on SOH-CAH-TOA</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 17 Jun 2026 00:12:50 +0700</lastBuildDate>
    <atom:link href="https://soh-cah-toa.pages.dev/guides/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Scatter Diagrams and Correlation</title>
      <link>https://soh-cah-toa.pages.dev/guides/mathematics/scatter_diagrams_and_correlation/</link>
      <pubDate>Wed, 17 Jun 2026 00:12:50 +0700</pubDate>
      <guid>https://soh-cah-toa.pages.dev/guides/mathematics/scatter_diagrams_and_correlation/</guid>
      <description>&lt;h2 id=&#34;key-concepts-overview&#34;&gt;Key Concepts Overview&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Scatter Diagrams:&lt;/strong&gt; Tools for visualizing the relationship, or correlation, between two variables ($x$ and $y$).
&lt;ul&gt;
&lt;li&gt;Plotting points: Each observed $(x, y)$ pair is a point on the Cartesian plane.&lt;/li&gt;
&lt;li&gt;Purpose: Determine pattern (linear, curved, none) and strength/direction of association.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;understanding-correlation&#34;&gt;Understanding Correlation&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;What it measures:&lt;/strong&gt; The degree to which two variables change together. It &lt;em&gt;does not&lt;/em&gt; imply causation.&lt;/p&gt;
&lt;h3 id=&#34;types-of-correlation&#34;&gt;Types of Correlation&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Positive Correlation:&lt;/strong&gt; As $x$ increases, $y$ tends to increase (pattern slopes up and right).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Negative Correlation:&lt;/strong&gt; As $x$ increases, $y$ tends to decrease (pattern slopes down and right).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No Correlation:&lt;/strong&gt; No discernible pattern linking changes in one variable to another (diluted cloud of points).&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;strength-of-correlation&#34;&gt;Strength of Correlation&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Strong:&lt;/strong&gt; Points cluster tightly around a potential line or curve.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Medium/Weak:&lt;/strong&gt; Points are spread more widely but still show a tendency.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;None:&lt;/strong&gt; Random scatter, no visual pattern.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;syllabus-deep-dives--theory-focus&#34;&gt;Syllabus Deep Dives &amp;amp; Theory Focus&lt;/h2&gt;
&lt;h3 id=&#34;i-graphical-analysis&#34;&gt;I. Graphical Analysis&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Identifying Pattern:&lt;/strong&gt; Ability to quickly determine if the relationship is linear or non-linear by inspection of the scatter diagram.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Outliers:&lt;/strong&gt; Identify potential points that deviate significantly from the general trend. Suspend conclusions based on single outliers.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Line of Best Fit (LOBF):&lt;/strong&gt; The single straight line that best represents the overall trend of the data. Points should generally fall close to this line.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;ii-correlation-measurement-r&#34;&gt;II. Correlation Measurement ($r$)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Coefficient of Correlation ($r$):&lt;/strong&gt; A numerical measure given by Pearson&amp;rsquo;s $r$. Ranges from $-1$ to $+1$.
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Calculation:&lt;/strong&gt; Mathematically, $\rho$ is calculated using the formula involving covariance and standard deviations (or specific sums of squares). Formula: $$\rho = \frac{\sum(x_i - \bar{x})(y_i - \bar{y})}{\sqrt{\sum(x_i - \bar{x})^2 \sum(y_i - \bar{y})^2}}$$. For exams, $r$ typically found using provided statistical calculator functions or formula sheets. Conceptually understand method, interpret resultant value key.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;$r \approx +1$: Strong positive linear relationship.&lt;/li&gt;
&lt;li&gt;$r \approx -1$: Strong negative linear relationship.&lt;/li&gt;
&lt;li&gt;$r \approx 0$: Little to no linear relationship.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;iii-making-predictions-linear-interpolation&#34;&gt;III. Making Predictions (Linear Interpolation)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Method:&lt;/strong&gt; Use the identified Linear Model ($y = mx + c$) derived from LOBF and data points to estimate $y$ for a given $x$.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Domain Matters:&lt;/strong&gt; Prediction/interpolation &lt;em&gt;must&lt;/em&gt; remain within the observed range of $x$-values (the domain). Extrapolating outside this range is unreliable.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;study-checklist--practice-areas&#34;&gt;Study Checklist &amp;amp; Practice Areas&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; &lt;strong&gt;Define Correlation:&lt;/strong&gt; Distinguish between correlation and causation.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; &lt;strong&gt;Analyze Diagrams:&lt;/strong&gt; Given various scatter diagrams, correctly state the type (positive/negative/none) and strength of correlation visually.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; &lt;strong&gt;Calculate $r$:&lt;/strong&gt; Compute Pearson&amp;rsquo;s coefficient from provided data sets and interpret its value (e.g., &amp;ldquo;There is a strong negative correlation&amp;hellip;&amp;rdquo;).&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; &lt;strong&gt;Draw LOBF:&lt;/strong&gt; Accurately draw the line of best fit onto given data plots.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; &lt;strong&gt;Predict/Estimate:&lt;/strong&gt; Use the derived linear relationship to estimate missing data points, explicitly stating limitations (interpolation vs. extrapolation).&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Remember: Always describe the correlation observed &lt;em&gt;before&lt;/em&gt; presenting any numerical findings or predictions.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Metals (C9)</title>
      <link>https://soh-cah-toa.pages.dev/guides/chemistry/metals/</link>
      <pubDate>Tue, 16 Jun 2026 23:32:57 +0700</pubDate>
      <guid>https://soh-cah-toa.pages.dev/guides/chemistry/metals/</guid>
      <description>&lt;h1 id=&#34;igcse-chemistry-study-guide-metals&#34;&gt;IGCSE Chemistry Study Guide: Metals&lt;/h1&gt;
&lt;h2 id=&#34;overview&#34;&gt;Overview&lt;/h2&gt;
&lt;p&gt;This guide summarizes core concepts of metals, covering chemical properties, reactivity, extraction methods, and uses. Mastery requires understanding periodic trends and redox principles.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Syllabus Coverage:&lt;/strong&gt; Core/Extended - Review specific section requirements for detailed study.&lt;/p&gt;
&lt;h2 id=&#34;1-properties-and-structure&#34;&gt;1. Properties and Structure&lt;/h2&gt;
&lt;h3 id=&#34;physical-properties-core&#34;&gt;Physical Properties (Core)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Appearance:&lt;/strong&gt; Typically solid at room temperature (exceptions: Mercury). Often shiny/lustrous.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;State:&lt;/strong&gt; Solid, malleable, ductile (can be hammered into sheets and drawn into wires).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Conductivity:&lt;/strong&gt; Highly conductive of heat and electricity due to delocalized electrons in metallic bonding.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Density:&lt;/strong&gt; Generally high density compared to non-metals.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;chemical-properties-coreextended&#34;&gt;Chemical Properties (Core/Extended)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Formation:&lt;/strong&gt; Metals tend to lose electrons to achieve a stable electron configuration, forming positive ions (cations).
&lt;ul&gt;
&lt;li&gt;Reaction: $\text{Metal} \rightarrow \text{Metal}^+ + e^-$&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Reactivity Series:&lt;/strong&gt; Metals are arranged in the reactivity series based on their ease of oxidation potential. Higher up means higher reactivity.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;2-reactivity-and-reactions&#34;&gt;2. Reactivity and Reactions&lt;/h2&gt;
&lt;h3 id=&#34;reactions-with-oxygen-and-water-core&#34;&gt;Reactions with Oxygen and Water (Core)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;With Oxygen:&lt;/strong&gt; Metals react vigorously forming metal oxides ($\text{M} + \text{O}&lt;em&gt;2 \rightarrow \text{M}&lt;/em&gt;{\text{x}}\text{O}_{\text{y}}$). Reactivity determines oxide strength.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;With Water:&lt;/strong&gt; Highly reactive metals (Sodium, Potassium) react violently with water, producing a metal hydroxide and hydrogen gas.
&lt;ul&gt;
&lt;li&gt;Example: $\text{2Na}(\text{s}) + \text{2H}_2\text{O}(\text{g}) \rightarrow \text{2NaOH}(\text{aq}) + \text{H}_2(\text{g})$&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;reactions-in-acid-solutions-core&#34;&gt;Reactions in Acid Solutions (Core)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Reactive metals displace hydrogen from dilute acids, producing salt and hydrogen gas.
&lt;ul&gt;
&lt;li&gt;General equation: $\text{Metal} + 2\text{HCl} \rightarrow \text{MetalCl}_2 + \text{H}_2$&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Caution:&lt;/em&gt; Metals less reactive than hydrogen (e.g., Gold) do not react with dilute acids.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;displacement-reactions-and-the-reactivity-series-extended&#34;&gt;Displacement Reactions and the Reactivity Series (Extended)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;A more reactive metal can displace a less reactive metal from its salt solution.
&lt;ul&gt;
&lt;li&gt;Example: $\text{Zn}(\text{s}) + \text{CuSO}_4(\text{aq}) \rightarrow \text{ZnSO}_4(\text{aq}) + \text{Cu}(\text{s})$&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;The reactivity series acts as a predictor for potential displacement reactions.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;3-extraction-of-metals-extended&#34;&gt;3. Extraction of Metals (Extended)&lt;/h2&gt;
&lt;h3 id=&#34;a-reduction-methods&#34;&gt;A. Reduction Methods&lt;/h3&gt;
&lt;p&gt;Extraction generally requires converting metal compounds into pure element form. This involves a redox reaction. The ore must be reduced of oxygen.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Coordination and Response (Chapter 10)</title>
      <link>https://soh-cah-toa.pages.dev/guides/biology/coordination_and_response/</link>
      <pubDate>Tue, 16 Jun 2026 23:22:18 +0700</pubDate>
      <guid>https://soh-cah-toa.pages.dev/guides/biology/coordination_and_response/</guid>
      <description>&lt;h1 id=&#34;study-guide-biology---coordination-and-response-chapter-10&#34;&gt;Study Guide: Biology - Coordination and Response (Chapter 10)&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;Syllabus Coverage:&lt;/strong&gt; Comprehensive overview of physiological control mechanisms, integrating nervous and hormonal principles.
&lt;strong&gt;Format Goal:&lt;/strong&gt; Quick-reference summary; distill concepts for rapid tutor/student review.
&lt;strong&gt;Syllabus Note:&lt;/strong&gt; Covers core topics. Topics marked &lt;strong&gt;(E)&lt;/strong&gt; denote detailed focus typically reserved for Extended grades (e.g., full endocrine pathway analysis).&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;overview-coordination-principles&#34;&gt;Overview: Coordination Principles&lt;/h2&gt;
&lt;p&gt;Coordination ensures organism survival. Requires communication systems to detect stimulus and initiate response.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Detection:&lt;/strong&gt; Stimulus received by &lt;strong&gt;Receptors&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Processing:&lt;/strong&gt; Signal processed in the Central Nervous System (CNS) or Endocrine system.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Response:&lt;/strong&gt; Action initiated by &lt;strong&gt;Effectors&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;system-1-nervous-coordination-fast-response&#34;&gt;System 1: Nervous Coordination (Fast Response)&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Mechanism:&lt;/strong&gt; Electrical impulse transmission via neurons. Very rapid response time.
&lt;strong&gt;Pathway (Reflex Arc):&lt;/strong&gt; Receptor $\rightarrow$ Sensory Neuron $\rightarrow$ CNS $\rightarrow$ Motor Neuron $\rightarrow$ Effector.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
