Today we start to learn something about marketing together.Sometimes i just propose a question,and i need you to think about the problem with me.

Part one

Marketing:exchange between buyer and seller

1)buyer's market:product focus market

2)seller's market:customer focus market(meet customer need)

What customer want? How to pick or choose customers('cause we cann't meet all customers' need)?

Make customer willing to buy? Create some value?

Profitable ---> Building customer loyalty:

give customer exactly what they want ---> keep creating value ---> deliver value to customer --->loyalty (customer share)

3)connected community (Experience,focus deeper on customer experiential value,"Customer is lord!")

4)global recession:economic uncertainty (Trust,focus on genuine customer value-reset,discipline,flexibility,cut cost..)

5)Conclusion:

①product orientation:generic product,persuade customer to want what the firm has

Competitive advantage (CA):lowest cost

Profitability drivers (PD):market share

②marketing orientation:different products/services,persuade firm to offer what the customer want

CA:quality and service,customer knowledge

PD:customer share,customer loyalty

③experience orientation:experiential value,manage customer's entire experience with the firm

CA:transformation,customer as co-creator of value

PD:buzz(暗中散布),referrals

④trust orientation:genuine value,priortize building a relationship of trust and discipline

CA:trust

PD:discipline

Part two

1.three principles of marketing:

1)principle of customer value (rather than competition)

2)principle of differentiation (do better than competition)

3)principle of segmentation (segment market),targeting (target customer),and positioning (position brand)

2.4 P's of marketing:

product (seller), place (deliver/exchange), promotion (communication), price (buyer)

3.market-driven principle:

1)know your markets:competitive,global,customers' need (value ---> deliver)

2)customers have the final say:they cann't consider anything,but they would choose what they want at that time

how they pick?

decision process (3 bundles):operational factor,product features,customer needs

3)commit to being the first in the market you serve (but everyone tends to copy!!)

4)deliver total quality to guarantee customer satifaction

Marketing learning-1的更多相关文章

  1. .NET Core Ecosystem

    .NET .NET Blog Application Models Web Mobile Desktop Microservices Gaming Machine Learning Cloud Int ...

  2. Awesome Reinforcement Learning

    Awesome Reinforcement Learning A curated list of resources dedicated to reinforcement learning. We h ...

  3. A beginner’s introduction to Deep Learning

    A beginner’s introduction to Deep Learning I am Samvita from the Business Team of HyperVerge. I join ...

  4. Why are very few schools involved in deep learning research? Why are they still hooked on to Bayesian methods?

    Why are very few schools involved in deep learning research? Why are they still hooked on to Bayesia ...

  5. Build a Machine Learning Portfolio(构建机器学习投资组合)

    Complete Small Focused Projects and Demonstrate Your Skills (完成小型针对性机器学习项目,证明你的能力) A portfolio is ty ...

  6. How do I learn machine learning?

    https://www.quora.com/How-do-I-learn-machine-learning-1?redirected_qid=6578644   How Can I Learn X? ...

  7. How do I learn mathematics for machine learning?

    https://www.quora.com/How-do-I-learn-mathematics-for-machine-learning   How do I learn mathematics f ...

  8. A Gentle Guide to Machine Learning

    A Gentle Guide to Machine Learning Machine Learning is a subfield within Artificial Intelligence tha ...

  9. 机器学习基石第一讲:the learning problem

    博客已经迁移至Marcovaldo's blog (http://marcovaldong.github.io/) Andrew Ng的Machine Learning比較简单,已经看完.林田轩的机器 ...

  10. Machine Learning and Data Mining(机器学习与数据挖掘)

    Problems[show] Classification Clustering Regression Anomaly detection Association rules Reinforcemen ...

随机推荐

  1. 索引是否也能提高UPDATE,DELETE,INSERT速度 解释

    insert 不会提高,insert 用不到索引,只会增加维护索引的时间. update ,更新索引列不会提高,少量更新非索引列,会有提高 : 更新索引列,索引要重新维护,更新非索引列,倒是没什么影响 ...

  2. 使用NIO快速复制Java文件

    package com.test.test; import java.io.File;import java.io.FileInputStream;import java.io.FileOutputS ...

  3. 在SQL中查看文件组中有哪些表

    SELECT o.[name], o.[type], i.[name], i.[index_id], f.[name] FROM sys.indexes i INNER JOIN sys.filegr ...

  4. UOJ#210. 【UER #6】寻找罪犯 2-sat

    #210. [UER #6]寻找罪犯 链接:http://uoj.ac/problem/210 想法:2-sat模型.每个人拆点,分别表示为犯人.非犯人.每个句供词拆点,分别表示真话.假话.供词与对应 ...

  5. POJ 3734 Blocks (线性递推)

    定义ai表示红色和绿色方块中方块数为偶数的颜色有i个,i = 0,1,2. aij表示刷到第j个方块时的方案数,这是一个线性递推关系. 可以构造递推矩阵A,用矩阵快速幂求解. /*********** ...

  6. 【洛谷1501】[国家集训队] Tree II(LCT维护懒惰标记)

    点此看题面 大致题意: 有一棵初始边权全为\(1\)的树,四种操作:将两点间路径边权都加上一个数,删一条边.加一条新边,将两点间路径边权都加上一个数,询问两点间路径权值和. 序列版 这道题有一个序列版 ...

  7. 【BZOJ4458】GTY的OJ(树上超级钢琴)

    点此看题面 大致题意: 给你一棵树,让你求出每一个节点向上的长度在\([l,r]\)范围内的路径权值和最大的\(m\)条路径的权值总和. 关于此题的数列版本 此题的数列版本,就是比较著名的[BZOJ2 ...

  8. 选中ListBox控件中的全部项

    实现效果: 知识运用: ListBox控件的SelectedItems属性 //获取ListBox控件中被选中数据项的集合 public ListBox.SelectedObjectCollectio ...

  9. VC-基础-WebBrowser控件中弹出新网页窗口

    用webbrowser控件浏览网页时,常弹出新的网页窗口,若不做任何控制的话,会在默认浏览器(一般是IE)中打开,这样就在新的窗口打开了,原程序就很难控制了,且存在webbrowser控件和IE的se ...

  10. css属性选择器=,~=,^=,$=,*=,|=

    http://www.w3school.com.cn/css/css_selector_attribute.asp =. property和value必须完全一致 : ~=.“约等于”?: ^=. 从 ...