EBK MATLAB: AN INTRODUCTION WITH APPLIC
EBK MATLAB: AN INTRODUCTION WITH APPLIC
6th Edition
ISBN: 8220103113663
Author: GILAT
Publisher: YUZU
bartleby

Concept explainers

bartleby

Videos

Question
Book Icon
Chapter 11, Problem 1P
To determine

(a)

The interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x; the simplest form of S1S2 using symbolic operation.

Expert Solution
Check Mark

Answer to Problem 1P

Solution:

The program is stated as follows.

Explanation of Solution

The given expressions are,

    S1=x2(4x28x3)+3(8x9)

    S2=(2x3)2+4x

Multiply the above expressions.

    S1S2=x2(4x28x3)+3(8x9)[( 2x3)2+4x]=(4x+(2x3)2)(x2(4x2+8x+3)24x+27)

Write the MATLAB code to determine the interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x. Determine the simplest form of S1S2 using symbolic operation.

MATLAB Code:

syms x

S1 = x.^2.*(4.*x.^2-8.*x-3)+3.*(8.*x-9)

S2 = (2.*x-3).^2+4.*x

a = simplify(S1.*S2)

Save the MATLAB script with the name, Chapter11_56830_11_1Pa.m in the current folder. Execute the script by typing the script name at the command window to get the code to determine the interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x. Determine the simplest form of S1S2 using symbolic operation.

Result:

EBK MATLAB: AN INTRODUCTION WITH APPLIC, Chapter 11, Problem 1P , additional homework tip  1

Conclusion:

Therefore, the required program is executed above.

To determine

(b)

The interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x; the simplest form of S1S2 using symbolic operation.

Expert Solution
Check Mark

Answer to Problem 1P

Solution:

The program is stated as follows.

Explanation of Solution

The given expressions are,

    S1=x2(4x28x3)+3(8x9)

    S2=(2x3)2+4x

Divide the above expressions.

    S1S2=x2( 4 x 2 8x3)+3( 8x9)[ ( 2x3 ) 2+4x]=x23

Write the MATLAB code to determine the interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x. Determine the simplest form of S1S2 using symbolic operation.

MATLAB Code:

syms x

S1 = x.^2.*(4.*x.^2-8.*x-3)+3.*(8.*x-9)

S2 = (2.*x-3).^2+4.*x

b = simplify(S1./S2)

Save the MATLAB script with the name, Chapter11_56830_11_1Pb.m in the current folder. Execute the script by typing the script name at the command window to get the code to determine the interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x. Determine the simplest form of S1S2 using symbolic operation.

Result:

EBK MATLAB: AN INTRODUCTION WITH APPLIC, Chapter 11, Problem 1P , additional homework tip  2

Conclusion:

Therefore, the required program is executed above.

To determine

(c)

The interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x; the simplest form of S1S2 using symbolic operation.

Expert Solution
Check Mark

Answer to Problem 1P

Solution:

The program is stated as follows.

Explanation of Solution

The given expressions are,

    S1=x2(4x28x3)+3(8x9)

    S2=(2x3)2+4x

Subtract the above expressions.

    S1S2=x2(4x28x3)+3(8x9)[( 2x3)2+4x]=4x48x37x2+32x36

Write the MATLAB code to determine the interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x. Determine the simplest form of S1S2 using symbolic operation.

MATLAB Code:

syms x

S1 = x.^2.*(4.*x.^2-8.*x-3)+3.*(8.*x-9)

S2 = (2.*x-3).^2+4.*x

b = simplify(S1-S2)

Save the MATLAB script with the name, Chapter11_56830_11_1Pc.m in the current folder. Execute the script by typing the script name at the command window to get the code to determine the interpretation of x and y as symbolic variables and create the two symbolic expressions: S1=x2(4x28x3)+3(8x9) and S2=(2x3)2+4x. Determine the simplest form of S1S2 using symbolic operation.

Result:

EBK MATLAB: AN INTRODUCTION WITH APPLIC, Chapter 11, Problem 1P , additional homework tip  3

Conclusion:

Therefore, the required program is executed above.

To determine

(d)

The numerical value of the result from part (c) for x=7 using subs command.

Expert Solution
Check Mark

Answer to Problem 1P

Solution:

The program is stated as follows.

Explanation of Solution

The given expressions are,

Subtract the above expressions.

    S1S2=x2(4x28x3)+3(8x9)[( 2x3)2+4x]=4x48x37x2+32x36

Substitute x=7 in the above equation.

    f(7)=4(7)48(7)37(7)2+32(7)36=6707

