a.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, sqrt(4.0).
Solution:
The function, sqrt(4.0), will evaluate to 2. The sqrt function will perform the square root of the number which is passed in the function parameter. It is a library function belonging to the header, cmath.
b.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, sin(2*PI).
Solution:
The function, sin(2*PI) , evaluates to 0. The sin function returns the final value of the sine of the angle which is passed in the parameter. It is a library function belonging to the header, cmath. It returns the sine of angle in radians.
c.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, cos(2*PI).
Solution:
The function, cos(2*PI), evaluates to 1. The cosine function returns the final value of the cosine of the angle which is passed in the parameter. It is a library function belonging to the header, cmath. It returns the cosine of angle in radians.
d.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, pow(2.0, 2).
Solution:
The function, pow(2.0, 2), will return the value 4. It computes the base number which is raised to the power of the exponent number. It is a library function belonging to the header, cmath. It follows the syntax pow(base, exponent).
e.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, log(E).
Solution:
The function, log(E), will evaluate to 1. It returns the natural logarithmic value of the argument which is passed as the parameter. The parameters can belong to any data type, like int, float, double or long-double.
f.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, exp(1.0).
Solution:
The function, exp(1.0), will return the value 2. It returns the exponential, e, which is raised to the argument that is given. It is a library function belonging to the header, cmath.
g.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, max(2, min(3, 4)).
Solution:
The function, max(2, min(3,4)), will return the value 3. The min function returns the minimum of the parameters passed to the function. Whereas, the max function returns the maximum of the parameters passed. In the given condition, first the inner bracket will evaluate, so the min(3,4) will be 3. Then, the outer bracket will evaluate, so the max(2,3) will be 3. Thereby, making the final result to be 3.
h.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, sqrt(125.0).
Solution:
The function, sqrt(125.0), will evaluate to 11. The sqrt function is the function which helps in finding the square root of the parameter which is passed to the function. It is a library function belonging to the header, cmath.
i.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, ceil(-2.5).
Solution:
The function, ceil(-2.5), will return the value -2.0. It returns the smallest possible value which has to be either greater than or equal to the passed argument. It is a library function belonging to the header, cmath.
j.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, floor(-2.5).
Solution:
The function, floor(-2.5), will return the value -3.0. It will return the largest possible value which has to be either equal to or less than the passed argument. It is a library function belonging to the header, cmath.
k.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, asin(0.5).
Solution:
The function, asin(0.5), will return the value 0.52359. It returns the inverse of the sine of the angle which is passed as the parameter. It returns the value of the angle in radians. It is a library function belonging to the header, cmath.
l.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, acos(0.5).
Solution:
The function, acos(0.5), will return the value 1.04719. It returns the inverse of the cosine of the angle which is passed as the parameter. It returns the value of the angle in radians. It is a library function belonging to the header, cmath.
m.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, atan(1.0).
Solution:
The function, atan(1.0), will return the value 0.785398. It returns the inverse of the tangent of the angle which is passed as the parameter. It returns the value of the angle in radians. It is a library function belonging to the header, cmath.
n.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, ceil(2.5).
Solution:
The function, ceil(2.5), will return the value 3.0. It returns the smallest possible value which has to be either greater than or equal to the passed argument. It is a library function belonging to the header, cmath.
o.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, floor(2.5).
Solution:
The function floor, (2.5), will return the value 2.0. It will return the largest possible value which has to be either lesser than or equal to the passed argument. It is a library function belonging to the header, cmath.
p.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, log10(10.0).
Solution:
The function, log10(10.0), will return the value of 1. It returns the common base 10 logarithmic value of the argument which is passed inside. It is a library function belonging to the header, cmath.
q.
Explanation of Solution
Given: The value of PI is 3.14159 and E has the value 2.71828.
To find:Â That what will be the result of the function, pow(2.0, 3).
Solution:
The function, pow(2.0, 3), will return the value 8.0. It computes the base number which is raised to the power of the exponent number. It is a library function belonging to the header, cmath. It follows the syntax, pow(base, exponent).
Want to see more full solutions like this?
Chapter 4 Solutions
Introduction to Programming with C++
- Question: Based on the given problem, create an algorithm and a block diagram, and write the program code: Function: y=xsinx Interval: [0,π] Requirements: Create a graph of the function. Show the coordinates (x and y). Choose your own scale and show it in the block diagram. Create a block diagram based on the algorithm. Write the program code in Python. Requirements: Each step in the block diagram must be clearly shown. The graph of the function must be drawn and saved (in PNG format). Write the code in a modular way (functions and the main part should be separate). Please explain and describe the results in detail.arrow_forward23:12 Chegg content://org.teleg + 5G 5G 80% New question A feed of 60 mol% methanol in water at 1 atm is to be separated by dislation into a liquid distilate containing 98 mol% methanol and a bottom containing 96 mol% water. Enthalpy and equilibrium data for the mixture at 1 atm are given in Table Q2 below. Ask an expert (a) Devise a procedure, using the enthalpy-concentration diagram, to determine the minimum number of equilibrium trays for the condition of total reflux and the required separation. Show individual equilibrium trays using the the lines. Comment on why the value is Independent of the food condition. Recent My stuff Mol% MeOH, Saturated vapour Table Q2 Methanol-water vapour liquid equilibrium and enthalpy data for 1 atm Enthalpy above C˚C Equilibrium dala Mol% MeOH in Saturated liquid TC kJ mol T. "Chk kot) Liquid T, "C 0.0 100.0 48.195 100.0 7.536 0.0 0.0 100.0 5.0 90.9 47,730 928 7,141 2.0 13.4 96.4 Perks 10.0 97.7 47,311 87.7 8,862 4.0 23.0 93.5 16.0 96.2 46,892 84.4…arrow_forwardYou are working with a database table that contains customer data. The table includes columns about customer location such as city, state, and country. You want to retrieve the first 3 letters of each country name. You decide to use the SUBSTR function to retrieve the first 3 letters of each country name, and use the AS command to store the result in a new column called new_country. You write the SQL query below. Add a statement to your SQL query that will retrieve the first 3 letters of each country name and store the result in a new column as new_country.arrow_forward
- We are considering the RSA encryption scheme. The involved numbers are small, so the communication is insecure. Alice's public key (n,public_key) is (247,7). A code breaker manages to factories 247 = 13 x 19 Determine Alice's secret key. To solve the problem, you need not use the extended Euclid algorithm, but you may assume that her private key is one of the following numbers 31,35,55,59,77,89.arrow_forwardConsider the following Turing Machine (TM). Does the TM halt if it begins on the empty tape? If it halts, after how many steps? Does the TM halt if it begins on a tape that contains a single letter A followed by blanks? Justify your answer.arrow_forwardPllleasassseee ssiiirrrr soolveee thissssss questionnnnnnnarrow_forward
- 4. def modify_data(x, my_list): X = X + 1 my_list.append(x) print(f"Inside the function: x = {x}, my_list = {my_list}") num = 5 numbers = [1, 2, 3] modify_data(num, numbers) print(f"Outside the function: num = {num}, my_list = {numbers}") Classe Classe that lin Thus, A pro is ref inter Ever dict The The output: Inside the function:? Outside the function:?arrow_forwardpython Tasks 5 • Task 1: Building a Library Management system. Write a Book class and a function to filter books by publication year. • Task 2: Create a Person class with name and age attributes, and calculate the average age of a list of people Task 3: Building a Movie Collection system. Each movie has a title, a genre, and a rating. Write a function to filter movies based on a minimum rating. ⚫ Task 4: Find Young Animals. Create an Animal class with name, species, and age attributes, and track the animals' ages to know which ones are still young. • Task 5(homework): In a store's inventory system, you want to apply discounts to products and filter those with prices above a specified amount. 27/04/1446arrow_forwardOf the five primary components of an information system (hardware, software, data, people, process), which do you think is the most important to the success of a business organization? Part A - Define each primary component of the information system. Part B - Include your perspective on why your selection is most important. Part C - Provide an example from your personal experience to support your answer.arrow_forward
- C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology PtrCOMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE LC++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage