This is work in progress: Finished until p.34 of 162 pages for chapter “Function”.
This Quarto book collects my personal notes, trials and exercises for the first chapter “Function” of Abramson, J. (2021). Precalculus 2e (2nd ed.). OpenStax College.
Because of the huge amount of the material in the book I am planning a separate Quarto book for each of the 12 chapters of Precalcuclus. (So the plan: I am not sure if I will ever finish this monster project 😜)
Structure of the Quarto book
Subjective representation of content and Zotero links
I will go through the text and note the most important content for me to learn. This results in a subjective collections of text pieces: Conditional on my previous knowledge (at that time) I will include only content that are new for me or when I think it is an important assertion to remember. Most of the time I am citing the original text with a quoted text format. This text passage will include two linked references to the source file stored in the appropriate group library of Zotero:
The short book reference is a link to the book file in the Zotero library.
The (pdf) link references the exact position of the stored PDF in the Zotero library.
Example 1 : Zotero Links
“A common method of representing functions is in the form of a table. The table rows or columns display the corresponding input and output values.” (Abramson, 2021, p. 22) (pdf)
The above feature works perfectly for my private Zotero account. Presently (2023-10-19), I am also interested to see if this feature with my personal citations also works for other people. If you want to see if and how this it works, you are welcome to apply for a free membership for the Zotero Quarto-Book group by sending me a note via the GitHub issue page of the Quarto book.
Glossary links
Sometimes I collect definitions for my personal glossary. This is a YAML file for the {glossary} package that I am using for all my annotations in my personal Quarto books. The glossary entry is visible through two blue double underlines. If you hover with the mouse over the entry the content of the glossary entry will appear after a short delay.
Example 2 : Glossary Link
Polynomials appear in many areas of mathematics and science. (quoted from Wikipedia).
Numbering and Internal Links
As my text is not a reproduction but just an excerpt of the source material, my numbering does not conform to the numbers used in the original book. I could have numbered manually but then it would be more difficult to set internal links. I will therefore use the automatic numbering system provided by Quarto but I will add the original number and page inside square brackets.
Example 3 : My Numbering System for Internal Links [Example 7, p.15]
Given the function\(h(p) = p^2 + 2p\), evaluate \(h(4)\)$
My internal links refer to my internal numbering. For instance: You have to use the link to Example 3 to get the reference for the original source (in square brackets at the end of the title). It is not necessary to click the link; if you hover the mouse over the link you will see the complete title including the reference to the source. Try it!
R Code
Sometimes I use R Code for calculation or visualization tasks.
R is a free software environment for statistical computing and graphics. It compiles and runs on a wide variety of UNIX platforms, Windows and MacOS. To download R, please choose your preferred CRAN mirror. (The R Project for Statistical Computing)
R Code 1 : For a better understanding I replicated Figure 6, p.16.
Listing 1: Plot function \(h(p) = p^2 + 2p\)
ggplot2::ggplot()+ggplot2::scale_x_continuous(limits =c(-5, 5), breaks =seq(-5, 5, 1))+ggplot2::geom_function(fun =function(x)x^2+(2*x))+ggplot2::geom_hline(yintercept =0, linetype ="solid")+ggplot2::geom_hline(yintercept =3, linetype ="solid", color ="darkgreen", linewidth =1)+ggplot2::geom_segment(ggplot2::aes(x =-3, y =0, xend =-3, yend =+3, color ="orange"), show.legend =FALSE, linewidth =1)+ggplot2::geom_segment(ggplot2::aes(x =1, y =0, xend =1, yend =+3, color ="orange"), show.legend =FALSE, linewidth =1)+ggplot2::geom_point(ggplot2::aes(x =-3, y =+3, fill ="blue"), size =2, show.legend =FALSE)+ggplot2::geom_point(ggplot2::aes(x =1, y =+3, fill ="blue"), size =2, show.legend =FALSE)+ggplot2::theme_bw()+ggplot2::labs( title =expression(paste("Function h(p) = ", p^2+2*p)), x ="p", y ="h(p)")
Compare my graph by hovering with the mouse over the link to the original Graph 1.
Exercises
Solving the exercises I use the following procedure:
Procedure 1 : Solving Exercises
As my main goal is learning I am trying to solve only the odd numbered exercises where an official solution is available.
At first I write my own solution in the appropriate exercise callout and compare it with the official solution.
If it is correct: Fine! If not, I am trying to understand why I failed. If I am stuck and I can’t understand the solution I am looking for other resources.
If I succeed I will substitute in the exercise callout my wrong solution with the correct one.
Additionally I will add a separate “Watch Out!” callout where I present my wrong attempt with an explication why I failed. I am not sure if this part is helpful for other people but to express explicitly what went wrong turned out of immense value for my personal learning.
Used Resources
To support my learning and especially to consult if I could not find a solution I used the following resources:
Additional resources I have used for this Quarto book
Khan Academy: Trying to solve the exercises I noticed big knowledge gaps in my Math education, especially with factoring and transforming of quadratic equations and functions. I interrupted my reading and practicing of the Precalculus book and worked through Unit 13: Quadratics: Multiplying & factoring and the first two lessons of Unit 14: Quadratic functions & equations from the Algebra 1 course. If I will notice during my reading of Precalculus that I need to visit other lessons / units as well, I will report it here.
math.stackexchange: Sometimes people asked exactly the exercise questions on math.stackexchange, where I could find helpful answers.
MathePower: There are free online math calculator on the internet. MathePower is one of it. It has the nice feature that you not get the solutions but also explications for every step of the calculation.
WolframAlpha: WolframAlpha is a specialized online service that not only works like a semantic search engine but uses Wolfram Language a proprietary programming language for symbolic computation and functional programming. In the free version it does not have step-by-step explications but is plotting the graph and displays not only the solution but also alternative forms of the equation formula.
The Glaser Tutoring Company: I counted 643 videos only for Math(!) and – as far as I have seen – the majority of them uses the exercises of the Precalculus book. The videos are pedagogically well done and explain every detail of the exercise.
---engine: knitr---# Preface {.unnumbered}::: {.callout-note style="color: blue;"}#### This is work in progress: Finished until p.34 of 162 pages for chapter "Function".:::This Quarto book collects my personal notes, trials and exercises for the first chapter "Function" of Abramson, J. (2021). [Precalculus 2e](https://openstax.org/details/books/precalculus-2e) (2nd ed.). OpenStax College. Because of the huge amount of the material in the book I am planning a separate Quarto book for each of the 12 chapters of Precalcuclus. (So the plan: I am not sure if I will ever finish this monster project 😜)## Structure of the Quarto book {.unnumbered}### Subjective representation of content and Zotero links {.unnumbered}I will go through the text and note the most important content for me to learn. This results in a subjective collections of text pieces: Conditional on my previous knowledge (at that time) I will include only content that are new for me or when I think it is an important assertion to remember. Most of the time I am citing the original text with a quoted text format. This text passage will include two linked references to the source file stored in the appropriate group library of [Zotero](https://www.zotero.org/): 1. The short book reference is a link to the book file in the Zotero library.2. The (pdf) link references the exact position of the stored PDF in the Zotero library.:::::{.my-example}:::{.my-example-header}:::::: {#exm-zotero-link}: Zotero Links:::::::::::::{.my-example-container}> “A common method of representing functions is in the form of a table. The table rows or columns display the corresponding input and output values.” ([Abramson, 2021, p. 22](zotero://select/library/items/U57DQZPG)) ([pdf](zotero://open-pdf/library/items/68C8JXSW?page=22&annotation=NBNN3GKY)):::::::::The above feature works perfectly for my private Zotero account. Presently (2023-10-19), I am also interested to see if this feature with my personal citations also works for other people. If you want to see if and how this it works, you are welcome to apply for a free membership for the [Zotero Quarto-Book group](https://www.zotero.org/groups/5243560/quarto-books) by sending me a note via the [GitHub issue page of the Quarto book](https://github.com/petzi53/precalculus-01-function/issues). ### Glossary links {.unnumbered}Sometimes I collect definitions for my personal glossary. This is a YAML file for the {[glossary](https://debruine.github.io/glossary/)} package that I am using for all my annotations in my personal Quarto books. The glossary entry is visible through two blue double underlines. If you hover with the mouse over the entry the content of the glossary entry will appear after a short delay.:::::{.my-example}:::{.my-example-header}:::::: {#exm-glossary-link}: Glossary Link:::::::::::::{.my-example-container}`r glossary("Polynomials")` appear in many areas of mathematics and science. (quoted from [Wikipedia](https://en.wikipedia.org/w/index.php?title=Polynomial&oldid=1180672916)).:::::::::### Numbering and Internal Links {.unnumbered}As my text is not a reproduction but just an excerpt of the source material, my numbering does not conform to the numbers used in the original book. I could have numbered manually but then it would be more difficult to set internal links. I will therefore use the automatic numbering system provided by Quarto but I will add the original number and page inside square brackets. :::::{.my-example}:::{.my-example-header}:::::: {#exm-numbering}: My Numbering System for Internal Links [Example 7, p.15]:::::::::::::{.my-example-container}**Given the function** $h(p) = p^2 + 2p$, evaluate $h(4)$\$ $$\begin{align*}h(4) = 4^2 + 2 \times 4 \\h(4) = 24\end{align*}$$::::::::::::::{.my-example}:::{.my-example-header}:::::: {#exm-internal-link}: Internal Link:::::::::::::{.my-example-container}My internal links refer to my internal numbering. For instance: You have to use the link to @exm-numbering to get the reference for the original source (in square brackets at the end of the title). It is not necessary to click the link; if you hover the mouse over the link you will see the complete title including the reference to the source. Try it!:::::::::### R Code {.unnumbered}Sometimes I use R Code for calculation or visualization tasks. > R is a free software environment for statistical computing and graphics. It compiles and runs on a wide variety of UNIX platforms, Windows and MacOS. To download R, please choose your preferred CRAN mirror. ([The R Project for Statistical Computing](https://www.r-project.org/)):::::{.r-code}:::{.r-code-header}:::::: {#cnj-code-example}: For a better understanding I replicated [Figure6](https://openstax.org/books/precalculus-2e/pages/1-1-functions-and-function-notation#Figure_01_01_006), p.16.:::::::::::::{.r-code-container}![$h(p) = p^2 + 2p$ -- This is the original [Figure 6, p.16]](img/01-fig-06.png){#fig-01-06 fig-alt="Showing an open upwards parabola" fig-align="center" width="50%"}```{r}#| label: fig-graph-example#| fig-cap: "Graph for the function $h(p) = p^2 + 2p$ showing the solution for $h(p) = 3$"#| attr-source: '#lst-fig-graph-example lst-cap="Plot function $h(p) = p^2 + 2p$"'#| fig.align: center#| fig-width: 4#| fig-height: 4ggplot2::ggplot() + ggplot2::scale_x_continuous(limits =c(-5, 5), breaks =seq(-5, 5, 1)) + ggplot2::geom_function(fun =function(x) x^2+ (2* x)) + ggplot2::geom_hline(yintercept =0, linetype ="solid") + ggplot2::geom_hline(yintercept =3, linetype ="solid", color ="darkgreen", linewidth =1) + ggplot2::geom_segment(ggplot2::aes(x =-3, y =0, xend =-3, yend =+3, color ="orange"), show.legend =FALSE, linewidth =1) + ggplot2::geom_segment(ggplot2::aes(x =1, y =0, xend =1, yend =+3, color ="orange"), show.legend =FALSE, linewidth =1) + ggplot2::geom_point(ggplot2::aes(x =-3, y =+3, fill ="blue"), size =2, show.legend =FALSE) + ggplot2::geom_point(ggplot2::aes(x =1, y =+3, fill ="blue"), size =2, show.legend =FALSE) + ggplot2::theme_bw() + ggplot2::labs(title =expression(paste("Function h(p) = ", p^2+2* p)),x ="p",y ="h(p)" )```Compare my graph by hovering with the mouse over the link to the original @fig-01-06.:::::::::### Exercises {.unnumbered}Solving the exercises I use the following procedure::::::{.my-procedure}:::{.my-procedure-header}:::::: {#prp-exercises}: Solving Exercises:::::::::::::{.my-procedure-container}1. As my main goal is learning I am trying to solve only the odd numbered exercises where an official solution is available. 2. At first I write my own solution in the appropriate exercise callout and compare it with the official solution. 3. If it is correct: Fine! If not, I am trying to understand why I failed. If I am stuck and I can't understand the solution I am looking for <a href="#used-resources">other resources</a>.4. If I succeed I will substitute in the exercise callout my wrong solution with the correct one.5. Additionally I will add a separate "Watch Out!" callout where I present my wrong attempt with an explication why I failed. I am not sure if this part is helpful for other people but to express explicitly what went wrong turned out of immense value for my personal learning. :::::::::<h3 id="used-resources">Used Resources</h3>To support my learning and especially to consult if I could not find a solution I used the following resources::::::{.my-resource}:::{.my-resource-header}Additional resources I have used for this Quarto book :::::::{.my-resource-container}- [Khan Academy](https://en.khanacademy.org/): Trying to solve the exercises I noticed big knowledge gaps in my Math education, especially with factoring and transforming of quadratic equations and functions. I interrupted my reading and practicing of the Precalculus book and worked through [Unit 13: Quadratics: Multiplying & factoring](https://www.khanacademy.org/math/algebra/x2f8bb11595b61c86:quadratics-multiplying-factoring) and the first two lessons of [Unit 14: Quadratic functions & equations](https://www.khanacademy.org/math/algebra/x2f8bb11595b61c86:quadratic-functions-equations) from the Algebra 1 course. If I will notice during my reading of Precalculus that I need to visit other lessons / units as well, I will report it here. - [math.stackexchange](https://math.stackexchange.com): Sometimes people asked exactly the exercise questions on math.stackexchange, where I could find helpful answers.- [MathePower](https://www.mathepower.com/en/index.php): There are free online math calculator on the internet. MathePower is one of it. It has the nice feature that you not get the solutions but also explications for every step of the calculation.- [WolframAlpha](https://www.wolframalpha.com/): WolframAlpha is a specialized online service that not only works like a semantic search engine but uses [Wolfram Language](https://en.wikipedia.org/wiki/Wolfram_Language) a proprietary programming language for symbolic computation and functional programming. In the free version it does not have step-by-step explications but is plotting the graph and displays not only the solution but also alternative forms of the equation formula.- [The Glaser Tutoring Company](https://www.youtube.com/@GlaserTutoring/about): I counted [643 videos only for Math(!)](https://www.youtube.com/@GlaserTutoring/playlists) and -- as far as I have seen -- the majority of them uses the exercises of the Precalculus book. The videos are pedagogically well done and explain every detail of the exercise.:::::::::