Write out a real-world example of a use case in which you could design a computational artifact to help maximize benefits to society, all while keeping the negative side effects to a minimum. Explain your answer in 3-5 sentences

Answers

Answer 1

One practical illustration of where a computational artifact may be composed to simultaneously increase social benefits and restrict adverse outcomes is in the healthcare economy.

How to explain the information

For instance, a health surveillance instrument could be designed with cutting-edge technology, allowing it to categorize patient metrics such as heart rate, medicine interaction, and supplementary medical information in real time.

This contrivance, incorporating machine learning techniques, would not only offer tailored directives to patients but also medical personnel.

Learn more about artifact on

https://brainly.com/question/988818

#SPJ1


Related Questions

Renata needs a new computer and decides to use multiple sources to gather information
before she makes a purchase decision. Which sources might provide her with valuable
information? How might some sources deliberately provide misleading information?
Explain your reasoning.

Answers

One of the sources that will help Renata to make good purchase decision is by doing an online survey of reviews form varous online stores. One possible source that may be misleading is blogs. This is because, sometimes bloggers and vloggers are paid to promote certain items.

What is a purchase decision?

The mental process that leads a customer from detecting a need to generating possibilities and selecting a specific product and brand is referred to as a purchase decision. Some expenditures are simple, such as buying toothpaste, while others are big, such as purchasing a home.

The three essential steps of internet purchasing behavior are research, comparison, and purchase.

Learn more about purchase decision:
https://brainly.com/question/31862683
#SPJ1

characteristics of first generation computers​

Answers

* Main Electron a component- vacuum tube.

* Main memory- Magnetic drums and magnetic tapes.

* Programming language- Machine language.

* Power- Consume a lot of electricity and generate a lot of heat.

* were expensive to operate

What kind of material is used for DRAM (dynamic random-access memory)?

Answers

The kind of material that is used for DRAM (dynamic random-access memory) is metal-oxide-semiconductor.

What is DRAM?

DRAM was invented in 1968. It is a type of RAM used in modern computers and laptops. It is a type of random access memory. Its name is dynamic random access memory.

Metal-oxide-semiconductor is used in making the transistors and capacitors of the DRAM, which are used to store the data. They hold a bit of the data in these capacitors and transistors.

Thus, the material that is used is metal-oxide-semiconductor to make DRAM (dynamic random-access memory).

To learn more about DRAM, refer to the link:

https://brainly.com/question/20216206

#SPJ1

C++ program

Sort only the even elements of an array of integers in ascending order.

Answers

Answer: Here is one way you could write a C++ program to sort only the even elements of an array of integers in ascending order:

Explanation: Copy this Code

#include <iostream>

#include <algorithm>

using namespace std;

// Function to sort only the even elements of an array in ascending order

void sortEvenElements(int arr[], int n)

{

   // create an auxiliary array to store only the even elements

   int aux[n];

   int j = 0;

   // copy only the even elements from the original array to the auxiliary array

   for (int i = 0; i < n; i++)

       if (arr[i] % 2 == 0)

           aux[j++] = arr[i];

   // sort the auxiliary array using the STL sort function

   sort(aux, aux + j);

   // copy the sorted even elements back to the original array

   j = 0;

   for (int i = 0; i < n; i++)

       if (arr[i] % 2 == 0)

           arr[i] = aux[j++];

}

int main()

{

   // test the sortEvenElements function

   int arr[] = {5, 3, 2, 8, 1, 4};

   int n = sizeof(arr) / sizeof(arr[0]);

   sortEvenElements(arr, n);

   // print the sorted array

   for (int i = 0; i < n; i++)

       cout << arr[i] << " ";

   return 0;

}

Give your coworker directions for creating a graph.

Answers

To create a graph in excel, you must follow the steps below:

Choose the information for which you want to build a chart.Select INSERT > RECOMMENDED CHARTS from the menu.Scroll through the list of charts that Excel proposes for your data on the Recommended Charts page, then select any chart to see how your data will look.If you don't find a chart you like, click All Charts to see all of the chart types available.When you've found the chart you want, click OK.To add chart components such as axis titles or data labels, adjust the aesthetic of your chart, or change the data presented in the chart, use the Chart Elements, Chart Styles, and Chart Filters buttons located in the upper-right corner of the chart.Select anywhere in the chart to add the CHART TOOLS to the ribbon, then click the DESIGN and FORMAT tabs to access more design and formatting tools.What is a graph or chart?

