trying to graph a function with x and e(constant ?)












0














$$ f(x)=begin{cases} 1-|x|/e ,quad |x| leqslant e \ 0, qquad qquad e<
|x| leqslant 1 end{cases} $$



$$ whereqquad 0< e < 1 $$



I assume e is a constant and e will not run from 0 to 1. But x will go from 0 to 1.
I attempted a graph trying to understand the function.



DATA:(x)



octave:23>
x =



Columns 1 through 7:



0.00000    0.05000    0.10000    0.15000    0.20000    0.25000    0.30000


Columns 8 through 14:



0.35000    0.40000    0.45000    0.50000    0.55000    0.60000    0.65000


Columns 15 through 19:



0.70000    0.75000    0.80000    0.85000    0.90000


=================================================



( y = 1 - x/.9) I took e= .9
so e is $$ 0<e<1 $$



DATA:(y)



octave:24>
y =



Columns 1 through 8:



1.00000 0.94444 0.88889 0.83333 0.77778 0.72222 0.66667 0.61111



Columns 9 through 16:



0.55556 0.50000 0.44444 0.38889 0.33333 0.27778 0.22222 0.16667



Columns 17 through 19:



0.11111 0.05556 0.00000



The graph of the function










share|cite|improve this question



























    0














    $$ f(x)=begin{cases} 1-|x|/e ,quad |x| leqslant e \ 0, qquad qquad e<
    |x| leqslant 1 end{cases} $$



    $$ whereqquad 0< e < 1 $$



    I assume e is a constant and e will not run from 0 to 1. But x will go from 0 to 1.
    I attempted a graph trying to understand the function.



    DATA:(x)



    octave:23>
    x =



    Columns 1 through 7:



    0.00000    0.05000    0.10000    0.15000    0.20000    0.25000    0.30000


    Columns 8 through 14:



    0.35000    0.40000    0.45000    0.50000    0.55000    0.60000    0.65000


    Columns 15 through 19:



    0.70000    0.75000    0.80000    0.85000    0.90000


    =================================================



    ( y = 1 - x/.9) I took e= .9
    so e is $$ 0<e<1 $$



    DATA:(y)



    octave:24>
    y =



    Columns 1 through 8:



    1.00000 0.94444 0.88889 0.83333 0.77778 0.72222 0.66667 0.61111



    Columns 9 through 16:



    0.55556 0.50000 0.44444 0.38889 0.33333 0.27778 0.22222 0.16667



    Columns 17 through 19:



    0.11111 0.05556 0.00000



    The graph of the function










    share|cite|improve this question

























      0












      0








      0







      $$ f(x)=begin{cases} 1-|x|/e ,quad |x| leqslant e \ 0, qquad qquad e<
      |x| leqslant 1 end{cases} $$



      $$ whereqquad 0< e < 1 $$



      I assume e is a constant and e will not run from 0 to 1. But x will go from 0 to 1.
      I attempted a graph trying to understand the function.



      DATA:(x)



      octave:23>
      x =



      Columns 1 through 7:



      0.00000    0.05000    0.10000    0.15000    0.20000    0.25000    0.30000


      Columns 8 through 14:



      0.35000    0.40000    0.45000    0.50000    0.55000    0.60000    0.65000


      Columns 15 through 19:



      0.70000    0.75000    0.80000    0.85000    0.90000


      =================================================



      ( y = 1 - x/.9) I took e= .9
      so e is $$ 0<e<1 $$



      DATA:(y)



      octave:24>
      y =



      Columns 1 through 8:



      1.00000 0.94444 0.88889 0.83333 0.77778 0.72222 0.66667 0.61111



      Columns 9 through 16:



      0.55556 0.50000 0.44444 0.38889 0.33333 0.27778 0.22222 0.16667



      Columns 17 through 19:



      0.11111 0.05556 0.00000



      The graph of the function










      share|cite|improve this question













      $$ f(x)=begin{cases} 1-|x|/e ,quad |x| leqslant e \ 0, qquad qquad e<
      |x| leqslant 1 end{cases} $$



      $$ whereqquad 0< e < 1 $$



      I assume e is a constant and e will not run from 0 to 1. But x will go from 0 to 1.
      I attempted a graph trying to understand the function.



      DATA:(x)



      octave:23>
      x =



      Columns 1 through 7:



      0.00000    0.05000    0.10000    0.15000    0.20000    0.25000    0.30000


      Columns 8 through 14:



      0.35000    0.40000    0.45000    0.50000    0.55000    0.60000    0.65000


      Columns 15 through 19:



      0.70000    0.75000    0.80000    0.85000    0.90000


      =================================================



      ( y = 1 - x/.9) I took e= .9
      so e is $$ 0<e<1 $$



      DATA:(y)



      octave:24>
      y =



      Columns 1 through 8:



      1.00000 0.94444 0.88889 0.83333 0.77778 0.72222 0.66667 0.61111



      Columns 9 through 16:



      0.55556 0.50000 0.44444 0.38889 0.33333 0.27778 0.22222 0.16667



      Columns 17 through 19:



      0.11111 0.05556 0.00000



      The graph of the function







      algebra-precalculus






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Nov 19 '18 at 2:06









      tt z

      51




      51






















          1 Answer
          1






          active

          oldest

          votes


















          0














          On $[0,e)$, it is a line segment $$y=1-frac{x}{e},$$



          It has slope $-frac1e$ and intercept $1$.



          Also, this is an even function, On $(-e,0]$, it is a line segment $$y=1+frac{x}{e},$$



          It has slope $frac1e$ and intercept $1$.



          It is zero everywhere else.



          enter image description here



          Remark: $e$ need not be a good choice of notation in general.






          share|cite|improve this answer























          • so "|x|" suggest that 'x' goes in both direction , positive and negative ?
            – tt z
            Nov 19 '18 at 2:24










          • $|x|$ is the absolute value function. $|-0.5|=0.5=|0.5|$. It remove the sign and returns the length.
            – Siong Thye Goh
            Nov 19 '18 at 2:26










          • Thank you!!!! very much.
            – tt z
            Nov 19 '18 at 2:35











          Your Answer





          StackExchange.ifUsing("editor", function () {
          return StackExchange.using("mathjaxEditing", function () {
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          });
          });
          }, "mathjax-editing");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "69"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3004425%2ftrying-to-graph-a-function-with-x-and-econstant%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          On $[0,e)$, it is a line segment $$y=1-frac{x}{e},$$



          It has slope $-frac1e$ and intercept $1$.



          Also, this is an even function, On $(-e,0]$, it is a line segment $$y=1+frac{x}{e},$$



          It has slope $frac1e$ and intercept $1$.



          It is zero everywhere else.



          enter image description here



          Remark: $e$ need not be a good choice of notation in general.






          share|cite|improve this answer























          • so "|x|" suggest that 'x' goes in both direction , positive and negative ?
            – tt z
            Nov 19 '18 at 2:24










          • $|x|$ is the absolute value function. $|-0.5|=0.5=|0.5|$. It remove the sign and returns the length.
            – Siong Thye Goh
            Nov 19 '18 at 2:26










          • Thank you!!!! very much.
            – tt z
            Nov 19 '18 at 2:35
















          0














          On $[0,e)$, it is a line segment $$y=1-frac{x}{e},$$



          It has slope $-frac1e$ and intercept $1$.



          Also, this is an even function, On $(-e,0]$, it is a line segment $$y=1+frac{x}{e},$$



          It has slope $frac1e$ and intercept $1$.



          It is zero everywhere else.



          enter image description here



          Remark: $e$ need not be a good choice of notation in general.






          share|cite|improve this answer























          • so "|x|" suggest that 'x' goes in both direction , positive and negative ?
            – tt z
            Nov 19 '18 at 2:24










          • $|x|$ is the absolute value function. $|-0.5|=0.5=|0.5|$. It remove the sign and returns the length.
            – Siong Thye Goh
            Nov 19 '18 at 2:26










          • Thank you!!!! very much.
            – tt z
            Nov 19 '18 at 2:35














          0












          0








          0






          On $[0,e)$, it is a line segment $$y=1-frac{x}{e},$$



          It has slope $-frac1e$ and intercept $1$.



          Also, this is an even function, On $(-e,0]$, it is a line segment $$y=1+frac{x}{e},$$



          It has slope $frac1e$ and intercept $1$.



          It is zero everywhere else.



          enter image description here



          Remark: $e$ need not be a good choice of notation in general.






          share|cite|improve this answer














          On $[0,e)$, it is a line segment $$y=1-frac{x}{e},$$



          It has slope $-frac1e$ and intercept $1$.



          Also, this is an even function, On $(-e,0]$, it is a line segment $$y=1+frac{x}{e},$$



          It has slope $frac1e$ and intercept $1$.



          It is zero everywhere else.



          enter image description here



          Remark: $e$ need not be a good choice of notation in general.







          share|cite|improve this answer














          share|cite|improve this answer



          share|cite|improve this answer








          edited Nov 19 '18 at 2:27

























          answered Nov 19 '18 at 2:11









          Siong Thye Goh

          99.3k1464117




          99.3k1464117












          • so "|x|" suggest that 'x' goes in both direction , positive and negative ?
            – tt z
            Nov 19 '18 at 2:24










          • $|x|$ is the absolute value function. $|-0.5|=0.5=|0.5|$. It remove the sign and returns the length.
            – Siong Thye Goh
            Nov 19 '18 at 2:26










          • Thank you!!!! very much.
            – tt z
            Nov 19 '18 at 2:35


















          • so "|x|" suggest that 'x' goes in both direction , positive and negative ?
            – tt z
            Nov 19 '18 at 2:24










          • $|x|$ is the absolute value function. $|-0.5|=0.5=|0.5|$. It remove the sign and returns the length.
            – Siong Thye Goh
            Nov 19 '18 at 2:26










          • Thank you!!!! very much.
            – tt z
            Nov 19 '18 at 2:35
















          so "|x|" suggest that 'x' goes in both direction , positive and negative ?
          – tt z
          Nov 19 '18 at 2:24




          so "|x|" suggest that 'x' goes in both direction , positive and negative ?
          – tt z
          Nov 19 '18 at 2:24












          $|x|$ is the absolute value function. $|-0.5|=0.5=|0.5|$. It remove the sign and returns the length.
          – Siong Thye Goh
          Nov 19 '18 at 2:26




          $|x|$ is the absolute value function. $|-0.5|=0.5=|0.5|$. It remove the sign and returns the length.
          – Siong Thye Goh
          Nov 19 '18 at 2:26












          Thank you!!!! very much.
          – tt z
          Nov 19 '18 at 2:35




          Thank you!!!! very much.
          – tt z
          Nov 19 '18 at 2:35


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Mathematics Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3004425%2ftrying-to-graph-a-function-with-x-and-econstant%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          QoS: MAC-Priority for clients behind a repeater

          Ивакино (Тотемский район)

          Can't locate Autom4te/ChannelDefs.pm in @INC (when it definitely is there)