Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Plot exact and inexact Fahrenheit-Celsius formulas. Exercise \(2.2\) introduces a simple rule to quickly compute the Celsius temperature from the Fahreheit degrees: \(C=(F-30) / 2\). Compare this curve against the exact curve \(C=(F-32) 5 / 9\) in a plot. Let \(F\) vary between \(-20\) and \(120 .\) Name of program file: f2c_shortcut_plot.py. \(\diamond\)

Short Answer

Expert verified
Plot both formulas over the range \(-20 \leq F \leq 120\) to visually compare differences.

Step by step solution

01

Understand the Formulas

Identify the two formulas needed for plotting. The exact formula is \( C = \frac{(F-32) \cdot 5}{9} \). The inexact or shortcut formula is \( C = \frac{(F-30)}{2} \).
02

Define the Range for F

Determine the range of Fahrenheit values over which we want to compare the two formulas. According to the exercise, use \( F = -20 \) to \( F = 120 \).
03

Compute Celsius for the Range

Use the defined range of \( F \) values to calculate the corresponding \( C \) values using both the exact and shortcut formulas. Create arrays or lists to store these \( C \) values.
04

Plot the Functions

Utilize a plotting library, such as Matplotlib in Python, to create a plot with two curves. Plot the exact formula \( C \) values against \( F \) and label it accordingly. Plot the shortcut formula \( C \) values against \( F \) and label it as well.
05

Customize the Plot

Add labels, a legend, and a title to the plot for clarity. Label the x-axis as 'Fahrenheit' and the y-axis as 'Celsius'. Ensure the legend distinguishes between the exact and shortcut formulas.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

Fahrenheit-Celsius Conversion
Converting temperatures between Fahrenheit and Celsius is a common task in many scientific and everyday scenarios. There are two formulas often used in Python programming when dealing with this conversion. The exact formula is more accurate and expressed as follows: \[ C = \frac{(F-32) \cdot 5}{9} \] This is derived from the way Celsius and Fahrenheit scales are defined relative to the freezing and boiling points of water.
On the other hand, a shortcut formula, which is less accurate but easier to compute mentally or use on-the-fly, is: \[ C = \frac{(F-30)}{2} \] This approximation is often used for quick estimates. In practice, the choice between these formulas depends on the level of precision needed.
Knowing how to convert between these two temperature scales is crucial for many scientific and engineering applications.
Matplotlib
Matplotlib is a powerful and versatile plotting library in Python used for visualizing data. It is widely adopted in scientific computation for creating static, interactive, and animated plots.
To plot data using Matplotlib, you need to import the library into your Python script, typically by adding `import matplotlib.pyplot as plt`.
  • Basic Plot: Use `plt.plot()` to create a line plot. This function takes in x and y data points.
  • Customization: You can customize the plot with titles, labels, legends, and colors using functions like `plt.title()`, `plt.xlabel()`, and `plt.legend()`.
  • Displaying the Plot: After configuring your plot, use `plt.show()` to display it on your screen.
Matplotlib is the go-to library for many due to its comprehensive capabilities and ease of use in creating informative visualizations.
Plotting Functions
Plotting functions is a fundamental part of visual analysis in scientific computation. In this exercise, both the exact and shortcut Celsius conversion formulas are plotted against a range of Fahrenheit values.
Here's how to approach it:
  • Define the Range: First, specify the range of Fahrenheit temperatures over which you want to compare the formulas. In our task, it ranges from \(-20\) to \(120\).
  • Compute Values: For each value in this range, compute the corresponding Celsius temperature using both formulas and store them in lists or arrays.
  • Create the Plot: Use `plt.plot()` from Matplotlib to draw each set of values as a line on the graph. Ensure each line is distinctly labeled.
  • Add Details: Features like legends, labels for both x (Fahrenheit) and y (Celsius) axes, and a descriptive title help in making the plot easy to understand.
This method not only helps in clear visual representation but also in quickly observing the differences between theoretical and approximate calculations.
Scientific Computation
Scientific computation involves using computer algorithms and numerical analysis to solve scientific problems. Python, with libraries like Matplotlib and NumPy, is a popular choice for such tasks due to its high-level syntax and extensive capabilities.
In this context, scientific computation helps in:
  • Data Analysis: We can effortlessly leverage Python's capabilities to crunch numbers, visualize data, and make informed decisions.
  • Accuracy & Precision: When converting temperature scales, understanding the precision of formulas (exact vs shortcut) is crucial in deriving accurate results.
  • Visualization: Tools like Matplotlib assist in presenting numerical data comprehensively for thorough interpretation.
Engaging in scientific computation empowers professionals and students alike to solve complex problems efficiently and effectively.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Plot a smoothed "hat" function. The "hat" function \(N(x)\) defined by (3.5) on page 109 has a discontinuity in the derivative at \(x=1\). Suppose we want to "round" this function such that it looks smooth around \(x=1\). To this end, replace the straight lines in the vicinity of \(x=1\) by a (small) cubic curve $$ y=a(x-1)^{3}+b(x-1)^{2}+c(x-1)+d $$ for \(x \in[1-\epsilon, 1+\epsilon]\), where \(a, b, c\), and \(d\) are parameters that must be adjusted in order for the cubic curve to match the value and the derivative of the function \(N(x)\). The new rounded functions has the specification $$ \tilde{N}(x)= \begin{cases}0, & x<0 \\ x, & 0 \leq x<1-\epsilon \\\ a_{1}(x-1)^{3}+b(x-1)+c(x-1)+d_{1}, & 1-\epsilon \leq x<1 \\\ a_{2}(x-1)^{3}+b(x-1)+c(x-1)+d_{2}, & 1 \leq x<1+\epsilon \\ 2-x, & 1+\epsilon \leq x<2 \\ 0, & x \geq 2\end{cases} $$ with \(a_{1}=\frac{1}{3} \epsilon^{-2}, a_{2}=-a_{1}, d_{1}=1-\epsilon+a_{1} \epsilon^{3}, d_{2}=1-\epsilon-a_{2} \epsilon^{3}\), and \(b=c=0 .\) Plot this function. (Hint: Be careful with the choice of \(x\) coordinates!) Name of program file: plot_hat.py.