In mathematics, a graph is defined as a graphical representation or diagram that organizes facts or values.

The graph's points frequently reflect the relationship between two or more objects.

Learn more about graphs:
https://brainly.com/question/17267403
#SPJ1

David is taking a test. To answer a question, he first covers up the answer choices. Next, he tries to answer the question. Then, he uncovers the answer choices, reads them, and excludes the answer choices that are clearly wrong. Finally, he selects the best answer. The strategy that David is using is best applied to which type of question? true/false short answer / essay matching multiple choice

Answers

Answer:

Multiple choice

Explanation:

I got 100 on the assignment

Answer:

D

Explanation:

In which type of referencing do you get a warning message? Explain why.​

Answers

Answer:

These are the problems that are not severe enough to prevent processing. They mainly complain about the previous version of your document. In the case of command invalid, the latex gives a warning and henceforth it needs to be fixed.

Explanation:

There are some bugs in which they are not that severe that make the system not process.. but they are still mistakes in which might affect how the program run those parts.. like in JavaScript in the program i use, the minor bugs are like symbolized as yellow triangle and they are normally like signalizing a grammar error in the code and the app still runs but just that part of the code is invalid or reads wrong.. while big errors like codes that dont make sense, those make a red squareish that as soon as you try to run the program the debug console states in all red "Line 50(or whatever line) SyntaxError" or other things

Create JUnit Tests Create JUnit Tests to test the budgetBalance methods in both the AllInclusive and ALaCarte classes. Test each method from polymorphically via an object variable that is of type Vacation. Review the JUnit API and documentation as since the budgetBalance method returns a double, you will need to use one of the assertEquals methods that handles doubles since doubles values may not be exact due to rounding errors.

Answers

Answer:

Here is the code.

Explanation:

Create JUnit Tests Create JUnit Tests to test the budgetBalance methods in both the AllInclusive and
Create JUnit Tests Create JUnit Tests to test the budgetBalance methods in both the AllInclusive and

If cell A2 contains "Today is Monday," the result of the function =LEN(A2) would be __________. Fill in the blank space.

Excel Quiz.​

Answers

If cell A2 includes the phrase "Today is Monday," the result of the function =LEN(A2) would be 15, which is the number of characters in the cell.

How can I figure out how many characters there are in Excel?

Type =LEN(cell) in the formula bar and hit Enter to invoke the function. In many instances, cell refers to the cell that you want to count, like B1. Enter the formula, then copy and paste it into further cells to count the characters in each cell.

What does Len have to offer?

A number is returned by LEN after it counts the characters in the text, including spaces and punctuation. LEN is set to zero if text is an empty string ("") or a reference to an empty cell.

To know more about cell visit:-

https://brainly.com/question/8029562

#SPJ1

Files can be created and saved to Folders or to external device like USB, Windows Operating System provides which folder to SAVE application files?

Answers

In Windows Operating System, application files are typically saved in the “Program Files” folder.These folders are usually located in the C:\ drive of the computer's hard disk.Therefore, the correct option is A.

What are Program files?

The “Program Files” folder is used to store 64-bit applications, while the “Program Files (x86)” folder is used to store 32-bit applications. The operating system automatically directs applications to save their files in the appropriate folder based on whether they are 32-bit or 64-bit.

It is important to note that saving files in the “Program Files” or “Program Files (x86)” folder typically requires administrative privileges. If you do not have administrative privileges on your computer, you may need to save application files to a different location, such as your user folder or a separate folder on the hard drive.Therefore, the correct option is A.

Learn more about Program files, here:

https://brainly.com/question/30430795

#SPJ1

The question is incomplete, but most probably the complete question is,

Files can be created and saved to Folders or to external device like USB, Windows Operating System provides which folder to SAVE application files?

A. Program files

B. Insert files

C. Folder

D. Action files

How is a struck-by rolling object defined?

Answers