Write the MATLAB code to determine the numerical value of the result from part (c) for x=7 using subs command.

MATLAB Code:

syms x

S1 = x.^2.*(4.*x.^2-8.*x-3)+3.*(8.*x-9)

S2 = (2.*x-3).^2+4.*x

c = simplify(S1-S2);

d = subs(c,7)

Save the MATLAB script with the name, Chapter11_56830_11_1Pd.m in the current folder. Execute the script by typing the script name at the command window to get the code to determine the numerical value of the result from part (c) for x=7 using subs command.

Result:

EBK MATLAB: AN INTRODUCTION WITH APPLIC, Chapter 11, Problem 1P , additional homework tip  4

Conclusion:

Therefore, the required program is executed above.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
The following are suggested designs for group sequential studies. Using PROCSEQDESIGN, provide the following for the design O’Brien Fleming and Pocock.• The critical boundary values for each analysis of the data• The expected sample sizes at each interim analysisAssume the standardized Z score method for calculating boundaries.Investigators are evaluating the success rate of a novel drug for treating a certain type ofbacterial wound infection. Since no existing treatment exists, they have planned a one-armstudy. They wish to test whether the success rate of the drug is better than 50%, whichthey have defined as the null success rate. Preliminary testing has estimated the successrate of the drug at 55%. The investigators are eager to get the drug into production andwould like to plan for 9 interim analyses (10 analyzes in total) of the data. Assume thesignificance level is 5% and power is 90%.Besides, draw a combined boundary plot (OBF, POC, and HP)
Please provide the solution for the attached image in detailed.
20 km, because GISS Worksheet 10 Jesse runs a small business selling and delivering mealie meal to the spaza shops. He charges a fixed rate of R80, 00 for delivery and then R15, 50 for each packet of mealle meal he delivers. The table below helps him to calculate what to charge his customers. 10 20 30 40 50 Packets of mealie meal (m) Total costs in Rands 80 235 390 545 700 855 (c) 10.1. Define the following terms: 10.1.1. Independent Variables 10.1.2. Dependent Variables 10.2. 10.3. 10.4. 10.5. Determine the independent and dependent variables. Are the variables in this scenario discrete or continuous values? Explain What shape do you expect the graph to be? Why? Draw a graph on the graph provided to represent the information in the table above. TOTAL COST OF PACKETS OF MEALIE MEAL 900 800 700 600 COST (R) 500 400 300 200 100 0 10 20 30 40 60 NUMBER OF PACKETS OF MEALIE MEAL

Chapter 11 Solutions

EBK MATLAB: AN INTRODUCTION WITH APPLIC

Knowledge Booster
Background pattern image
Electrical Engineering
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, electrical-engineering and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
MATLAB: An Introduction with Applications
Statistics
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc
Text book image
Probability and Statistics for Engineering and th...
Statistics
ISBN:9781305251809
Author:Jay L. Devore
Publisher:Cengage Learning
Text book image
Statistics for The Behavioral Sciences (MindTap C...
Statistics
ISBN:9781305504912
Author:Frederick J Gravetter, Larry B. Wallnau
Publisher:Cengage Learning
Text book image
Elementary Statistics: Picturing the World (7th E...
Statistics
ISBN:9780134683416
Author:Ron Larson, Betsy Farber
Publisher:PEARSON
Text book image
The Basic Practice of Statistics
Statistics
ISBN:9781319042578
Author:David S. Moore, William I. Notz, Michael A. Fligner
Publisher:W. H. Freeman
Text book image
Introduction to the Practice of Statistics
Statistics
ISBN:9781319013387
Author:David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:W. H. Freeman
Propositional Logic, Propositional Variables & Compound Propositions; Author: Neso Academy;https://www.youtube.com/watch?v=Ib5njCwNMdk;License: Standard YouTube License, CC-BY
Propositional Logic - Discrete math; Author: Charles Edeki - Math Computer Science Programming;https://www.youtube.com/watch?v=rL_8y2v1Guw;License: Standard YouTube License, CC-BY
DM-12-Propositional Logic-Basics; Author: GATEBOOK VIDEO LECTURES;https://www.youtube.com/watch?v=pzUBrJLIESU;License: Standard Youtube License
Lecture 1 - Propositional Logic; Author: nptelhrd;https://www.youtube.com/watch?v=xlUFkMKSB3Y;License: Standard YouTube License, CC-BY
MFCS unit-1 || Part:1 || JNTU || Well formed formula || propositional calculus || truth tables; Author: Learn with Smily;https://www.youtube.com/watch?v=XV15Q4mCcHc;License: Standard YouTube License, CC-BY