Experience overflow in a function. When an object (ball, car, airplane) moves through the air, there is a very, very thin layer of air close to the object's surface where the air velocity varies dramatically \(^{18}\), from the same value as the velocity of the object at the object's surface to zero a few centimeters away. The change in velocity is quite abrupt and can be modeled by the functiion $$ v(x)=\frac{1-e^{x / \mu}}{1-e^{1 / \mu}} $$ where \(x=1\) is the object's surface, and \(x=0\) is some distance away where one cannot notice any wind velocity \(v\) because of the passing object \((v=0)\). The vind velocity coincides with the velocity of the object at \(x=1\), here set to \(v=1\). The parameter \(\mu\) is very small and related to the viscosity of air. With a small value of \(\mu\), it becomes difficult to calculate \(v(x)\) on a computer. Make a function \(v(x, m u=1 E-6\), exp=math.exp) for calculating the formula for \(v(x)\) using exp as a possibly user-given exponentional function. Let the v function return the nominator and denominator in the formula as well as the fraction (result). Call the v function for various \(\mathrm{x}\) values between 0 and 1 in a for loop, let mu be \(1 \mathrm{E}-3\), and have an inner for loop over two different exp functions: math. exp and numpy. exp. The output will demonstrate how the denominator is subject to overflow and how difficult it is to calculate this function on a computer. Also plot \(v(x)\) for \(\mu=1,0.01,0.001\) on \([0,1]\) using 10,000 points to see what the function looks like. Name of program file: boundary_layer_func1.py.

Implement Lagrange's interpolation formula. Imagine we have \(n+1\) measurements of some quantity \(y\) that depends on \(x\) : \(\left(x_{0}, y_{0}\right),\left(x_{1}, y_{1}\right), \ldots,\left(x_{n}, y_{n}\right)\). We may think of \(y\) as a function of \(x\) and ask what \(y\) is at some arbitrary point \(x\) not coinciding with any of the \(x_{0}, \ldots, x_{n}\). This problem is known as interpolation. One way to solve this problem is to fit a continuous function that goes through all the \(n+1\) points and then evaluate this function for any desired \(x\). A candidate for such a function is the polynomial of degree \(n\) that goes through all the points. This polynomial can be written $$ p_{L}(x)=\sum_{k=0}^{n} y_{k} L_{k}(x) $$ where $$ L_{k}(x)=\prod_{i=0, i \neq k}^{n} \frac{x-x_{i}}{x_{k}-x_{j}} $$ The \(\Pi\) notation corresponds to \(\sum\), but the terms are multiplied, e.g., $$ \prod_{i=0, i \neq k}^{n} x_{i}=x_{0} x_{1} \cdots x_{k-1} x_{k+1} \cdots x_{n} $$ The polynomial \(p_{L}(x)\) is known as Lagrange's interpolation formula, and the points \(\left(x_{0}, y_{0}\right), \ldots,\left(x_{n}, y_{n}\right)\) are called interpolation points. Make a function Lagrange \(\left(x\right.\), points) that evaluates \(p_{L}\) at the point x, given \(n+1\) interpolation points as a two-dimensional array points, such that points \([i, 0]\) is the \(x\) coordinate of point number \(i\) and points \([i, 1]\) is the corresponding \(y\) coordinate. To verify the program, we observe that \(L_{k}\left(x_{k}\right)=1\) and that \(L_{k}\left(x_{i}\right)=0\) for \(i \neq k\), implying that \(p_{L}\left(x_{k}\right)=y_{k}\). Write a function verify (points) that computes \(\left|p_{L}\left(x_{k}\right)-y_{k}\right|\) at all the interpolation points and checks that the value is approximately zero. Call verify with 5 equally spaced points along the curve \(y=\sin (x)\) for \(x \in[0, \pi]\). Then evaluate \(p_{L}(x)\) for an \(x\) in the middle of two interpolation points and compare the value of \(p_{L}(x)\) with the exact one: \(\sin (x)\). Name of program file: Lagrange_polynomial1.py.

Simulate by hand a vectorized expression. Suppose \(\mathrm{x}\) and \(\mathrm{t}\) are two arrays of the same length, entering a vectorized expression, $$ y=\cos (\sin (x))+\exp (1 / t) $$ If \(\mathrm{x}\) holds two elements, 0 and 2, and \(\mathrm{t}\) holds the elements 1 and 1.5, calculate by hand (using a calculator) the y array. Thereafter, write a program that mimics the series of computations you did by hand (typically a sequence of operations of the kind we listed on page 182 - use explicit loops, but at the end you can use Numerical Python functionality to check the results). Name of program file: simulate_vector_computing.py.

Plot a formula for several parameters. Make a program that reads a set of \(v_{0}\) values from the command line and plots the corresponding curves \(y(t)=v_{0} t-0.5 g t^{2}\) in the same figure (set \(g=9.81\) ). Let \(t \in\left[0,2 v_{0} / g\right]\) for each curve, which implies that you need a different vector of \(t\) coordinates for each curve. Name of program file: plot_bal12.py.

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free