Sorry I don’t know I just needed points to ask my question

Answer:

Struck by rolling object is commonly defined as Struck-By Rolling Object Hazard because it was caused by rolling objects or any objects that moves in circular motion that could cause an injury or accident.

Explanation:

You would like to search for information about how search engines use Web crawlers. Your keywords should
be "should," "how," and "crawlers."
O True
O False

Answers

True because they are important
true, because you are asking HOW engines might or SHOULD use web CRAWLERS

is the logical topology is the arrangement of cables net work devices and end systems

Answers

The logical topology of a network is the path through which data is transferred.

What is logical topology?A logical topology is a networking concept that defines the architecture of a network's communication mechanism for all nodes. The logical topology of a network can be dynamically maintained and reconfigured using network equipment such as routers and switches.A logical topology describes how devices appear to the user to be connected. A physical topology describes how they are physically connected with wires and cables.Broadcast (also known as bus) and sequential are the two logical topologies (also known as ring). Every message sent over the network is received by all devices in a broadcast topology.The logical topology is used to create a path for signals to travel through the network. It employs network protocols to define the path for packet transfer. The most typical example of network protocol is ethernet protocol.

To learn more about topology refer to :

https://brainly.com/question/14879489

#SPJ1

The first known permanent photograph was called "View from the Window at Le Gras." True False

Answers

Answer:

TRUE

Explanation:

I did the K12 test :)Hope this helps

Answer:

true

Explanation:

PLEASEEE HELP
Where could page numbers appear in a properly formatted business document?
A. In document titles
B. In headers or footers
c. In headers only
D. In footers only​

Answers

In the headers or footers

Answer: b

Explanation:

How many outcomes are possible in this control structure?
forever
if
is A button pressed then
set background image to
else
set background image to

Answers

Answer:

In the given control structure, there are two possible outcomes:

1) If the condition "Is A button pressed?" evaluates to true, then the background image will be set to a specific value.

2) If the condition "Is A button pressed?" evaluates to false, then the background image will be set to another value.

Therefore, there are two possible outcomes in this control structure.

Hope this helps!

Just press a to set up your background

How do you remove the account. I made it w/Googol

Answers

It should be noted that to eradicate a account, follow these steps:

How to delete the account

Begin by accessing the Account page . Subsequently, log into the respective account you would like to remove. Locate and click on "Data & Personalization" tab adjacent to its left-hand menu.

Afterward, drag your attention to the section titled: "Download, delete, or make a plan for your data," from where you can select "Delete a service or your account". Carry out procedures instructed on that landed page to verify the account's removal. Be it known deleting an account implies permanent eradication of every information.

Learn more about account on

https://brainly.com/question/26181559

#SPJ1

Is it possible to have write access to a file in Windows without having read access to that same file?
No
Maybe
Yes

Answers

Maybe is it possible to have write access to a file in Windows without having read access to that same file. Thus, option B is correct.

The ability to control who can access and modify files is the basis of the theory behind this question. The chmod command, as well as user and group accounts, are used to implement this crucial aspect of computer security.

To examine the permissions of the /shared_data directory, Bob can use the command "ls -l." He will be able to check to see if Alice has granted him access to the accounting.txt file by using this method.

Thus, option B is correct.

Learn more about computer on:

https://brainly.com/question/31727140

#SPJ1

problem description IT​

Answers

In IT, a problem description refers to a clear and concise explanation of an issue or challenge that needs to be resolved within a technology system or application.

How is this so?

It involves providing relevant details about the symptoms, impact, and context of the problem.

A well-written problem description outlines the specific errors, failures, or undesired behavior observed and provides enough information for IT professionals to analyze and identify potential solutions.

A comprehensive problem description is crucial for effective troubleshooting and problem-solving in the IT field.

Learn more about Problem Description at:

https://brainly.com/question/25923602

#SPJ1

What word does
this pattern spell?
d.

What word doesthis pattern spell?d.

Answers

Answer:

BEG

Explanation:

In traditional music theory, pitch classes are typically represented by first seven Latin alphabets (A,B,C,D,E ,F and G) . And in the below music notes attachment we can understand that the answer is option (a) BEG

What word doesthis pattern spell?d.

