1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
quester [9]
3 years ago
8

Solve for x in the equation x2-10+25=35

Mathematics
2 answers:
mina [271]3 years ago
7 0
X2-10+25=35
+10. +10
x2+25=45
-25 -25
x2=20
———
2
x=10
Tried my best
777dan777 [17]3 years ago
4 0

Hey there!

<h2>\bold{x^2-10+25=35}</h2><h3>Firstly, we have to to simplify both sides of your equation </h3><h3></h3>
  • \bold{x^2-10+25=35}
  • \bold{-10+25=15}
  • Firstly, now that we got that portion out the way, let's \bold{subtract} by the number \bold{15} on  each of your sides
  • \bold{x^2+15-15=35-15}
  • \bold{Cancel:15-15}
  • \bold{Keep:35-15}
  • \bold{35-15=20}
  • We get: \bold{x^2=20}
  • Take the square root of the number
  • \bold{x=}±\bold{\sqrt{20}}
  • \boxed{\boxed{\bold{Answer:x=2\sqrt{5}[or]x=-2\sqrt{5}}}} \checkmark

<h3>Good luck on your assignment and enjoy your day!</h3><h3>~\frak{LoveYourselfFirst:)}</h3>
You might be interested in
Please help on this one i appreciate it!! :)
leonid [27]
A key property of a quadratic parent function is that its vertex is at the origin
3 0
3 years ago
Read 2 more answers
What’s the answer ??
ankoles [38]

Answer:

answer A shows a rotation

4 0
2 years ago
Read 2 more answers
Hi, I was absent yesterday on my math class and I missed the whole lesson of yesterday , teacher gave us homework on delta math
Sergeu [11.5K]

Answer:

An Excerpt from “Optimism”

by Helen Keller

1 Could we choose our environment, and were desire in human undertakings synonymous with

endowment, all men would, I suppose, be optimists. Certainly most of us regard happiness as

the proper end of all earthly enterprise. The will to be happy animates alike the philosopher, the

prince and the chimney-sweep. No matter how dull, or how mean, or how wise a man is, he feels

that happiness is his indisputable right.

2 It is curious to observe what different ideals of happiness people cherish, and in what singular

places they look for this well-spring of their life. Many look for it in the hoarding of riches, some

in the pride of power, and others in the achievements of art and literature; a few seek it in the

exploration of their own minds, or in the search for knowledge.

3 Most people measure their happiness in terms of physical pleasure and material possession.

Could they win some visible goal which they have set on the horizon, how happy they would be!

Lacking this gift or that circumstance, they would be miserable. If happiness is to be so

measured, I who cannot hear or see have every reason to sit in a corner with folded hands and

weep. If I am happy in spite of my deprivations, if my happiness is so deep that it is a faith, so

thoughtful that it becomes a philosophy of life,—if, in short, I am an optimist, my testimony to

the creed of optimism is worth hearing....

4 Once I knew the depth where no hope was, and darkness lay on the face of all things. Then

love came and set my soul free. Once I knew only darkness and stillness. Now I know hope and

joy. Once I fretted and beat myself against the wall that shut me in. Now I rejoice in the

consciousness that I can think, act and attain heaven. My life was without past or future; death,

the pessimist would say, “a consummation devoutly to be wished.” But a little word from the

fingers of another fell into my hand that clutched at emptiness, and my heart leaped to the

rapture of living. Night fled before the day of thought, and love and joy and hope came up in a

passion of obedience to knowledge. Can anyone who has escaped such captivity, who has felt

the thrill and glory of freedom, be a pessimist?

5 My early experience was thus a leap from bad to good. If I tried, I could not check the

momentum of my first leap out of the dark; to move breast forward is a habit learned suddenly

at that first moment of release and rush into the light. With the first word I used intelligently, I

learned to live, to think, to hope. Darkness cannot shut me in again. I have had a glimpse of the

shore, and can now live by the hope of reaching it.

6 So my optimism is no mild and unreasoning satisfaction. A poet once said I must be happy

because I did not see the bare, cold present, but lived in a beautiful dream. I do live in a

beautiful dream; but that dream is the actual, the present,—not cold, but warm; not bare, but

furnished with a thousand blessings. The very evil which the poet supposed would be a cruel

6) Read the last sentence from the text.

Only by contact with evil could I have learned to feel by contrast the beauty of truth and love and goodness.

Explain how Helen Keller develops this idea in the text. Use specific details to

support your answer.

8 0
2 years ago
Read 2 more answers
Using the Breadth-First Search Algorithm, determine the minimum number of edges that it would require to reach
jekas [21]

Answer:

The algorithm is given below.

#include <iostream>

#include <vector>

#include <utility>

#include <algorithm>

using namespace std;

const int MAX = 1e4 + 5;

int id[MAX], nodes, edges;

pair <long long, pair<int, int> > p[MAX];

void initialize()

{

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

       id[i] = i;

}

int root(int x)

{

   while(id[x] != x)

   {

       id[x] = id[id[x]];

       x = id[x];

   }

   return x;

}

void union1(int x, int y)

{

   int p = root(x);

   int q = root(y);

   id[p] = id[q];

}

long long kruskal(pair<long long, pair<int, int> > p[])

{

   int x, y;

   long long cost, minimumCost = 0;

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

   {

       // Selecting edges one by one in increasing order from the beginning

       x = p[i].second.first;

       y = p[i].second.second;

       cost = p[i].first;

       // Check if the selected edge is creating a cycle or not

       if(root(x) != root(y))

       {

           minimumCost += cost;

           union1(x, y);

       }    

   }

   return minimumCost;

}

int main()

{

   int x, y;

   long long weight, cost, minimumCost;

   initialize();

   cin >> nodes >> edges;

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

   {

       cin >> x >> y >> weight;

       p[i] = make_pair(weight, make_pair(x, y));

   }

   // Sort the edges in the ascending order

   sort(p, p + edges);

   minimumCost = kruskal(p);

   cout << minimumCost << endl;

   return 0;

}

8 0
2 years ago
3х + 9y - 8x - 2y +7​
Sonja [21]

Answer:

-5x+7y+7

Step-by-step explanation:

3х + 9y - 8x - 2y +7​ can be written like the equation below to help solve it

3x-8x+9y-2y+7

=-5x+7y+7

7 0
2 years ago
Other questions:
  • Carlos and Maria drove a total of 233 miles in 4.4 hours. Carlos drove the first part of the trip and averaged 55 miles per hour
    5·2 answers
  • Perform the indicated operation. 5 1/6 – 2 2/3<br> 2 1/3<br> 2 1/2<br> 2 1/6
    15·2 answers
  • Solve for y 7x-6y=19
    11·1 answer
  • Find an equation for the line in standard form containing the points (9,-1) and (-8,1)
    10·1 answer
  • What happens to the opposite and adjacent sides when theta is moved from one acute angle to the other?
    7·1 answer
  • Pls help this is urgent
    11·2 answers
  • HELP!! i will vote brainlest answer
    11·1 answer
  • 4a 3b - C<br> per a - 3;<br> b = -1;<br> 1; C = -2
    11·1 answer
  • Find the length of the rectangle.
    7·2 answers
  • Convert the following numbers from base 10 to base 2<br> 1256<br> 10988
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!