Which categories format cells? Check all that apply. currency percentage data month date text

Answers

Answer:

currency

percentage

date

text

Explanation:

The category of format cells are currency, percentage, data, month, date, and text. The all options are correct.

What is Format Cells dialog box?

In the Format Cells dialog box, you can configure the formatting options for your report objects.

For a row or column header and the values, you can format the number, font, alignment, border, and pattern.

The format cells command in Excel is used to change the formatting of cell numbers without changing the actual number.

We can change the number, alignment, font style, border style, fill options, and protection using the format cells. We can get to this option by right-clicking the mouse.

Currency, percentage, data, month, date, and text are examples of format cells.

Thus, all options are correct.

For more details regarding format cell, visit:

https://brainly.com/question/24139670

#SPJ2

Supose that there are exactly 733 monks in the world.
Which one of the following statements is true about the monks?

Answers

A statement which is true about the monks is that: There is a day of the year that is the birthday of at least 3 monks.

What is a conditional statement?

A conditional statement can be defined as a statement that can be written to contain both a hypothesis and conclusion. Thus, it typically has the form "if P then Q."

Where:

P and Q represent sentences.

What is a converse statement?

A converse statement can be defined as a type of statement that is obtained by switching (reversing) the hypothesis and conclusion of a conditional statement. This ultimately implies that, the converse of a statement is obtained by switching (reversing) the hypothesis and  conclusion of a conditional statement.

In this context, we can reasonably infer and logically deduce that a statement which is true about the monks is that there is a day of the year that is the birthday of at least 3 monks because a year only has 365 days.

Read more on conditional statement here: brainly.com/question/16951916

#SPJ1

Complete Question:

Suppose that there are exactly 733 monks in the world.

Which one of the following statements is true about the monks?

Every day of the year, it's a monk's birthday.

There is a day of the year that is the birthday of exactly 3 monks

There is a monk who celebrates his birthday on a Tuesday

There is a day of the year that is the birthday of at least 3 monks

Some monk turns years at the weekend

None of the above.​

Overlay analysis is ____________, taking in data from two or more layers to create a single output layer.

Answers

Explanation:

Overlay analysis is an approach, taking in data from two or more layers to create a single output layer.

For example, if we have a layer of land use and a layer of soil fertility, we can derive from the two layers the percentage of agricultural land developed over fertile soil.

Why were low quality video so often use when Internet connection we’re poorer than they are today

Answers

What do you mean? I’m confused with the question, it doesn’t make sense:)

Answer:

The answer is C. "High-quality videos took too long to transfer" in Fundamentals of Digital Media.

SOMEONE PLEASE HELP

I need to draw a stickfigure riding a skateboard in python

Answers

Answer:

Sure, I can provide some Python code that uses the `turtle` module to draw a stick figure riding a skateboard. Please note that this will be a very simplistic drawing.

```

import turtle

# Set up the screen

win = turtle.Screen()

win.bgcolor("white")

# Create a turtle to draw the skateboard

skateboard = turtle.Turtle()

skateboard.color("black")

# Draw the skateboard

skateboard.penup()

skateboard.goto(-50, -30)

skateboard.pendown()

skateboard.forward(100)

skateboard.right(90)

skateboard.forward(10)

skateboard.right(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(60)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

# Create a turtle to draw the stick figure

stickfigure = turtle.Turtle()

stickfigure.color("black")

# Draw the stick figure

stickfigure.penup()

stickfigure.goto(0, -20)

stickfigure.pendown()

stickfigure.circle(20)  # Head

stickfigure.right(90)

stickfigure.forward(60)  # Body

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(45)

stickfigure.forward(30)  # Left arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(90)

stickfigure.forward(30)  # Right arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.right(45)

stickfigure.forward(30)

stickfigure.right(30)

stickfigure.forward(30)  # Left leg

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(60)

stickfigure.forward(30)  # Right leg

turtle.done()

```

This Python script first draws a rough representation of a skateboard, then a stick figure standing on it. The stick figure consists of a circular head, a straight body, two arms, and two legs. Please note that this is a very simple representation, and the proportions might not be perfect. The `turtle` module allows for much more complex and proportional drawings if you need them.

Answer:

Answer:

Sure, I can provide some Python code that uses the `turtle` module to draw a stick figure riding a skateboard. Please note that this will be a very simplistic drawing.

```

import turtle

# Set up the screen

win = turtle.Screen()

win.bgcolor("white")

# Create a turtle to draw the skateboard

skateboard = turtle.Turtle()

skateboard.color("black")

# Draw the skateboard

skateboard.penup()

skateboard.goto(-50, -30)

skateboard.pendown()

skateboard.forward(100)

skateboard.right(90)

skateboard.forward(10)

skateboard.right(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(60)

skateboard.left(90)

skateboard.forward(20)

skateboard.left(90)

skateboard.forward(20)

# Create a turtle to draw the stick figure

stickfigure = turtle.Turtle()

stickfigure.color("black")

# Draw the stick figure

stickfigure.penup()

stickfigure.goto(0, -20)

stickfigure.pendown()

stickfigure.circle(20)  # Head

stickfigure.right(90)

stickfigure.forward(60)  # Body

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(45)

stickfigure.forward(30)  # Left arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(90)

stickfigure.forward(30)  # Right arm

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.right(45)

stickfigure.forward(30)

stickfigure.right(30)

stickfigure.forward(30)  # Left leg

stickfigure.right(180)

stickfigure.forward(30)

stickfigure.left(60)

stickfigure.forward(30)  # Right leg

Explanation:

filetype:pdf determine which of the properties listed in problem 1.27 hold and which do not hold for each of the following discrete-time systems

Answers

Anything that receives a discrete-time signal as input and outputs a discrete-time signal is referred to as a discrete-time system.

What distinguishes a continuous system from a discrete system?

Every point in time has a value for a continuous-time signal across some (potentially infinite) interval. Only discrete points in time have values in a discrete time signal.

Discrete-time: What does that mean?

Terminology for Time and Frequency A discrete-time signal is a series of values that represent specific points in time. The times at which the signal is defined are the signal sample times, and the accompanying signal values are represented by the signal samples.

To know more about signal visit:-

https://brainly.com/question/20506284

#SPJ4

Which tab should you use to change the text font color in your presentation?

Answers

Answer:

The Home Tab

Explanation:

It is possible to create a sharepoint site with powershell

It is possible to create a sharepoint site with powershell

Answers

By leveraging SharePoint cmdlets and scripting the site creation process, it is feasible to construct a SharePoint site using PowerShell.

Why does SharePoint use PowerShell?

Obtains information about the site designs that are present in the SharePoint tenant. To get a certain site design, you can provide its ID. Details about all site designs are supplied if there are no parameters listed.

Can SharePoint be automated?

Create workflows for lists and libraries in Microsoft Lists, SharePoint, and OneDrive with Power Automate for work or study. With the use of Power Automate, you can automate routine processes between SharePoint, other Microsoft 365 services, and other services.

To know more about powershell visit:

https://brainly.com/question/31273442

#SPJ1

upward communication flows from_ to_ a) superior to superior b)superior to subordinate c)subordinate to superior d)​

Answers

The term upward communication flows from option c) subordinate to superior.

What is the flow of upward communication?

Upward Communication is known to be the act oof information transmitting or flowing from the smallest  levels of a hierarchy to the highest levels

Note that This type of communication is said to be more popular in firms as traditional forms of communication. According to Ricky W. Griffin, “Upward communication is made up of messages that is given  from subordinates to superior.”

Upward Communication is the act of information passing from the lower levels that pertains to a hierarchy to that of the  upper levels. This type of communication is said to be used by  organizations in their workings.

Hence, The term upward communication flows from option c)subordinate to superior.

Learn more about communication from

https://brainly.com/question/26152499

#SPJ1

The data files from a computer-assisted questionnaire software program can be downloaded at the researcher's discretion; however, different formatting options, including SPSS-readable files, may not be available. Group of answer choices True False

Answers

Answer:

False.

Explanation:

When data files are sourced from a computer-assisted questionnaire software program. The data files can be downloaded at the researcher's discretion, different formatting options can be used on the data files, and SPSS (Statistical Product and Service Solutions)-readable files are also available.

For instance, the CAPI (Computer-Assisted Personal Interview), CAWI (Computer-Assisted Web Interview)  and CASI (Computer-Assisted Self Interview) software program collects data from potential targeted population in a survey. These data can be downloaded by the originator of the survey with its SPSS (Statistical Product and Service Solutions)-readable files.

Also, if the researcher wishes to edit or format the data, it is very possible to achieve.

Other Questions
a form element must be placed only within the header tag of a web page What are two common Agile practices? A road construction company can repair 1/8 mile of road each day. Road X is 5 1/2 miles long, and Road Y is 8 3/4 miles long. How many more days will Road Y take to repair than Road X Gregorian Chant is typically written in which meter1: 2/42: It isn`t written in a specific meter.3: 3/44: 4/4 Find the slope of the line given two points:(8, 10) and (-7, 14)Am = -15/4Bm = -24/1m = -4/15Dm = 4/15 Suppose a firm paid an annual dividend of $3. We expect dividends to grow at 3% per year. The firm has a beta of 3 . The required rate of retum is 7%. What is the intrinsic value of the firm? Please submit two decimal places. Solve:A rectangular garden has length of 24m and width of 17.2m. Use the correct number ofsignificant digits to write the perimeter of the garden.meters Amy Tan's mother's language variety played a significant role in shaping Tan's identity. Which excerpt from her reflective essay "Mother Tongue" shows her admiration and appreciation of her mother's broken English?1.And sure enough, the following week, there we were in front of this astonished stockbroker, and I was sitting there red-faced and quiet, and my mother, the real Mrs. Tan, was shouting at his boss in her impeccable broken English.2.Sociologists and linguists probably will tell you that a person's developing language skills are more influenced by peers than by family. But I do think that the language spoken in the family, especially in immigrant families which are more insular, plays a large role in shaping the language of the child.3.Lately, I've been giving more thought to the kind of English my mother speaks. Like others, I have described it to people as "broken" or "fractured" English.4.I began to write stories using all the Englishes I grew up with: the English I spoke to my mother, which for lack of a better term might be described as "simple. . . I wanted to capture what language ability tests can never reveal: her intent, her passion, her imagery, the rhythms of her speech and the nature of her thoughts. Arrange the following amines in order of decreasing water solubility, putting the most soluble amine first. NH2 B) II> III> I Aaron has a collection of American coins. He has 3 times as many 10 cent coins as 25 cent coins, and he has some 5 cent coins as well. If he has 8 coins with total value $11.40. how many of each type does he have? Find the probability of being dealt a holdem hand with twohearts. What is the probability of flopping a flush given that youhave 2 hearts? (Express as % and round to 2 digits) Mrs dhital makes a profit of 50% of cost of her investment in the transaction of her cosmetic item .she further increase her cost of investment by 25%but the selling price remains the same .how much is the decrease in her profic percent? how can bacteriostatic and bactericidal disinfectants be distinguished Question 35 ptsA model rocket is launched 25 feet from you. When the rocket is at height h, thedistance d between you and the rocket is given by d = 216 +h where h and d are measured in feet. What is the rockets height when the distance between you and the rocket is 100 feet? round to 3 decimal places According to the following reaction, which molecule is acting as an acid? H2O + H2SO4 H30* +HSO4 A) H2SO4 2. B) H20 C) H30+D) HSO4 the lengths of the four sides as a quadrilateral (in feet) are consecutive integers if the perimeter is 86 ft find the value of the longest of the four side lengths If cos(0) 8 9 and is in the 4th quadrant, find the exact value for sin((). sin(0) - in each container there are 16 bins and each been there are four boxes which number completes the equation that relates c the number of containers and b the number of boxes.b=__c fill in the blank with the correct answer Both disaster recovery planning (DRP) and business continuity management (BCM) are the most critical ____ controls, and DRP is a key component of BCM. Use Gaussian elimination to solve the following system of linear equations: 2x1x2 + 3x3+4x4 + 5x5 = 15 3x12x39x44x5 = 7 2x12x2 + 4x3 - 3x4 = 7 5x15x210x35x4-10x5 = -20 3x3 + 3x4-9x5 = 9